]> git.imager.perl.org - imager.git/blob - t/t103raw.t
[rt #69194] include more information in read()/write() error messages
[imager.git] / t / t103raw.t
1 #!perl -w
2 use strict;
3 use Test::More tests => 47;
4 use Imager qw(:all);
5 use Imager::Test qw/is_color3 is_color4/;
6
7 -d "testout" or mkdir "testout";
8
9 Imager->open_log(log => "testout/t103raw.log");
10
11 $| = 1;
12
13 my $green=i_color_new(0,255,0,255);
14 my $blue=i_color_new(0,0,255,255);
15 my $red=i_color_new(255,0,0,255);
16
17 my $img=Imager::ImgRaw::new(150,150,3);
18 my $cmpimg=Imager::ImgRaw::new(150,150,3);
19
20 i_box_filled($img,70,25,130,125,$green);
21 i_box_filled($img,20,25,80,125,$blue);
22 i_arc($img,75,75,30,0,361,$red);
23 i_conv($img,[0.1, 0.2, 0.4, 0.2, 0.1]);
24
25 my $timg = Imager::ImgRaw::new(20, 20, 4);
26 my $trans = i_color_new(255, 0, 0, 127);
27 i_box_filled($timg, 0, 0, 20, 20, $green);
28 i_box_filled($timg, 2, 2, 18, 18, $trans);
29
30 open(FH,">testout/t103.raw") || die "Cannot open testout/t103.raw for writing\n";
31 binmode(FH);
32 my $IO = Imager::io_new_fd( fileno(FH) );
33 ok(i_writeraw_wiol($img, $IO), "write raw low") or
34   print "# Cannot write testout/t103.raw\n";
35 close(FH);
36
37 open(FH,"testout/t103.raw") || die "Cannot open testout/t103.raw\n";
38 binmode(FH);
39 $IO = Imager::io_new_fd( fileno(FH) );
40 $cmpimg = i_readraw_wiol($IO, 150, 150, 3, 3, 0);
41 ok($cmpimg, "read raw low")
42   or print "# Cannot read testout/t103.raw\n";
43 close(FH);
44
45 print "# raw average mean square pixel difference: ",sqrt(i_img_diff($img,$cmpimg))/150*150,"\n";
46
47 # I could have kept the raw images for these tests in binary files in
48 # testimg/, but I think keeping them as hex encoded data in here makes
49 # it simpler to add more if necessary
50 # Later we may change this to read from a scalar instead
51 save_data('testout/t103_base.raw');
52 save_data('testout/t103_3to4.raw');
53 save_data('testout/t103_line_int.raw');
54 save_data('testout/t103_img_int.raw');
55
56 # load the base image
57 open FH, "testout/t103_base.raw" 
58   or die "Cannot open testout/t103_base.raw: $!";
59 binmode FH;
60 $IO = Imager::io_new_fd( fileno(FH) );
61
62 my $baseimg = i_readraw_wiol( $IO, 4, 4, 3, 3, 0);
63 ok($baseimg, "read base raw image")
64   or die "Cannot read base raw image";
65 close FH;
66
67 # the actual read tests
68 # each read_test() call does 2 tests:
69 #  - check if the read succeeds
70 #  - check if it matches $baseimg
71 read_test('testout/t103_3to4.raw', 4, 4, 4, 3, 0, $baseimg);
72 read_test('testout/t103_line_int.raw', 4, 4, 3, 3, 1, $baseimg);
73 # intrl==2 is documented in raw.c but doesn't seem to be implemented
74 #read_test('testout/t103_img_int.raw', 4, 4, 3, 3, 2, $baseimg, 7);
75
76 # paletted images
77 SKIP:
78 {
79   my $palim = Imager::i_img_pal_new(20, 20, 3, 256);
80   ok($palim, "make paletted image")
81     or skip("couldn't make paletted image", 2);
82   my $redindex = Imager::i_addcolors($palim, $red);
83   my $blueindex = Imager::i_addcolors($palim, $blue);
84   for my $y (0..9) {
85     Imager::i_ppal($palim, 0, $y, ($redindex) x 20);
86   }
87   for my $y (10..19) {
88     Imager::i_ppal($palim, 0, $y, ($blueindex) x 20);
89   }
90   open FH, "> testout/t103_pal.raw"
91     or die "Cannot create testout/t103_pal.raw: $!";
92   binmode FH;
93   $IO = Imager::io_new_fd(fileno(FH));
94   ok(i_writeraw_wiol($palim, $IO), "write low paletted");
95   close FH;
96   
97   open FH, "testout/t103_pal.raw"
98     or die "Cannot open testout/t103_pal.raw: $!";
99   binmode FH;
100   my $data = do { local $/; <FH> };
101   is($data, "\x0" x 200 . "\x1" x 200, "compare paletted data written");
102   close FH;
103 }
104
105 # 16-bit image
106 # we don't have 16-bit reads yet
107 SKIP:
108 {
109   my $img16 = Imager::i_img_16_new(150, 150, 3);
110   ok($img16, "make 16-bit/sample image")
111     or skip("couldn't make 16 bit/sample image", 1);
112   i_box_filled($img16,70,25,130,125,$green);
113   i_box_filled($img16,20,25,80,125,$blue);
114   i_arc($img16,75,75,30,0,361,$red);
115   i_conv($img16,[0.1, 0.2, 0.4, 0.2, 0.1]);
116   
117   open FH, "> testout/t103_16.raw" 
118     or die "Cannot create testout/t103_16.raw: $!";
119   binmode FH;
120   $IO = Imager::io_new_fd(fileno(FH));
121   ok(i_writeraw_wiol($img16, $IO), "write low 16 bit image");
122   close FH;
123 }
124
125 # try a simple virtual image
126 SKIP:
127 {
128   my $maskimg = Imager::i_img_masked_new($img, undef, 0, 0, 150, 150);
129   ok($maskimg, "make masked image")
130     or skip("couldn't make masked image", 3);
131
132   open FH, "> testout/t103_virt.raw" 
133     or die "Cannot create testout/t103_virt.raw: $!";
134   binmode FH;
135   $IO = Imager::io_new_fd(fileno(FH));
136   ok(i_writeraw_wiol($maskimg, $IO), "write virtual raw");
137   close FH;
138
139   open FH, "testout/t103_virt.raw"
140     or die "Cannot open testout/t103_virt.raw: $!";
141   binmode FH;
142   $IO = Imager::io_new_fd(fileno(FH));
143   my $cmpimgmask = i_readraw_wiol($IO, 150, 150, 3, 3, 0);
144   ok($cmpimgmask, "read result of masked write");
145   my $diff = i_img_diff($maskimg, $cmpimgmask);
146   print "# difference for virtual image $diff\n";
147   is($diff, 0, "compare masked to read");
148
149   # check that i_format is set correctly
150   my $index = Imager::i_tags_find($cmpimgmask, 'i_format', 0);
151   if ($index) {
152     my $value = Imager::i_tags_get($cmpimgmask, $index);
153     is($value, 'raw', "check i_format value");
154   }
155   else {
156     fail("couldn't find i_format tag");
157   }
158 }
159
160 { # error handling checks
161   # should get an error writing to a open for read file
162   # make a empty file
163   open RAW, "> testout/t103_empty.raw"
164     or die "Cannot create testout/t103_empty.raw: $!";
165   close RAW;
166   open RAW, "< testout/t103_empty.raw"
167     or die "Cannot open testout/t103_empty.raw: $!";
168   my $im = Imager->new(xsize => 50, ysize=>50);
169   ok(!$im->write(fh => \*RAW, type => 'raw'),
170      "write to open for read handle");
171   cmp_ok($im->errstr, '=~', '^Could not write to file: write\(\) failure', 
172          "check error message");
173   close RAW;
174
175   # should get an error reading an empty file
176   ok(!$im->read(file => 'testout/t103_empty.raw', xsize => 50, ysize=>50, type=>'raw', interleave => 1),
177      'read an empty file');
178   is($im->errstr, 'premature end of file', "check message");
179   open RAW, "> testout/t103_empty.raw"
180     or die "Cannot create testout/t103_empty.raw: $!";
181   ok(!$im->read(fh => \*RAW, , xsize => 50, ysize=>50, type=>'raw', interleave => 1),
182      'read a file open for write');
183   cmp_ok($im->errstr, '=~', '^error reading file: read\(\) failure', "check message");
184   
185 }
186
187
188 {
189   ok(grep($_ eq 'raw', Imager->read_types), "check raw in read types");
190   ok(grep($_ eq 'raw', Imager->write_types), "check raw in write types");
191 }
192
193
194 { # OO no interleave warning
195   my $im = Imager->new;
196   my $msg;
197   local $SIG{__WARN__} = sub { $msg = "@_" };
198   ok($im->read(file => "testout/t103_line_int.raw", xsize => 4, ysize => 4,
199                type => "raw"),
200      "read without interleave parameter")
201     or print "# ", $im->errstr, "\n";
202   ok($msg, "should have warned");
203   like($msg, qr/interleave/, "check warning is ok");
204   # check we got the right value
205   is_color3($im->getpixel(x => 0, y => 0), 0x00, 0x11, 0x22,
206             "check the image was read correctly");
207
208   # check no warning if either is supplied
209   $im = Imager->new;
210   undef $msg;
211   ok($im->read(file => "testout/t103_base.raw", xsize => 4, ysize => 4, type => "raw", interleave => 0), 
212      "read with interleave 0");
213   is($msg, undef, "no warning");
214   is_color3($im->getpixel(x => 0, y => 0), 0x00, 0x11, 0x22,
215             "check read non-interleave");
216
217   $im = Imager->new;
218   undef $msg;
219   ok($im->read(file => "testout/t103_base.raw", xsize => 4, ysize => 4, type => "raw", raw_interleave => 0), 
220      "read with raw_interleave 0");
221   is($msg, undef, "no warning");
222   is_color3($im->getpixel(x => 1, y => 0), 0x01, 0x12, 0x23,
223             "check read non-interleave");
224
225   # make sure set to 1 is sane
226   $im = Imager->new;
227   undef $msg;
228   ok($im->read(file => "testout/t103_line_int.raw", xsize => 4, ysize => 4, type => "raw", raw_interleave => 1), 
229      "read with raw_interleave 1");
230   is($msg, undef, "no warning");
231   is_color3($im->getpixel(x => 2, y => 0), 0x02, 0x13, 0x24,
232             "check read interleave = 1");
233 }
234
235 { # invalid interleave error handling
236   my $im = Imager->new;
237   ok(!$im->read(file => "testout/t103_base.raw", raw_interleave => 2, type => "raw", xsize => 4, ysize => 4),
238      "invalid interleave");
239   is($im->errstr, "raw_interleave must be 0 or 1", "check message");
240 }
241
242 { # store/data channel behaviour
243   my $im = Imager->new;
244   ok($im->read(file => "testout/t103_3to4.raw", xsize => 4, ysize => 4, 
245                raw_datachannels => 4, raw_interleave => 0, type => "raw"),
246      "read 4 channel file as 3 channels")
247     or print "# ", $im->errstr, "\n";
248   is_color3($im->getpixel(x => 2, y => 1), 0x12, 0x23, 0x34,
249             "check read correctly");
250 }
251
252 { # should fail to read with storechannels > 4
253   my $im = Imager->new;
254   ok(!$im->read(file => "testout/t103_line_int.raw", type => "raw",
255                 raw_interleave => 1, xsize => 4, ysize => 4,
256                 raw_storechannels => 5),
257      "read with large storechannels");
258   is($im->errstr, "raw_storechannels must be between 1 and 4", 
259      "check error message");
260 }
261
262 { # should zero spare channels if storechannels > datachannels
263   my $im = Imager->new;
264   ok($im->read(file => "testout/t103_base.raw", type => "raw",
265                 raw_interleave => 0, xsize => 4, ysize => 4,
266                 raw_storechannels => 4),
267      "read with storechannels > datachannels");
268   is($im->getchannels, 4, "should have 4 channels");
269   is_color4($im->getpixel(x => 2, y => 1), 0x12, 0x23, 0x34, 0x00,
270             "check last channel zeroed");
271 }
272
273 Imager->close_log;
274
275 unless ($ENV{IMAGER_KEEP_FILES}) {
276   unlink "testout/t103raw.log";
277   unlink(qw(testout/t103_base.raw testout/t103_3to4.raw
278             testout/t103_line_int.raw testout/t103_img_int.raw))
279 }
280
281 sub read_test {
282   my ($in, $xsize, $ysize, $data, $store, $intrl, $base) = @_;
283   open FH, $in or die "Cannot open $in: $!";
284   binmode FH;
285   my $IO = Imager::io_new_fd( fileno(FH) );
286
287   my $img = i_readraw_wiol($IO, $xsize, $ysize, $data, $store, $intrl);
288  SKIP:
289   {
290     ok($img, "read_test $in read")
291       or skip("couldn't read $in", 1);
292     is(i_img_diff($img, $baseimg), 0, "read_test $in compare");
293   }
294 }
295
296 sub save_data {
297   my $outname = shift;
298   my $data = load_data();
299   open FH, "> $outname" or die "Cannot create $outname: $!";
300   binmode FH;
301   print FH $data;
302   close FH;
303 }
304
305 sub load_data {
306   my $hex = '';
307   while (<DATA>) {
308     next if /^#/;
309     last if /^EOF/;
310     chomp;
311     $hex .= $_;
312   }
313   $hex =~ tr/ //d;
314   my $result = pack("H*", $hex);
315   #print unpack("H*", $result),"\n";
316   return $result;
317 }
318
319 # FIXME: may need tests for 1,2,4 channel images
320
321 __DATA__
322 # we keep some packed raw images here
323 # we decode this in the code, ignoring lines starting with #, a subfile
324 # ends with EOF, data is HEX encoded (spaces ignored)
325
326 # basic 3 channel version of the image
327 001122 011223 021324 031425
328 102132 112233 122334 132435
329 203142 213243 223344 233445
330 304152 314253 324354 334455
331 EOF
332
333 # test image for reading a 4 channel image into a 3 channel image
334 # 4 x 4 pixels
335 00112233 01122334 02132435 03142536
336 10213243 11223344 12233445 13243546
337 20314253 21324354 22334455 23344556
338 30415263 31425364 32435465 33445566
339 EOF
340
341 # test image for line based interlacing
342 # 4 x 4 pixels
343 # first line
344 00 01 02 03
345 11 12 13 14
346 22 23 24 25
347
348 # second line
349 10 11 12 13
350 21 22 23 24
351 32 33 34 35
352
353 # third line
354 20 21 22 23
355 31 32 33 34
356 42 43 44 45
357
358 # fourth line
359 30 31 32 33
360 41 42 43 44
361 52 53 54 55
362
363 EOF
364
365 # test image for image based interlacing
366 # first channel
367 00 01 02 03
368 10 11 12 13
369 20 21 22 23
370 30 31 32 33
371
372 # second channel
373 11 12 13 14
374 21 22 23 24
375 31 32 33 34
376 41 42 43 44
377
378 # third channel
379 22 23 24 25
380 32 33 34 35
381 42 43 44 45
382 52 53 54 55
383
384 EOF