File: 1.0-to-2.0.t

package info (click to toggle)
libxml-rss-libxml-perl 0.3004-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 500 kB
  • ctags: 236
  • sloc: perl: 6,679; xml: 41; makefile: 15
file content (99 lines) | stat: -rw-r--r-- 2,605 bytes parent folder | download
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
#!/usr/bin/perl

use strict;
use warnings;

use File::Spec;

use Test::More tests => 8;

use XML::RSS::LibXML;

SKIP: {
    my $rssfile = File::Spec->catfile(File::Spec->curdir(), "t", "data", "merlyn1.rss");
    skip("rt #42536", 2) if ! -f $rssfile;
    my $rss = XML::RSS::LibXML->new;
    $rss->parsefile($rssfile);

    $rss->{output} = "2.0";
    my $string = $rss->as_string;

    # TEST
    ok (index($string, q{<lastBuildDate>Sat, 14 Oct 2006 21:15:36 -0000</lastBuildDate>}) >= 0,
        "Correct date was found",
    );

    # TEST
    ok (index($string, q{<pubDate>Sat, 14 Oct 2006 21:15:36 -0000</pubDate>}) >= 0,
        "Correct pubDate was found",
    );    
}

SKIP: {
    my $rssfile = File::Spec->catfile(File::Spec->curdir(), "t", "data", "merlyn1.rss");
    skip("rt #42536", 2) if ! -f $rssfile;
    my $rss = XML::RSS::LibXML->new;
    $rss->parsefile($rssfile);

    $rss->{output} = "0.91";
    my $string = $rss->as_string;

    # TEST
    ok (index($string, qq{<pubDate>Sat, 14 Oct 2006 21:15:36 -0000</pubDate>}) >= 0,
        "Correct date was found in 1.0 -> 0.91 conversion (pubDate)",
    );

    # TEST
    ok (index($string, qq{<lastBuildDate>Sat, 14 Oct 2006 21:15:36 -0000</lastBuildDate>}) >= 0,
        "Correct date was found in 1.0 -> 0.91 conversion (lastBuildDate)",
    );
}

SKIP: {
    my $rssfile = File::Spec->catfile(File::Spec->curdir(), "t", "data", "2.0","sf-hs-with-pubDate.rss");
    skip("rt #42536", 2) if (! -f $rssfile);

    my $rss = XML::RSS::LibXML->new;
    $rss->parsefile($rssfile);

    $rss->{output} = "1.0";
    my $string = $rss->as_string;

    my $index = index($string, qq{<dc:date>2006-09-24T10:12:49Z</dc:date>\n});
    # TEST
    ok ($index >= 0,
        "Correct date was found in 2.0 -> 1.0 conversion",
    );

    my $item_index = index($string, "<item");

    # TEST
    ok ($index < $item_index,
        "Correct date comes before the first item (hence not contained within)."
    );
}

SKIP: {
    my $rssfile = File::Spec->catfile(File::Spec->curdir(), "t", "data", "2.0","sf-hs-with-lastBuildDate.rss");
    skip("rt #42536", 2);

    my $rss = XML::RSS::LibXML->new;

    $rss->parsefile($rssfile);

    $rss->{output} = "1.0";
    my $string = $rss->as_string;

    my $index = index($string, qq{<dc:date>2006-09-24T10:12:49Z</dc:date>\n});
    # TEST
    ok ($index >= 0,
        "Correct date was found in 2.0 -> 1.0 conversion",
    );

    my $item_index = index($string, "<item");

    # TEST
    ok ($index < $item_index,
        "Correct date comes before the first item (hence not contained within)."
    );
}