]> sipb.mit.edu Git - ikiwiki.git/blob - t/podcast.t
When inlining HTML pages, render enclosures.
[ikiwiki.git] / t / podcast.t
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4
5 BEGIN {
6         eval q{use XML::Feed; use HTML::Parser; use HTML::LinkExtor};
7         if ($@) {
8                 eval q{use Test::More skip_all =>
9                         "XML::Feed and/or HTML::Parser not available"};
10         }
11         else {
12                 eval q{use Test::More tests => 89};
13         }
14 }
15
16 use Cwd;
17
18 my $tmp = 't/tmp';
19 my $statedir = 't/tinypodcast/.ikiwiki';
20
21 sub simple_podcast {
22         my $baseurl = 'http://example.com';
23         my @command = (qw(./ikiwiki.out -plugin inline -rss -atom));
24         push @command, qw(-underlaydir=underlays/basewiki);
25         push @command, qw(-set underlaydirbase=underlays -templatedir=templates);
26         push @command, "-url=$baseurl", qw(t/tinypodcast), "$tmp/out";
27
28         ok(! system("mkdir $tmp"),
29                 q{setup});
30         ok(! system(@command),
31                 q{build});
32
33         my %media_types = (
34                 'simplepost'    => undef,
35                 'piano.mp3'     => 'audio/mpeg',
36                 'scroll.3gp'    => 'video/3gpp',
37                 'walter.ogg'    => 'video/x-theora+ogg',
38         );
39
40         for my $format (qw(atom rss)) {
41                 my $feed = XML::Feed->parse("$tmp/out/simple/index.$format");
42
43                 is($feed->title, 'simple',
44                         qq{$format feed title});
45                 is($feed->link, "$baseurl/simple/",
46                         qq{$format feed link});
47                 is($feed->description, 'wiki',
48                         qq{$format feed description});
49                 if ('atom' eq $format) {
50                         is($feed->author, $feed->description,
51                                 qq{$format feed author});
52                         is($feed->id, $feed->link,
53                                 qq{$format feed id});
54                         is($feed->generator, "ikiwiki",
55                                 qq{$format feed generator});
56                 }
57
58                 for my $entry ($feed->entries) {
59                         my $title = $entry->title;
60                         my $url = $entry->id;
61                         my $body = $entry->content->body;
62                         my $enclosure = $entry->enclosure;
63
64                         is($entry->link, $url, qq{$format $title link});
65                         isnt($entry->issued, undef,
66                                 qq{$format $title issued date});
67                         isnt($entry->modified, undef,
68                                 qq{$format $title modified date});
69
70                         if (defined $media_types{$title}) {
71                                 is($url, "$baseurl/$title",
72                                         qq{$format $title id});
73                                 is($body, undef,
74                                         qq{$format $title no body text});
75                                 is($enclosure->url, $url,
76                                         qq{$format $title enclosure url});
77                                 is($enclosure->type, $media_types{$title},
78                                         qq{$format $title enclosure type});
79                                 cmp_ok($enclosure->length, '>', 0,
80                                         qq{$format $title enclosure length});
81                         }
82                         else {
83                                 is($url, "$baseurl/$title/",
84                                         qq{$format $title id});
85                                 isnt($body, undef,
86                                         qq{$format $title body text});
87                                 is($enclosure, undef,
88                                         qq{$format $title no enclosure});
89                         }
90                 }
91         }
92
93         ok(! system("rm -rf $tmp $statedir"), q{teardown});
94 }
95
96 sub single_page_html {
97         my @command = (qw(./ikiwiki.out));
98         push @command, qw(-underlaydir=underlays/basewiki);
99         push @command, qw(-set underlaydirbase=underlays -templatedir=templates);
100         push @command, qw(t/tinypodcast), "$tmp/out";
101
102         ok(! system("mkdir $tmp"),
103                 q{setup});
104         ok(! system(@command),
105                 q{build});
106
107         my $html = "$tmp/out/pianopost/index.html";
108         like(_extract_html_content($html, 'content'), qr/has content and/m,
109                 q{html body text});
110         like(_extract_html_content($html, 'enclosure'), qr/this episode/m,
111                 q{html enclosure});
112         my ($href) = _extract_html_links($html, 'piano');
113         ok(-f $href,
114                 q{html enclosure exists});
115
116         $html = "$tmp/out/attempted_multiple_enclosures/index.html";
117         like(_extract_html_content($html, 'content'), qr/has content and/m,
118                 q{html body text});
119         like(_extract_html_content($html, 'enclosure'), qr/this episode/m,
120                 q{html enclosure});
121         ($href) = _extract_html_links($html, 'walter');
122         ok(-f $href,
123                 q{html enclosure exists});
124
125         ok(! system("rm -rf $tmp $statedir"), q{teardown});
126 }
127
128 sub inlined_pages_html {
129         my @command = (qw(./ikiwiki.out -plugin inline));
130         push @command, qw(-underlaydir=underlays/basewiki);
131         push @command, qw(-set underlaydirbase=underlays -templatedir=templates);
132         push @command, qw(t/tinypodcast), "$tmp/out";
133
134         ok(! system("mkdir $tmp"),
135                 q{setup});
136         ok(! system(@command),
137                 q{build});
138
139         my $html = "$tmp/out/fancy/index.html";
140         my $contents = _extract_html_content($html, 'content');
141         like($contents, qr/has content and an/m,
142                 q{html body text from pianopost});
143         like($contents, qr/has content and only one/m,
144                 q{html body text from attempted_multiple_enclosures});
145         my $enclosures = _extract_html_content($html, 'inlineenclosure');
146         like($enclosures, qr/this episode/m,
147                 q{html enclosure});
148         my ($href) = _extract_html_links($html, 'piano.mp3');
149         ok(-f $href,
150                 q{html enclosure from pianopost exists});
151         ($href) = _extract_html_links($html, 'walter.ogg');
152         ok(-f $href,
153                 q{html enclosure from attempted_multiple_enclosures exists});
154
155         ok(! system("rm -rf $tmp $statedir"), q{teardown});
156 }
157
158 sub _extract_html_content {
159         my ($file, $desired_id, $desired_tag) = @_;
160         $desired_tag = 'div' unless defined $desired_tag;
161
162         my $p = HTML::Parser->new(api_version => 3);
163         my $content = '';
164
165         $p->handler(start => sub {
166                 my ($tag, $self, $attr) = @_;
167                 return if $tag ne $desired_tag;
168                 return unless exists $attr->{id} && $attr->{id} eq $desired_id;
169
170                 $self->handler(text => sub {
171                         my ($dtext) = @_;
172                         $content .= $dtext;
173                 }, "dtext");
174         }, "tagname,self,attr");
175
176         $p->parse_file($file) || die $!;
177
178         return $content;
179 }
180
181 sub _extract_html_links {
182         my ($file, $desired_value) = @_;
183
184         my @hrefs = ();
185
186         my $p = HTML::LinkExtor->new(sub {
187                 my ($tag, %attr) = @_;
188                 return if $tag ne 'a';
189                 return unless $attr{href} =~ qr/$desired_value/;
190                 push(@hrefs, values %attr);
191         }, getcwd() . '/' . $file);
192
193         $p->parse_file($file);
194
195         return @hrefs;
196 }
197
198 simple_podcast();
199 single_page_html();
200 inlined_pages_html();