X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/0f9ea1f720e0899f325ad3a9a923ee2b7bc2a038..105f285a63381b9db2c1d538cfdf42798f1c9042:/t/img.t?ds=sidebyside diff --git a/t/img.t b/t/img.t index 088a98328..2ea3abb24 100755 --- a/t/img.t +++ b/t/img.t @@ -18,18 +18,31 @@ use Test::More; BEGIN { use_ok("IkiWiki"); } BEGIN { use_ok("Image::Magick"); } +my $magick = new Image::Magick; +my $SVGS_WORK = defined $magick->QueryFormat("svg"); + ok(! system("rm -rf t/tmp; mkdir -p t/tmp/in")); ok(! system("cp t/img/redsquare.png t/tmp/in/redsquare.png")); -writefile("emptysquare.svg", "t/tmp/in", ''); + +if ($SVGS_WORK) { + writefile("emptysquare.svg", "t/tmp/in", + ''); +} + # using different image sizes for different pages, so the pagenumber selection can be tested easily ok(! system("cp t/img/twopages.pdf t/tmp/in/twopages.pdf")); +my $maybe_svg_img = ""; +if ($SVGS_WORK) { + $maybe_svg_img = "[[!img emptysquare.svg size=10x]]"; +} + writefile("imgconversions.mdwn", "t/tmp/in", <; -close $outhtmlfd; +my $outhtml = readfile("$outpath.html"); is(size("$outpath/10x-redsquare.png"), "10x10"); ok(! -e "$outpath/30x-redsquare.png"); ok($outhtml =~ /width="30" height="30".*expecting 30x30/); -# if this fails, you need libmagickcore-6.q16-2-extra installed -is(size("$outpath/10x-emptysquare.png"), "10x10"); + +if ($SVGS_WORK) { + # if this fails, you need libmagickcore-6.q16-2-extra installed + is(size("$outpath/10x-emptysquare.png"), "10x10"); +} + is(size("$outpath/12x-twopages.png"), "12x12"); is(size("$outpath/16x-p1-twopages.png"), "16x2");