about summary refs log tree commit diff
path: root/test/pamcrater.test
blob: 1d18220871808c5f8a1976eb95a7ce0db4945729 (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
#! /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}