2014-07-04 15:04:22 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
#
|
|
|
|
# unit test that creates test images (png, svg, multi-page pdf), runs ikiwiki
|
|
|
|
# on them, checks the resulting images for plausibility based on their image
|
|
|
|
# sizes, and checks if they vanish when not required in the build process any
|
|
|
|
# more
|
|
|
|
#
|
2014-07-04 21:55:53 +02:00
|
|
|
# if you have trouble here, be aware that there are three debian packages that
|
|
|
|
# can provide Image::Magick: perlmagick, libimage-magick-perl and
|
|
|
|
# graphicsmagick-libmagick-dev-compat
|
|
|
|
#
|
2014-07-04 15:04:22 +02:00
|
|
|
package IkiWiki;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2016-07-28 10:50:09 +02:00
|
|
|
use Cwd qw(getcwd);
|
2014-07-04 15:04:22 +02:00
|
|
|
use Test::More;
|
2015-08-23 03:50:38 +02:00
|
|
|
plan(skip_all => "Image::Magick not available")
|
2015-11-30 18:33:24 +01:00
|
|
|
unless eval q{use Image::Magick; 1};
|
2014-07-04 15:04:22 +02:00
|
|
|
|
2015-08-23 03:50:38 +02:00
|
|
|
use IkiWiki;
|
2014-07-04 15:04:22 +02:00
|
|
|
|
2015-11-30 18:33:00 +01:00
|
|
|
my $installed = $ENV{INSTALLED_TESTS};
|
|
|
|
|
|
|
|
my @command;
|
|
|
|
if ($installed) {
|
|
|
|
@command = qw(ikiwiki);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ok(! system("make -s ikiwiki.out"));
|
2016-07-28 10:50:09 +02:00
|
|
|
@command = ("perl", "-I".getcwd, qw(./ikiwiki.out
|
2015-11-30 18:33:00 +01:00
|
|
|
--underlaydir=underlays/basewiki
|
|
|
|
--set underlaydirbase=underlays
|
2016-07-28 10:50:09 +02:00
|
|
|
--templatedir=templates));
|
2015-11-30 18:33:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
push @command, qw(--set usedirs=0 --plugin img t/tmp/in t/tmp/out --verbose);
|
|
|
|
|
2014-09-16 00:02:47 +02:00
|
|
|
my $magick = new Image::Magick;
|
|
|
|
|
2016-01-18 10:19:42 +01:00
|
|
|
$magick->Read("t/img/twopages.pdf");
|
|
|
|
my $PDFS_WORK = defined $magick->Get("width");
|
|
|
|
|
2014-07-04 15:04:22 +02:00
|
|
|
ok(! system("rm -rf t/tmp; mkdir -p t/tmp/in"));
|
|
|
|
|
2014-07-04 21:55:53 +02:00
|
|
|
ok(! system("cp t/img/redsquare.png t/tmp/in/redsquare.png"));
|
2016-05-04 09:54:19 +02:00
|
|
|
ok(! system("cp t/img/redsquare.jpg t/tmp/in/redsquare.jpg"));
|
|
|
|
ok(! system("cp t/img/redsquare.jpg t/tmp/in/redsquare.jpeg"));
|
2016-05-09 22:53:10 +02:00
|
|
|
ok(! system("cp t/img/redsquare.jpg t/tmp/in/SHOUTY.JPG"));
|
2015-06-13 21:00:08 +02:00
|
|
|
# colons in filenames are a corner case for img
|
|
|
|
ok(! system("cp t/img/redsquare.png t/tmp/in/hello:world.png"));
|
|
|
|
ok(! system("cp t/img/redsquare.png t/tmp/in/a:b:c.png"));
|
|
|
|
ok(! system("cp t/img/redsquare.png t/tmp/in/a:b:c:d.png"));
|
|
|
|
ok(! system("cp t/img/redsquare.png t/tmp/in/a:b:c:d:e:f:g:h:i:j.png"));
|
2014-09-16 00:02:47 +02:00
|
|
|
|
2016-05-04 09:54:19 +02:00
|
|
|
writefile("bluesquare.svg", "t/tmp/in",
|
|
|
|
'<svg width="30" height="30"><rect x="0" y="0" width="30" height="30" fill="blue"/></svg>');
|
|
|
|
ok(! system("cp t/tmp/in/bluesquare.svg t/tmp/in/really-svg.png"));
|
|
|
|
ok(! system("cp t/tmp/in/bluesquare.svg t/tmp/in/really-svg.bmp"));
|
|
|
|
ok(! system("cp t/tmp/in/bluesquare.svg t/tmp/in/really-svg.pdf"));
|
2014-09-16 00:02:47 +02:00
|
|
|
|
2014-07-04 15:04:22 +02:00
|
|
|
# using different image sizes for different pages, so the pagenumber selection can be tested easily
|
2014-07-04 21:55:53 +02:00
|
|
|
ok(! system("cp t/img/twopages.pdf t/tmp/in/twopages.pdf"));
|
2016-05-09 22:53:10 +02:00
|
|
|
ok(! system("cp t/img/twopages.pdf t/tmp/in/really-pdf.JPEG"));
|
2016-05-04 09:54:19 +02:00
|
|
|
ok(! system("cp t/img/twopages.pdf t/tmp/in/really-pdf.jpg"));
|
|
|
|
ok(! system("cp t/img/twopages.pdf t/tmp/in/really-pdf.png"));
|
|
|
|
ok(! system("cp t/img/twopages.pdf t/tmp/in/really-pdf.svg"));
|
2014-07-04 15:04:22 +02:00
|
|
|
|
2016-01-18 10:19:42 +01:00
|
|
|
my $maybe_pdf_img = "";
|
|
|
|
if ($PDFS_WORK) {
|
|
|
|
$maybe_pdf_img = <<EOF;
|
|
|
|
[[!img twopages.pdf size=12x]]
|
|
|
|
[[!img twopages.pdf size=16x pagenumber=1]]
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2014-07-04 15:04:22 +02:00
|
|
|
writefile("imgconversions.mdwn", "t/tmp/in", <<EOF
|
2014-07-04 21:55:53 +02:00
|
|
|
[[!img redsquare.png]]
|
2016-05-04 09:54:19 +02:00
|
|
|
[[!img redsquare.jpg size=11x]]
|
|
|
|
[[!img redsquare.jpeg size=12x]]
|
2016-05-09 22:53:10 +02:00
|
|
|
[[!img SHOUTY.JPG size=13x]]
|
2014-07-04 21:55:53 +02:00
|
|
|
[[!img redsquare.png size=10x]]
|
2014-07-15 14:03:31 +02:00
|
|
|
[[!img redsquare.png size=30x50]] expecting 30x30
|
2015-06-13 21:00:08 +02:00
|
|
|
[[!img hello:world.png size=x8]] expecting 8x8
|
|
|
|
[[!img a:b:c.png size=x4]]
|
|
|
|
[[!img a:b:c:d:e:f:g:h:i:j.png size=x6]]
|
2016-05-06 02:44:11 +02:00
|
|
|
[[!img bluesquare.svg size=42x]] expecting 42x
|
|
|
|
[[!img bluesquare.svg size=x43]] expecting x43
|
2016-05-09 00:25:46 +02:00
|
|
|
[[!img bluesquare.svg size=42x43]] expecting 42x43 because aspect ratio not preserved
|
2016-01-18 10:19:42 +01:00
|
|
|
$maybe_pdf_img
|
2016-05-04 09:54:19 +02:00
|
|
|
|
|
|
|
# bad ideas
|
|
|
|
[[!img really-svg.png size=666x]]
|
|
|
|
[[!img really-svg.bmp size=666x]]
|
|
|
|
[[!img really-svg.pdf size=666x]]
|
2016-05-09 22:53:10 +02:00
|
|
|
[[!img really-pdf.JPEG size=666x]]
|
2016-05-04 09:54:19 +02:00
|
|
|
[[!img really-pdf.jpg size=666x]]
|
|
|
|
[[!img really-pdf.png size=666x]]
|
|
|
|
[[!img really-pdf.svg size=666x]]
|
2014-07-04 15:04:22 +02:00
|
|
|
EOF
|
|
|
|
);
|
2015-06-14 19:13:17 +02:00
|
|
|
ok(utime(333333333, 333333333, "t/tmp/in/imgconversions.mdwn"));
|
2014-07-04 15:04:22 +02:00
|
|
|
|
2016-05-06 08:32:17 +02:00
|
|
|
ok(! system(@command, '--set-yaml', 'img_allowed_formats=[JPEG, PNG, svg, pdf]'));
|
2014-07-04 15:04:22 +02:00
|
|
|
|
2014-07-04 21:55:53 +02:00
|
|
|
sub size($) {
|
|
|
|
my $filename = shift;
|
|
|
|
my $im = Image::Magick->new();
|
2015-06-13 21:00:08 +02:00
|
|
|
my $r = $im->Read(":$filename");
|
2014-07-15 14:03:00 +02:00
|
|
|
return "no image" if $r;
|
2014-07-04 21:55:53 +02:00
|
|
|
my $w = $im->Get("width");
|
|
|
|
my $h = $im->Get("height");
|
|
|
|
return "${w}x${h}";
|
|
|
|
}
|
|
|
|
|
2014-07-04 15:04:22 +02:00
|
|
|
my $outpath = "t/tmp/out/imgconversions";
|
2014-09-01 09:40:54 +02:00
|
|
|
my $outhtml = readfile("$outpath.html");
|
2014-07-15 14:03:31 +02:00
|
|
|
|
2014-07-04 21:55:53 +02:00
|
|
|
is(size("$outpath/10x-redsquare.png"), "10x10");
|
2014-07-15 14:03:31 +02:00
|
|
|
ok(! -e "$outpath/30x-redsquare.png");
|
|
|
|
ok($outhtml =~ /width="30" height="30".*expecting 30x30/);
|
2016-05-06 02:44:11 +02:00
|
|
|
ok($outhtml =~ /width="42".*expecting 42x/);
|
|
|
|
ok($outhtml =~ /height="43".*expecting x43/);
|
|
|
|
ok($outhtml =~ /width="42" height="43".*expecting 42x43/);
|
2016-01-18 10:19:42 +01:00
|
|
|
|
|
|
|
SKIP: {
|
|
|
|
skip "PDF support not installed (try ghostscript)", 2
|
|
|
|
unless $PDFS_WORK;
|
|
|
|
is(size("$outpath/12x-twopages.png"), "12x12");
|
|
|
|
is(size("$outpath/16x-p1-twopages.png"), "16x2");
|
2014-09-16 00:02:47 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 21:00:08 +02:00
|
|
|
ok($outhtml =~ /width="8" height="8".*expecting 8x8/);
|
|
|
|
is(size("$outpath/x8-hello:world.png"), "8x8");
|
|
|
|
is(size("$outpath/x4-a:b:c.png"), "4x4");
|
|
|
|
is(size("$outpath/x6-a:b:c:d:e:f:g:h:i:j.png"), "6x6");
|
2014-07-04 15:04:22 +02:00
|
|
|
|
2016-05-04 09:54:19 +02:00
|
|
|
is(size("$outpath/11x-redsquare.jpg"), "11x11");
|
|
|
|
is(size("$outpath/12x-redsquare.jpeg"), "12x12");
|
2016-05-09 22:53:10 +02:00
|
|
|
is(size("$outpath/13x-SHOUTY.JPG"), "13x13");
|
2016-05-04 09:54:19 +02:00
|
|
|
like($outhtml, qr{src="(\./)?imgconversions/11x-redsquare\.jpg" width="11" height="11"});
|
|
|
|
like($outhtml, qr{src="(\./)?imgconversions/12x-redsquare\.jpeg" width="12" height="12"});
|
2016-05-09 22:53:10 +02:00
|
|
|
like($outhtml, qr{src="(\./)?imgconversions/13x-SHOUTY\.JPG" width="13" height="13"});
|
2016-05-04 09:54:19 +02:00
|
|
|
|
|
|
|
# We do not misinterpret images
|
2016-05-06 00:17:45 +02:00
|
|
|
my $quot = qr/(?:"|")/;
|
|
|
|
like($outhtml, qr/${quot}really-svg\.png${quot} does not seem to be a valid png file/);
|
2016-05-04 09:54:19 +02:00
|
|
|
ok(! -e "$outpath/666x-really-svg.png");
|
|
|
|
ok(! -e "$outpath/666x-really-svg.bmp");
|
2016-05-09 22:53:10 +02:00
|
|
|
like($outhtml, qr/${quot}really-pdf\.JPEG${quot} does not seem to be a valid jpeg file/);
|
2016-05-04 09:54:19 +02:00
|
|
|
ok(! -e "$outpath/666x-really-pdf.jpeg");
|
2016-05-09 22:53:10 +02:00
|
|
|
ok(! -e "$outpath/666x-really-pdf.JPEG");
|
2016-05-06 00:17:45 +02:00
|
|
|
like($outhtml, qr/${quot}really-pdf\.jpg${quot} does not seem to be a valid jpeg file/);
|
2016-05-04 09:54:19 +02:00
|
|
|
ok(! -e "$outpath/666x-really-pdf.jpg");
|
2016-05-06 00:17:45 +02:00
|
|
|
like($outhtml, qr/${quot}really-pdf\.png${quot} does not seem to be a valid png file/);
|
2016-05-04 09:54:19 +02:00
|
|
|
ok(! -e "$outpath/666x-really-pdf.png");
|
|
|
|
|
|
|
|
# disable support for uncommon formats and try again
|
|
|
|
ok(! system(@command, "--rebuild"));
|
|
|
|
ok(! -e "$outpath/10x-bluesquare.png");
|
|
|
|
ok(! -e "$outpath/12x-twopages.png");
|
|
|
|
ok(! -e "$outpath/16x-p1-twopages.png");
|
|
|
|
|
2014-07-04 15:04:22 +02:00
|
|
|
# now let's remove them again
|
|
|
|
|
2014-07-15 14:03:00 +02:00
|
|
|
if (1) { # for easier testing
|
|
|
|
writefile("imgconversions.mdwn", "t/tmp/in", "nothing to see here");
|
2014-07-04 15:04:22 +02:00
|
|
|
|
2015-11-30 18:33:00 +01:00
|
|
|
ok(! system(@command, "--refresh"));
|
2014-07-04 15:04:22 +02:00
|
|
|
|
2016-01-18 10:21:07 +01:00
|
|
|
ok(! -e "$outpath/10x-redsquare.png");
|
|
|
|
ok(! -e "$outpath/10x-bluesquare.png");
|
|
|
|
ok(! -e "$outpath/12x-twopages.png");
|
2016-05-09 22:53:10 +02:00
|
|
|
ok(! -e "$outpath/13x-SHOUTY.JPG");
|
2016-01-18 10:21:07 +01:00
|
|
|
ok(! -e "$outpath/16x-p1-twopages.png");
|
2015-06-13 21:00:08 +02:00
|
|
|
ok(! -e "$outpath/x8-hello:world.png");
|
|
|
|
ok(! -e "$outpath/x4-a:b:c.png");
|
|
|
|
ok(! -e "$outpath/x6-a:b:c:d:e:f:g:h:i:j.png");
|
2014-07-04 15:04:22 +02:00
|
|
|
|
2014-07-15 14:03:00 +02:00
|
|
|
# cleanup
|
|
|
|
ok(! system("rm -rf t/tmp"));
|
|
|
|
}
|
2014-07-04 15:04:22 +02:00
|
|
|
done_testing;
|
|
|
|
|
|
|
|
1;
|