1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
|
#!/usr/bin/perl
use strict;
use warnings;
use FileHandle;
use FindBin qw($Bin);
use lib "$Bin/../blib/lib","$Bin/../blib/arch","$Bin/../lib";
use constant FONT=>"$Bin/test_data/Generic.ttf";
use GD::Image;
use Test::More;
use IO::Dir;
use constant REGRESSION_TESTS => 8;
plan tests => (REGRESSION_TESTS + 7);
use_ok('GD::Simple');
use_ok('GD',':DEFAULT',':cmp');
chdir $Bin || die "Couldn't change to 't' directory: $!";
my $images = './test_data/images';
my @image_types = GD::Image::supported();
my $image_types = scalar(@image_types);
my $arg = shift;
write_regression_tests() if (defined $arg && $arg eq '--write');
run_image_regression_tests(); # 8
run_round_trip_test(); # 2
catch_libgd_error(); # 2
test_cve2019_6977(); # 1
exit 0;
sub write_regression_tests {
# we get now all the supported image formats dynamically
if (GD::LIBGD_VERSION() < 2.0302 ) {
# GD 2.3.2 disabled the old GD and GD2 formats by default
unshift @image_types, 'gd2', 'gd';
}
warn "Writing regression files...";
for my $suffix (@image_types) {
my $op = ucfirst $suffix;
$op = 'WBMP' if $suffix eq 'wbmp';
if (!GD::Image->can("newFrom$op") or $op eq "Xbm") {
print "# not writing $op regression test: not supported\n";
next;
}
for my $t (1..REGRESSION_TESTS) {
my $data = eval "test${t}('$suffix')" or die $@;
write_regression_test($data,$t,$suffix);
}
}
}
sub write_regression_test {
my ($data,$test,$suffix) = @_;
my $base = "$images/t${test}";
mkdir $base unless -d $base;
my $count = 0;
my $filename = sprintf ("$base/$test-%02d.$suffix",$count);
while (-e $filename) {
$count++;
$filename = sprintf ("$base/$test-%02d.$suffix",$count);
}
open my $fh,'>',$filename or die "$filename: $!";
binmode($fh);
if ($suffix eq "wbmp") {
print $fh $data->$suffix(0);
} else {
print $fh $data->$suffix;
}
close $fh or die "$filename: $!";
}
sub compare {
my ($data,$test,$suffix) = @_;
my @files_to_match = glob("$images/t${test}/*.$suffix");
my $matched;
for my $file (@files_to_match) {
$matched ||= compare_image($data,$file,$suffix);
}
return $matched;
}
sub compare_image {
my ($data1,$file,$suffix) = @_;
my $op = ucfirst($suffix);
$op = 'WBMP' if $suffix eq 'wbmp';
my $method = "newFrom${op}";
my $data2 = eval {GD::Image->$method($file)} or die $@;
return ! $data1->compare($data2) & GD_CMP_IMAGE();
}
sub test1 {
my $suffix = shift;
my $im = new GD::Image(300,300);
my($white) = $im->colorAllocate(255, 255, 255);
my($black) = $im->colorAllocate(0, 0, 0);
my($red) = $im->colorAllocate(255, 0, 0);
my($green) = $im->colorAllocate(0,255,0);
my($yellow) = $im->colorAllocate(255,250,205);
my $fn = "./test_data/tile.$suffix";
my $op = ucfirst($suffix);
$op = 'WBMP' if $suffix eq 'wbmp';
my $tile = eval "GD::Image->newFrom${op}('$fn')" or die $@;
return unless $tile;
$im->setBrush($tile);
$im->arc(100,100,100,150,0,360,gdBrushed());
$im->setTile($tile);
$im->filledRectangle(150,150,250,250,gdTiled());
$im->rectangle(150,150,250,250,$black);
$im->setStyle($green,$green,$green,gdTransparent(),$red,$red,$red,gdTransparent());
$im->line(0,280,300,280,gdStyled());
return $im;
}
sub test2 {
my($im) = new GD::Image(300,300);
my($white,$black,$red,$blue,$yellow) = (
$im->colorAllocate(255, 255, 255),
$im->colorAllocate(0, 0, 0),
$im->colorAllocate(255, 0, 0),
$im->colorAllocate(0,0,255),
$im->colorAllocate(255,250,205)
);
my($brush) = new GD::Image(10,10);
$brush->colorAllocate(255,255,255); # white
$brush->colorAllocate(0,0,0); # black
$brush->transparent($white); # white is transparent
$brush->filledRectangle(0,0,5,2,$black); # a black rectangle
$im->setBrush($brush);
$im->arc(100,100,100,150,0,360,gdBrushed());
my($poly) = new GD::Polygon;
$poly->addPt(30,30);
$poly->addPt(100,10);
$poly->addPt(190,290);
$poly->addPt(30,290);
$im->polygon($poly,gdBrushed());
$im->fill(132,62,$blue);
$im->fill(100,70,$red);
$im->fill(40,40,$yellow);
$im->copy($im,150,150,20,20,50,50);
$im->copyResized($im,10,200,20,20,100,100,50,50);
return $im;
}
sub test3 {
my($im) = new GD::Image(100,50);
my($black,$white,$red,$blue) =
(
$im->colorAllocate(0, 0, 0),
$im->colorAllocate(255, 255, 255),
$im->colorAllocate(255, 0, 0),
$im->colorAllocate(0,0,255)
);
$im->arc(50, 25, 98, 48, 0, 360, $white);
$im->fill(50, 21, $red);
return $im;
}
sub test4 {
my($im) = new GD::Image(225,180);
my($black,$white,$red,$blue,$yellow) =
($im->colorAllocate(0, 0, 0),
$im->colorAllocate(255, 255, 255),
$im->colorAllocate(255, 0, 0),
$im->colorAllocate(0,0,255),
$im->colorAllocate(255,250,205)
);
my($poly) = new GD::Polygon;
$poly->addPt(0,50);
$poly->addPt(25,25);
$poly->addPt(50,50);
$im->filledPolygon($poly,$blue);
$poly->offset(100,100);
$im->filledPolygon($poly,$red);
$poly->map(50,50,100,100,10,10,110,60);
$im->filledPolygon($poly,$yellow);
$poly->map($poly->bounds,50,20,80,160);
$im->filledPolygon($poly,$white);
return $im;
}
sub test5 {
my($im) = new GD::Image(300,300);
my($white,$black,$red,$blue,$yellow) =
(
$im->colorAllocate(255, 255, 255),
$im->colorAllocate(0, 0, 0),
$im->colorAllocate(255, 0, 0),
$im->colorAllocate(0,0,255),
$im->colorAllocate(255,250,205)
);
$im->transparent($white);
my($brush) = new GD::Image(10,10);
$brush->colorAllocate(255,255,255);
$brush->colorAllocate(0,0,0);
$brush->transparent($white);
$brush->filledRectangle(0,0,5,2,$black);
$im->string(gdLargeFont(),150,10,"Hello world!",$red);
$im->string(gdSmallFont(),150,28,"Goodbye cruel world!",$blue);
$im->stringUp(gdTinyFont(),280,250,"I'm climbing the wall!",$black);
$im->charUp(gdMediumBoldFont(),280,280,"Q",$black);
$im->setBrush($brush);
$im->arc(100,100,100,150,0,360,gdBrushed());
my $poly = new GD::Polygon;
$poly->addPt(30,30);
$poly->addPt(100,10);
$poly->addPt(190,290);
$poly->addPt(30,290);
$im->polygon($poly,gdBrushed());
$im->fill(132,62,$blue);
$im->fill(100,70,$red);
$im->fill(40,40,$yellow);
return $im;
}
sub test6 {
my $dtor = 0.0174533;
my $pi = 3.141592654;
my $xsize = 500; my $ysize = 500; my $scale = 1;
my $x_offset = $xsize/2; my $y_offset = $ysize/2;
my $im = new GD::Image($xsize,$ysize);
my $poly = new GD::Polygon;
my $col_bg = $im->colorAllocate(0,0,0);
my $col_fg = $im->colorAllocate(255,255,0);
my $col_fill = $im->colorAllocate(255,0,0);
my $r_0 = 100; my $theta_0 = 20; my $spring_factor = 30;
for(my $theta=0;$theta<=360;$theta++) {
my $r = $r_0 + $spring_factor*sin(2*$pi*$theta/$theta_0);
my $x = int($r * cos($theta*$dtor))*$scale+$x_offset;
my $y = int($r * sin($theta*$dtor))*$scale+$y_offset;
$poly->addPt($x,$y);
}
$im->filledPolygon($poly,$col_fill); # Call gdImageFilledPolygon()
return $im;
}
sub test7 {
my $im = GD::Image->new(400,250);
if (!$im) { printf("Test7: no image");};
my($white,$black,$red,$blue,$yellow) =
(
$im->colorAllocate(255, 255, 255),
$im->colorAllocate(0, 0, 0),
$im->colorAllocate(255, 0, 0),
$im->colorAllocate(0,0,255),
$im->colorAllocate(255,250,205)
);
# Some TTFs
$im->stringFT($black,FONT,12.0,0.0,20,20,"Hello world!") || warn $@;
$im->stringFT($red,FONT,14.0,0.0,20,80,"Hello world!") || warn $@;
$im->stringFT($blue,FONT,30.0,-0.5,60,100,"Goodbye cruel world!") || warn $@;
return $im;
}
sub test8 {
my $im = test4();
$im = $im->copyRotate90();
$im = $im->copyFlipHorizontal();
$im = $im->copyTranspose();
$im->rotate180();
$im->flipVertical();
$im = $im->copyReverseTranspose();
$im = $im->copyFlipVertical();
return $im;
}
sub run_image_regression_tests {
my $suffix = $ENV{GDIMAGETYPE} || $image_types[0];
print STDERR "# Testing gd ".GD::VERSION_STRING()." using $suffix support.\n";
for my $t (1..REGRESSION_TESTS) {
my $gd = eval "test${t}('$suffix')";
if (!$gd) {
fail("unable to generate comparison image for test $t with $suffix: $@");
} else {
my $ok = compare($gd,$t,$suffix);
unless ($ok) {
if (($suffix ne 'gd2') or ($t == 7)) {
ok(1, "TODO image comparison test $t $suffix failed (regen with --write)");
} else {
ok($ok, "image comparison test $t $suffix");
}
diag("gd: ",GD::VERSION_STRING(),
", files: ",join(" ",glob("$images/t${t}/*.$suffix")));
} else {
ok($ok, "image comparison test $t $suffix");
}
}
}
}
sub run_round_trip_test {
my $image = GD::Image->new(300,300);
$image->colorAllocate(255,255,255);
$image->colorAllocate(0,0,0);
$image->colorAllocate(255,0,0);
$image->rectangle(0,0,300,300,0);
$image->filledRectangle(10,10,50,50,2);
if (GD::Image->can("newFromGd") and GD::Image->can("newFromGd2")) {
my $gd = $image->gd;
my $image2 = GD::Image->newFromGdData($gd);
ok(!$image->compare($image2) & GD_CMP_IMAGE(),'round trip gd');
my $gd2 = $image->gd2;
$image2 = GD::Image->newFromGd2Data($gd2);
ok(!$image->compare($image2) & GD_CMP_IMAGE(),'round trip gd2');
}
elsif (GD::Image->can("newFromPng")) {
SKIP: {
skip "No GIF support", 2 unless defined &GD::Image::newFromGif;
# GD 2.3.2 disabled the old GD and GD2 formats by default
my $png = $image->png;
my $image2 = GD::Image->newFromPngData($png);
ok(!$image->compare($image2) & GD_CMP_IMAGE(),'round trip png');
my $gif = $image->gif;
$image2 = GD::Image->newFromGifData($gif);
ok(!$image->compare($image2) & GD_CMP_IMAGE(),'round trip gif');
}
}
else {
SKIP: {
skip "No GIF or TIFF support", 2
unless defined &GD::Image::newFromGif
and defined &GD::Image::newFromTiff;
my $img = $image->tiff;
my $image2 = GD::Image->newFromTiffData($img);
ok(!$image->compare($image2) & GD_CMP_IMAGE(),'round trip tiff');
my $gif = $image->gif;
$image2 = GD::Image->newFromGifData($gif);
ok(!$image->compare($image2) & GD_CMP_IMAGE(),'round trip gif');
}
}
}
sub catch_libgd_error {
diag("ignore corrupt png error messages...");
SKIP: {
skip "No PNG support", 2 unless defined &GD::Image::newFromPng;
my $image = eval { GD::Image->newFromPng("test_data/images/corrupt.png") };
is($image, undef, "empty corrupt png data");
ok($@, 'caught corrupt png');
}
}
sub test_cve2019_6977 {
my $img1 = GD::Image->new(0xfff, 0xfff, 1);
my $img2 = GD::Image->new(0xfff, 0xfff, 0);
$img2->colorAllocate(0, 0, 0);
$img2->setPixel (0, 0, 255);
if (GD::LIBGD_VERSION() >= 2.10) {
$img1->colorMatch ($img2);
}
ok(1, 'survived CVE 2019-6977'); # fails only under valgrind or asan
}
|