File: 008_store_retrieve.t

package info (click to toggle)
libxml-rss-feed-perl 2.212-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 312 kB
  • sloc: perl: 2,581; makefile: 2
file content (203 lines) | stat: -rwxr-xr-x 5,974 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 31;

BEGIN { use_ok('XML::RSS::Feed'); }


SKIP: {
    skip "/tmp directory doesn't exist", 32 unless -d "/tmp";
    $SIG{__WARN__} = build_warn("could not cache");
    my $feed_bad_name = XML::RSS::Feed->new(
        name   => 'test_008/_title',
        url    => "http://www.jbisbee.com/rsstest",
        tmpdir => "/tmp",
    );
    isa_ok( $feed_bad_name, "XML::RSS::Feed" );
    ok( $feed_bad_name->parse( xml(1) ), "Parsed XML" );
    ok( !$feed_bad_name->cache, "Did Not Cache File" );

    my $feed_bad_tmpdir = XML::RSS::Feed->new(
        name   => 'test_008_title',
        url    => "http://www.jbisbee.com/rsstest",
        tmpdir => "/fake/directory/that/no/one/will/actually/have",
    );
    isa_ok( $feed_bad_tmpdir, "XML::RSS::Feed" );
    ok( !$feed_bad_tmpdir->cache, "Did Not Cache File" );

    unlink "/tmp/test_008_title.sto";
    my $feed_title = XML::RSS::Feed->new(
        name   => 'test_008_title',
        url    => "http://www.jbisbee.com/rsstest",
        tmpdir => "/tmp",
    );
    isa_ok( $feed_title, "XML::RSS::Feed" );
    ok( !$feed_title->cache,          "Did Not Cache File" );
    ok( $feed_title->parse( xml(1) ), "Parsed XML" );
    ok( $feed_title->cache,           "Successfully Cached File" );

    my $feed_no_title = XML::RSS::Feed->new(
        name   => 'test_008_title',
        url    => "http://www.jbisbee.com/rsstest",
        tmpdir => "/tmp",
    );
    isa_ok( $feed_no_title, "XML::RSS::Feed" );

    my $feed_title_cache = XML::RSS::Feed->new(
        title  => 'Some Stupid Title',
        name   => 'test_008_title',
        url    => "http://www.jbisbee.com/rsstest",
        tmpdir => "/tmp",
    );
    isa_ok( $feed_title_cache, "XML::RSS::Feed" );

    eval { require LWP::Simple };
    skip "LWP::Simple not installed", 17 if $@;

    unlink "/tmp/test_008.sto";

    skip "Disabled rest of the tests for Debian Package because http://www.jbisbee.com/rsstest is not reachable anymore", 17;

    my $feed = XML::RSS::Feed->new(
        name   => 'test_008',
        url    => "http://www.jbisbee.com/rsstest",
        tmpdir => "/tmp",
    );

    isa_ok( $feed, 'XML::RSS::Feed' );

    my $rss_xml = LWP::Simple::get( $feed->url ) || undef;
    
    skip "Could not fetch " . $feed->url . " ... timed out", 16
        unless $rss_xml;
    ok( $feed->parse($rss_xml), "Failed to parse XML from " . $feed->url );
    cmp_ok( $feed->num_headlines, '==', 10,
        "Verify correct number of headlines" );
    cmp_ok( $feed->late_breaking_news, '==', 10,
        "Verify mark_all_headlines_read" );

    my @headlines_old = map { $_->headline } $feed->headlines;
    my $num_headlines = $feed->num_headlines;
    my @seen_old      = map { $_->first_seen_hires } $feed->headlines;
    $feed->cache;

    my $feed2 = XML::RSS::Feed->new(
        name   => 'test_008',
        url    => "http://www.jbisbee.com/rsstest",
        tmpdir => "/tmp",
    );
    isa_ok( $feed2, 'XML::RSS::Feed' );
    cmp_ok( $num_headlines, '==', $feed2->num_headlines,
        "Compare after restoring cache" );

    my $feed3 = XML::RSS::Feed->new(
        name   => 'test_008',
        url    => "http://www.jbisbee.com/rsstest",
        tmpdir => "/tmp",
    );
    isa_ok( $feed3, 'XML::RSS::Feed' );
    cmp_ok( $num_headlines, '==', $feed3->num_headlines,
        "Compare after restoring cache" );

    unlink "/tmp/test_008.sto";
    my @headlines_new = map { $_->headline } $feed2->headlines;
    my @seen_new      = map { $_->first_seen_hires } $feed2->headlines;

    ok( eq_array( \@headlines_old, \@headlines_new ),
        "Comparing headlines before and after"
    );
    for my $i ( 0 .. $#seen_old ) {
        my $num = $i + 1;
        cmp_ok( $seen_old[$i], '==', $seen_new[$i],
            "Compare headline $num timestamp_hires" );
    }

}

sub xml {
    my ($index) = @_;
    $index--;
    return (
        qq|<?xml version="1.0" encoding="ISO-8859-1"?>

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://my.netscape.com/rdf/simple/0.9/">

<channel>
<link>http://slashdot.org/</link>
<description>News for nerds, stuff that matters</description>
</channel>

<image>
<title>Slashdot</title>
<url>http://images.slashdot.org/topics/topicslashdot.gif</url>
<link>http://slashdot.org/</link>
</image>

<item>
<title>States Link Databases to Find Tax Cheats</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/2021256</link>
</item>

<item>
<title>Invulnerable, Waterproof PDA</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/1814258</link>
</item>

<item>
<title>Still More on Open Source Usability</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/1811226</link>
</item>

<item>
<title>Moore's Law Limits Pushed Back Again</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/182224</link>
</item>

<item>
<title>Advanced Mobile Phone Tech in Japan</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/1754231</link>
</item>

<item>
<title>Computerized Time Clocks Susceptible to 'Manager Attack'</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/1655231</link>
</item>

<item>
<title>A Completely Separate Ecosystem on Earth</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/1653233</link>
</item>

<item>
<title>3D, FPS File Manager</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/1621251</link>
</item>

<item>
<title>Searching by Shape...</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/1423210</link>
</item>

<item>
<title>New Wave of Web Ads?</title>
<link>http://slashdot.org/article.pl?sid=04/04/04/1410251</link>
</item>

<textinput>
<title>Search Slashdot</title>
<description>Search Slashdot stories</description>
<name>query</name>
<link>http://slashdot.org/search.pl</link>
</textinput>

</rdf:RDF>|
    )[$index];
}

sub build_warn {
    my @args = @_;
    return sub { my ($warn) = @_; like( $warn, qr/$_/i, $_ ) for @args };
}