about summary refs log tree commit diff
path: root/test/macp-roundtrip.test
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-04-17 15:20:06 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-04-17 15:20:06 +0000
commit2b398bac6127e1512be09eca1e1d67559c32c7c6 (patch)
tree49df2874254b0fe7fb1b76c34b0d724e6e7277e6 /test/macp-roundtrip.test
parentdaf35c1b334b76ba0d66d872cf9fb50864bacba9 (diff)
downloadnetpbm-mirror-2b398bac6127e1512be09eca1e1d67559c32c7c6.tar.gz
netpbm-mirror-2b398bac6127e1512be09eca1e1d67559c32c7c6.tar.xz
netpbm-mirror-2b398bac6127e1512be09eca1e1d67559c32c7c6.zip
Add round-trip tests for 'xv', 'ppmtoarbtxt'; better cover compression scheme in macptoppm test
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2464 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'test/macp-roundtrip.test')
-rwxr-xr-xtest/macp-roundtrip.test31
1 files changed, 26 insertions, 5 deletions
diff --git a/test/macp-roundtrip.test b/test/macp-roundtrip.test
index 2d7f6ce3..4774a2c2 100755
--- a/test/macp-roundtrip.test
+++ b/test/macp-roundtrip.test
@@ -1,10 +1,31 @@
 #! /bin/bash
 # This script tests: pbmtomacp macptopbm
-# Also requires: pnmcrop pbmmake
+# Also requires: pnmcrop pbmpage pbmupc pnmpad
 
+tmpdir=${tmpdir:-/tmp}
+temp1_pbm=${tmpdir}/temp1.ppm
+temp2_pbm=${tmpdir}/temp2.ppm
 
-#Test 1. Should produce 2425386270 41
-pbmtomacp testgrid.pbm | macptopbm | pnmcrop | cksum
 
-#Test 2. Should produce 1005016577 51851
-pbmmake -g 576 720 | pbmtomacp | macptopbm | cksum
+# Test 1. Should produce 2425386270 41 twice
+# Because Macpaint files are fixed size (576 x 720 pixels)
+# pbmtomacp automatically adds padding when input is smaller.
+
+pbmtomacp testgrid.pbm | macptopbm | tee ${temp1_pbm} | \
+    pnmcrop | cksum
+
+pbmtomacp ${temp1_pbm} | macptopbm | pnmcrop | cksum
+
+
+#Test 2. Should produce 2329957971 51851
+pbmpage 1 | pbmtomacp | macptopbm | cksum
+
+
+#Test 3. Should produce 2907103393 5086 twice
+pbmupc 0 12345 67890 | pnmpad -black -t 44 -b 20 -l 100 -r 251 | pbmtomacp | macptopbm | \
+    tee ${temp2_pbm} | \
+    pnmcrop | pnmcrop | cksum
+
+pbmtomacp ${temp2_pbm} | macptopbm | pnmcrop | pnmcrop | cksum
+
+rm ${temp1_pbm} ${temp2_pbm}