File: empty-elements.t

package info (click to toggle)
libxml-rss-perl 1.65-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 904 kB
  • sloc: perl: 7,189; xml: 379; makefile: 12
file content (67 lines) | stat: -rw-r--r-- 1,737 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
use strict;
use warnings;

use Test::More tests => 4;

use XML::RSS ();

my $RSS_DOCUMENT = qq(<?xml version="1.0"?>
<rss version="2.0">
 <channel>
  <title>Example 2.0 Channel</title>
  <link>http://example.com/</link>
  <description>To lead by example</description>
  <language>en-us</language>
  <managingEditor>editor\@example.com</managingEditor>
  <webMaster>webmaster\@example.com</webMaster>
  <docs>http://backend.userland.com/rss</docs>
  <generator>The Superest Dooperest RSS Generator</generator>
  <lastBuildDate>Mon, 02 Sep 2002 03:19:17 GMT</lastBuildDate>
  <ttl>60</ttl>

  <item>
   <title>News for September the Second</title>
   <link>http://example.com/2002/09/02</link>
   <description>other things happened today</description>
   <comments>http://example.com/2002/09/02/comments.html</comments>
   <author>joeuser\@example.com</author>
   <pubDate>Mon, 02 Sep 2002 03:19:00 GMT</pubDate>
   <!-- a custom element which is allowed to be empty -->
   <custom name="seeds" value="100" />
   <guid isPermaLink="true">http://example.com/2002/09/02</guid>
   <enclosure url="http://example.com/test.mp3" length="5352283" type="audio/mpeg" />
  </item>

 </channel>
</rss>);


{
    my $xml = XML::RSS->new();

    # TEST
    isa_ok($xml, "XML::RSS");

    eval { $xml->parse($RSS_DOCUMENT); };

    # TEST
    is($@, '', "Parsed RSS feed");

}

{
    my $xml = XML::RSS->new;

    eval { $xml->parse($RSS_DOCUMENT, {allow_empty => ['custom']}) };

    # TEST
    is($@, '', "Parsed RSS feed for with option to allow empty 'custom' elements");

    # TEST
    is_deeply(
        $xml->{items}->[0]->{custom},
        {name => "seeds", value => "100"},
        "returned custom empty element and its attributes"
    );

}