about summary refs log tree commit diff
path: root/test/pnmpad-color.test
blob: 05e8acca657a273a35a3a677047a597dbd1687ad (plain) (blame)
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
#! /bin/sh
# This script tests: pnmpad
# Also requires: pbmmake pgmmake ppmmake pamcut ppmtopgm

tmpdir=${tmpdir:-/tmp}

white_pbm=${tmpdir}/white.pbm
black_pbm=${tmpdir}/black.pbm
test127_pgm=${tmpdir}/testimg1.pgm
test255_pgm=${tmpdir}/testimg2.pgm
test511_pgm=${tmpdir}/testimg3.pgm
test127_ppm=${tmpdir}/testimg1.ppm
test255_ppm=${tmpdir}/testimg2.ppm
test511_ppm=${tmpdir}/testimg3.ppm
target_pnm=${tmpdir}/target.pnm

BLACK="rgbi:0.0/0.0/0.0"
WHITE="rgbi:1.0/1.0/1.0"
LIGHTGRAY="rgbi:0.6/0.6/0.6"
LIGHTGRAYv=0.6
DARKGRAY="rgbi:0.01/0.01/0.01"
DARKGRAYv=0.01
PURPLE="rgb:A0/20/F0"
YELLOW="rgb:F0/F0/00"

pbmmake -w 1 1 > ${white_pbm}
pbmmake -b 1 1 > ${black_pbm}
pgmmake 0.25 1 1 -maxval 127 > ${test127_pgm}
pgmmake 0.25 1 1 -maxval 255 > ${test255_pgm}
pgmmake 0.25 1 1 -maxval 511 > ${test511_pgm}
ppmmake ${YELLOW} 1 1 -maxval 127 > ${test127_ppm}
ppmmake ${YELLOW} 1 1 -maxval 255 > ${test255_ppm}
ppmmake ${YELLOW} 1 1 -maxval 511 > ${test511_ppm}

ptop="-top 1"

# define function
cmptarget () { pamcut -top 0 -left 0 -height 1 -width 1 $@ |\
                cmp -s ${target_ppm} - && echo "match" || echo "failure";  }

echo "Test 1. PBM white infile"

infile=${white_pbm}

echo "Should print match seven times"

pbmmake -w 1 1 > ${target_pnm}
pnmpad ${ptop} -white ${infile} | cmptarget
pnmpad ${ptop} -extend-edge ${infile} | cmptarget
pnmpad ${ptop} -detect-background ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote format ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY}  -promote none   ${infile} | cmptarget

echo "Should print match seven times"

pbmmake -b 1 1 > ${target_pnm}
pnmpad ${ptop} ${infile} | cmptarget
pnmpad ${ptop} -black ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote format ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE}   -promote none ${infile} | cmptarget

echo "Should print match once"

pgmmake -maxval 1 ${LIGHTGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY} -promote format ${infile} | cmptarget

echo "Should print match once"

pgmmake -maxval 1 ${DARKGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY} -promote format ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 255 ${LIGHTGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY} ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote all ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 255 ${DARKGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY} ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote all ${infile} | cmptarget

echo "Should print match once"

ppmmake -maxval 1 ${PURPLE} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${PURPLE} -promote format ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 255 ${PURPLE} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${PURPLE} ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote all ${infile} | cmptarget

echo
echo "Test 2. PBM black infile"

infile=${black_pbm}

echo "Should print match nine times"

pbmmake -b 1 1 > ${target_pnm}
pnmpad ${ptop} ${infile} | cmptarget
pnmpad ${ptop} -black ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote format ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE}   -promote none ${infile} | cmptarget
pnmpad ${ptop} -extend-edge ${infile} | cmptarget
pnmpad ${ptop} -detect-background ${infile} | cmptarget

echo "Should print match five times"

pbmmake -w 1 1 > ${target_pnm}
pnmpad ${ptop} -white ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote format ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote none ${infile} | cmptarget

echo
echo "Test 3. PGM maxval 127 infile"

infile=${test127_pgm}

echo "Should print match five times"

pgmmake -maxval 127 0.0 1 1 > ${target_pnm}
pnmpad ${ptop} ${infile} | cmptarget
pnmpad ${ptop} -black ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote format ${infile} | cmptarget

echo "Should print match four times"

pgmmake -maxval 127 1.0 1 1 > ${target_pnm}
pnmpad ${ptop} -white ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote format ${infile} | cmptarget

echo "Should print match twice"

