From 8b47046fde9d7716b2c3a0e3d5ee7082cf58aed4 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Sat, 1 Dec 2018 17:36:04 +0000 Subject: po: Improve test coverage Signed-off-by: Simon McVittie --- t/po.t | 199 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 195 insertions(+), 4 deletions(-) (limited to 't') diff --git a/t/po.t b/t/po.t index 3e9b9b7fd..82f9e2078 100755 --- a/t/po.t +++ b/t/po.t @@ -69,9 +69,13 @@ $pagesources{'translatable.fr'}='translatable.fr.po'; $pagesources{'translatable.es'}='translatable.es.po'; $pagesources{'nontranslatable'}='nontranslatable.mdwn'; $pagesources{'debian911356'}='debian911356.mdwn'; +$pagesources{'debian911356ish'}='debian911356ish.mdwn'; $pagesources{'debian911356.fr'}='debian911356.fr.po'; +$pagesources{'debian911356ish.fr'}='debian911356ish.fr.po'; $pagesources{'debian911356-inlined'}='debian911356-inlined.mdwn'; $pagesources{'debian911356-inlined.fr'}='debian911356-inlined.fr.po'; +$pagesources{'templates/feedlink.tmpl'}='templates/feedlink.tmpl'; +$pagesources{'templates/inlinepage.tmpl'}='templates/inlinepage.tmpl'; my $now=time; foreach my $page (keys %pagesources) { $IkiWiki::pagecase{lc $page}=$page; @@ -124,6 +128,46 @@ writefile('debian911356-inlined.fr.po', $config{srcdir}, < +EOF +# Make inlines' appearance predictable so we can screen-scrape them +writefile('templates/inlinepage.tmpl', $config{srcdir}, < +
+ + +EOF ### istranslatable/istranslation # we run these tests twice because memoization attempts made them @@ -297,12 +341,22 @@ ok(! IkiWiki::Plugin::po::islanguagecode('_en')); use IkiWiki::Render; my %output; -foreach my $page (keys %pagesources) { +foreach my $page (sort keys %pagesources) { my $source = "$config{srcdir}/$pagesources{$page}"; if (-e $source) { IkiWiki::scan($pagesources{$page}); + } +} + +# This is the most complicated case, so use this while we test rendering +$config{po_link_to}='current'; + +foreach my $page (sort keys %pagesources) { + my $source = "$config{srcdir}/$pagesources{$page}"; + if (-e $source && defined IkiWiki::pagetype($pagesources{$page})) { + IkiWiki::scan($pagesources{$page}); my $content = readfile($source); - print STDERR "-------------------------------------\n"; + #print STDERR "-------------------------------------\n"; #print STDERR "SOURCE: $page: $content\n"; $content = IkiWiki::filter($page, $page, $content); #print STDERR "FILTERED: $page: $content\n"; @@ -311,12 +365,69 @@ foreach my $page (keys %pagesources) { $content = IkiWiki::linkify($page, $page, $content); #print STDERR "LINKIFIED: $page: $content\n"; $content = IkiWiki::htmlize($page, $page, IkiWiki::pagetype($pagesources{$page}), $content); - print STDERR "HTMLIZED: $page: $content\n"; + #print STDERR "HTMLIZED: $page: $content\n"; + IkiWiki::run_hooks(format => sub { + $content=shift->( + page => $page, + content => $content, + ); + }); + #print STDERR "FORMATTED: $page: $content\n"; $output{$page} = $content; - ok(utf8::is_utf8($content), "htmlized content should be utf8"); } } +like($output{index}, qr{ +

+ + translatable + \s* + + nontranslatable + +

+}sx); + +like($output{'index.es'}, qr{ +

+ + translatable + \s* + + nontranslatable + +

+}sx); + +like($output{'index.fr'}, qr{ +

+ + translatable + \s* + + nontranslatable + +

+}sx); + +like($output{'translatable'}, qr{ + + nontranslatable + +}sx); + +TODO: { +local $TODO = 'was [[/]] meant to be a link to the index?'; +unlike($output{'nontranslatable'}, qr{ + class=.createlink. +}sx); +}; +like($output{'nontranslatable'}, qr{ + + translatable + +}sx); + like($output{debian911356}, qr{

Before\sfirst\sinline

\s* @@ -356,4 +467,84 @@ like($output{'debian911356.fr'}, qr{ }sx); }; +# Variation of Debian #911356 without using raw inlines. +like($output{debian911356ish}, qr{ +

Before\sfirst\sinline

+ \s* + + \s* + + \s* +
debian911356-inlined
+ \s* +

English\scontent

+ \s* + + \s* +

Between\sinlines

+ \s* + + \s* + + \s* +
debian911356-inlined
+ \s* +

English\scontent

+ \s* + + \s* +

After\sinlines

+}sx); + +like($output{'debian911356ish.fr'}, qr{ +

Avant\sla\spremière\sinline

+ \s* + + \s* + + \s* +
debian911356-inlined\.fr
+ \s* +

Contenu\sfrançais

+ \s* + + \s* +

Entre\sles\sinlines

+ \s* + .* # TODO: This paragraph gets mangled (Debian #911356) + \s* +

Après\sles\sinlines

+}sx); + +TODO: { +local $TODO = "Debian bug #911356"; +like($output{'debian911356ish.fr'}, qr{ +

Avant\sla\spremière\sinline

+ \s* + + \s* + + \s* +
debian911356-inlined\.fr
+ \s* +

Contenu\sfrançais

+ \s* + + \s* +

Entre\sles\sinlines

+ \s* + + \s* + + \s* +
debian911356-inlined\.fr
+ \s* +

Contenu\sfrançais

+ \s* + + \s* +

Après\sles\sinlines

+}sx); +}; + done_testing; -- cgit v1.2.3