about summary refs log tree commit diff
path: root/test/pamcrater.test
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-09-05 15:45:40 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-09-05 15:45:40 +0000
commit61e6b60e6a3df3fdb7204178a17d0d304fc1624c (patch)
treecad29e520d49904b85fa2a8e3832cf3ab300d348 /test/pamcrater.test
parente5f1cbed1e7a98a20185c34b3a5a5ab523acd892 (diff)
downloadnetpbm-mirror-61e6b60e6a3df3fdb7204178a17d0d304fc1624c.tar.gz
netpbm-mirror-61e6b60e6a3df3fdb7204178a17d0d304fc1624c.tar.xz
netpbm-mirror-61e6b60e6a3df3fdb7204178a17d0d304fc1624c.zip
Replace pgmcrater tests with pamcrater
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2270 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'test/pamcrater.test')
-rwxr-xr-xtest/pamcrater.test53
1 files changed, 53 insertions, 0 deletions
diff --git a/test/pamcrater.test b/test/pamcrater.test
new file mode 100755
index 00000000..1d182208
--- /dev/null
+++ b/test/pamcrater.test
@@ -0,0 +1,53 @@
+#! /bin/bash
+# This script tests: pamcrater pamshadedrelief
+# Also requires: pamslice pamvalidate
+
+  alias pamcrater="${PBM_TESTPREFIX}pamcrater"
+  alias pamslice="${PBM_TESTPREFIX}pamshadedrelief"
+  alias pamslice="${PBM_BINPREFIX}pamslice"
+  alias pamvalidate="${PBM_TESTPREFIX}pamvalidate"
+  shopt -s expand_aliases
+
+tmpdir=${tmpdir:-/tmp}
+
+test_pam=${tmpdir}/test.pam
+testshaded_pam=${tmpdir}/testshaded_pam
+test10_pam=${tmpdir}/test10.pam
+test50_pam=${tmpdir}/test50.pam
+test100_pam=${tmpdir}/test100.pam
+test150_pam=${tmpdir}/test150.pam
+
+# Test 1.  Should print 4 three times
+
+pamcrater --test --radius=10 > $test10_pam
+pamcrater --test --radius=50 > $test50_pam
+pamcrater --test --radius=100 > $test100_pam
+pamcrater --test --radius=150 > $test150_pam
+
+pamstack ${test10_pam} ${test50_pam} ${test100_pam} ${test150_pam} |
+  pamvalidate > ${test_pam} 
+
+for i in 1 10 70
+  do
+    ( pamslice -row=$((128 + $i))  ${test_pam} | cksum &&
+      pamslice -row=$((128 - $i))  ${test_pam} | cksum &&
+      pamslice -col=$((128 + $i))  ${test_pam} | cksum &&
+      pamslice -col=$((128 - $i))  ${test_pam} | cksum
+    ) | uniq -c | awk '{print $1}'
+  done
+
+rm ${test_pam} ${test10_pam} ${test50_pam}
+
+# Test 2.  Should print 2 three times
+
+pamshadedrelief ${test100_pam} > ${testshaded_pam}
+
+( pamslice -row=$((128 + 12))  ${testshaded_pam} | cksum &&
+  pamslice -row=$((128 - 12))  ${testshaded_pam} | cksum &&
+  pamslice -row=$((128 + 31))  ${testshaded_pam} | cksum &&
+  pamslice -row=$((128 - 31))  ${testshaded_pam} | cksum &&
+  pamslice -row=$((128 + 99))  ${testshaded_pam} | cksum &&
+  pamslice -row=$((128 - 99))  ${testshaded_pam} | cksum
+) | uniq -c | awk '{print $1}'
+
+rm ${testshaded_pam} ${test100_pam}