pamcut -t 0 -h 1 -w 1 ${infile} > ${target_pnm}
pnmpad ${ptop} -extend-edge ${infile} | cmptarget
pnmpad ${ptop} -detect-background ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 127 ${LIGHTGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote format ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 127 ${DARKGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote format ${infile} | cmptarget

echo "Should print match once"

ppmmake -maxval 127 ${PURPLE} 1 1 | ppmtopgm > ${target_pnm} 
pnmpad ${ptop} -color ${PURPLE}   -promote none ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 255 ${LIGHTGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY}              ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote all ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 255 ${DARKGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY}              ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote all ${infile} | cmptarget

echo "Should print match once"

ppmmake -maxval 127 ${PURPLE} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${PURPLE} -promote format ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 255 ${PURPLE} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${PURPLE} ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote all    ${infile} | cmptarget


echo
echo "Test 4. PGM maxval 255 infile"

infile=${test255_pgm}

echo "Should print match five times"

pgmmake -maxval 255 0.0 1 1 > ${target_pnm}
pnmpad ${ptop} ${infile} | cmptarget
pnmpad ${ptop} -black ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote format ${infile} | cmptarget

echo "Should print match four times"

pgmmake -maxval 255 1.0 1 1 > ${target_pnm}
pnmpad ${ptop} -white ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote format ${infile} | cmptarget

echo "Should print match twice"

pamcut -t 0 -h 1 -w 1 ${infile} > ${target_pnm}
pnmpad ${ptop} -extend-edge ${infile} | cmptarget
pnmpad ${ptop} -detect-background ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 255 ${LIGHTGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote format ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 255 ${DARKGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote format ${infile} | cmptarget

echo "Should print match once"

ppmmake -maxval 255  ${PURPLE} 1 1 | ppmtopgm > ${target_pnm}
pnmpad ${ptop} -color ${PURPLE}   -promote none ${infile} | cmptarget

echo "Should print match four times"

pgmmake -maxval 255 ${LIGHTGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY}                 ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote format ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote all    ${infile} | cmptarget

echo "Should print match four times"

pgmmake -maxval 255 ${DARKGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY}                 ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote format ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote all    ${infile} | cmptarget

echo "Should print match three times"

ppmmake -maxval 255 ${PURPLE} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${PURPLE} ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote format ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote all    ${infile} | cmptarget

echo
echo "Test 5. PGM maxval 511 infile"

infile=${test511_pgm}

echo "Should print match five times"

pgmmake -maxval 511 0.0 1 1 > ${target_pnm}
pnmpad ${ptop} ${infile} | cmptarget
pnmpad ${ptop} -black ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote format ${infile} | cmptarget

echo "Should print match four times"

pgmmake -maxval 511 1.0 1 1 > ${target_pnm}
pnmpad ${ptop} -white ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote format ${infile} | cmptarget

echo "Should print match twice"

pamcut -t 0 -h 1 -w 1 ${infile} > ${target_pnm}
pnmpad ${ptop} -extend-edge ${infile} | cmptarget
pnmpad ${ptop} -detect-background ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 511 ${LIGHTGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote format ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 511 ${DARKGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote format ${infile} | cmptarget

echo "Should print match once"

ppmmake -maxval 511 ${PURPLE} 1 1 | ppmtopgm > ${target_pnm}
pnmpad ${ptop} -color ${PURPLE} -promote none ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 511 ${LIGHTGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY}              ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote all ${infile} | cmptarget

echo "Should print match twice"

pgmmake -maxval 511 ${DARKGRAYv} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY}              ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote all ${infile} | cmptarget

echo "Should print match three times"

ppmmake -maxval 511 ${PURPLE} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${PURPLE} ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote format ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote all    ${infile} | cmptarget


echo
echo "Test 6. PPM maxval 127 infile"

infile=${test127_ppm}

echo "Should print match five times"

ppmmake -maxval 127 ${BLACK} 1 1 > ${target_pnm}
pnmpad ${ptop} ${infile} | cmptarget
pnmpad ${ptop} -black ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote format ${infile} | cmptarget

echo "Should print match four times"

ppmmake -maxval 127 ${WHITE} 1 1 > ${target_pnm}
pnmpad ${ptop} -white ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote format ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 127 ${PURPLE} 1 1 > ${target_pnm}
ppmmake -maxval 127 ${PURPLE} 1 2 | pnmpad ${ptop} -extend-edge | cmptarget
ppmmake -maxval 127 ${PURPLE} 1 2 | pnmpad ${ptop} -detect-background | cmptarget

echo "Should print match twice"

ppmmake -maxval 127 ${LIGHTGRAY} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote format ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 127 ${DARKGRAY} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote format ${infile} | cmptarget

echo "Should print match once"

ppmmake -maxval 127 ${PURPLE} 1 1 > ${target_pnm} 
pnmpad ${ptop} -color ${PURPLE} -promote none ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 255 ${LIGHTGRAY} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY}                  ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY}     -promote all ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 255 ${DARKGRAY} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY}              ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote all ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 255 ${PURPLE} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${PURPLE} ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote all ${infile} | cmptarget

echo
echo "Test 7. PPM maxval 511 infile"

infile=${test511_ppm}

echo "Should print match five times"

ppmmake -maxval 511 ${BLACK} 1 1 > ${target_pnm}
pnmpad ${ptop} ${infile} | cmptarget
pnmpad ${ptop} -black ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${BLACK} -promote format ${infile} | cmptarget

echo "Should print match four times"

ppmmake -maxval 511 ${WHITE} 1 1 > ${target_pnm}
pnmpad ${ptop} -white ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote none   ${infile} | cmptarget
pnmpad ${ptop} -color ${WHITE} -promote format ${infile} | cmptarget

echo "Should print match six times"

ppmmake -maxval 511 ${PURPLE} 1 1 > ${target_pnm}
ppmmake -maxval 511 ${PURPLE} 1 5 | pnmpad ${ptop} -extend-edge | cmptarget
ppmmake -maxval 511 ${PURPLE} 1 5 | pnmpad ${ptop} -detect-background | cmptarget
pnmpad ${ptop} -color ${PURPLE} ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote format ${infile} | cmptarget
pnmpad ${ptop} -color ${PURPLE} -promote all    ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 511 ${LIGHTGRAY} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY} -promote format ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 511 ${DARKGRAY} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY} -promote none ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote format ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 511 ${LIGHTGRAY} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${LIGHTGRAY}                  ${infile} | cmptarget
pnmpad ${ptop} -color ${LIGHTGRAY}     -promote all ${infile} | cmptarget

echo "Should print match twice"

ppmmake -maxval 511 ${DARKGRAY} 1 1 > ${target_pnm}
pnmpad ${ptop} -color ${DARKGRAY}              ${infile} | cmptarget
pnmpad ${ptop} -color ${DARKGRAY} -promote all ${infile} | cmptarget