]> sipb.mit.edu Git - ikiwiki.git/blobdiff - t/podcast.t
Make enclosures absolute (in feeds they have to be).
[ikiwiki.git] / t / podcast.t
index 993814742068665eb34f5773b604f199a6612e73..88d2ca074878c1f08b841b84d1c6a47a932b2bb1 100755 (executable)
@@ -9,7 +9,7 @@ BEGIN {
                        "XML::Feed and/or HTML::Parser not available"};
        }
        else {
-               eval q{use Test::More tests => 78};
+               eval q{use Test::More tests => 92};
        }
 }
 
@@ -25,8 +25,10 @@ sub simple_podcast {
        push @command, qw(-set underlaydirbase=underlays -templatedir=templates);
        push @command, "-url=$baseurl", qw(t/tinypodcast), "$tmp/out";
 
-       ok(! system("mkdir $tmp"), q{setup});
-       ok(! system(@command), q{build});
+       ok(! system("mkdir $tmp"),
+               q{setup});
+       ok(! system(@command),
+               q{build});
 
        my %media_types = (
                'simplepost'    => undef,
@@ -97,21 +99,71 @@ sub single_page_html {
        push @command, qw(-set underlaydirbase=underlays -templatedir=templates);
        push @command, qw(t/tinypodcast), "$tmp/out";
 
-       ok(! system("mkdir $tmp"), q{setup});
-       ok(! system(@command), q{build});
+       ok(! system("mkdir $tmp"),
+               q{setup});
+       ok(! system(@command),
+               q{build});
 
        my $html = "$tmp/out/pianopost/index.html";
+       like(_extract_html_content($html, 'content'), qr/has content and/m,
+               q{html body text});
+       like(_extract_html_content($html, 'enclosure'), qr/this episode/m,
+               q{html enclosure});
+       my ($href) = _extract_html_links($html, 'piano');
+       is($href, '/piano.mp3',
+               q{html enclosure sans -url is site-absolute});
+
+       $html = "$tmp/out/attempted_multiple_enclosures/index.html";
+       like(_extract_html_content($html, 'content'), qr/has content and/m,
+               q{html body text});
+       like(_extract_html_content($html, 'enclosure'), qr/this episode/m,
+               q{html enclosure});
+       ($href) = _extract_html_links($html, 'walter');
+       is($href, '/walter.ogg',
+               q{html enclosure sans -url is site-absolute});
 
-       my $body = _extract_html_content($html, 'content');
-       like($body, qr/article has content and/m, q{html body text});
+       my $baseurl = 'http://example.com';
+       ok(! system(@command, "-url=$baseurl", q{--rebuild}));
 
-       my $enclosure = _extract_html_content($html, 'enclosure');
-       like($enclosure, qr/Download this episode/m, q{html enclosure});
+       $html = "$tmp/out/pianopost/index.html";
+       ($href) = _extract_html_links($html, 'piano');
+       is($href, "$baseurl/piano.mp3",
+               q{html enclosure with -url is fully absolute});
 
-       my ($href) = _extract_html_links($html, 'piano');
-       ok(-f $href, q{html enclosure exists});
+       $html = "$tmp/out/attempted_multiple_enclosures/index.html";
+       ($href) = _extract_html_links($html, 'walter');
+       is($href, "$baseurl/walter.ogg",
+               q{html enclosure with -url is fully absolute});
 
-       # XXX die if more than one enclosure is specified
+       ok(! system("rm -rf $tmp $statedir"), q{teardown});
+}
+
+sub inlined_pages_html {
+       my @command = (qw(./ikiwiki.out -plugin inline));
+       push @command, qw(-underlaydir=underlays/basewiki);
+       push @command, qw(-set underlaydirbase=underlays -templatedir=templates);
+       push @command, qw(t/tinypodcast), "$tmp/out";
+
+       ok(! system("mkdir $tmp"),
+               q{setup});
+       ok(! system(@command),
+               q{build});
+
+       my $html = "$tmp/out/fancy/index.html";
+       my $contents = _extract_html_content($html, 'content');
+       like($contents, qr/has content and an/m,
+               q{html body text from pianopost});
+       like($contents, qr/has content and only one/m,
+               q{html body text from attempted_multiple_enclosures});
+       my $enclosures = _extract_html_content($html, 'inlineenclosure');
+       like($enclosures, qr/this episode/m,
+               q{html enclosure});
+       my ($href) = _extract_html_links($html, 'piano.mp3');
+       is($href, '/piano.mp3',
+               q{html enclosure from pianopost sans -url});
+       ($href) = _extract_html_links($html, 'walter.ogg');
+       is($href, '/walter.ogg',
+               q{html enclosure from attempted_multiple_enclosures sans -url});
 
        ok(! system("rm -rf $tmp $statedir"), q{teardown});
 }
@@ -132,11 +184,6 @@ sub _extract_html_content {
                        my ($dtext) = @_;
                        $content .= $dtext;
                }, "dtext");
-
-               $self->handler(end  => sub {
-                       my ($tag, $self) = @_;
-                       $self->eof if $tag eq $desired_tag;
-               }, "tagname,self");
        }, "tagname,self,attr");
 
        $p->parse_file($file) || die $!;
@@ -163,3 +210,4 @@ sub _extract_html_links {
 
 simple_podcast();
 single_page_html();
+inlined_pages_html();