about summary refs log tree commit diff
path: root/test/ppmforge-parameters.test
blob: 28a929166a2b3460d417b0dbf0bd9fdaaed4d869 (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
#! /bin/bash
# This script tests: ppmforge
# Also requires: pamfile

echo "Test 1"

# Should print 256 256
ppmforge -night | pamfile -size

# Width is adjusted if not even
# becomes 100 in this case
ppmforge -night -width=99 -height=90 | pamfile -size

# Width is adjusted if smaller than height
# brought up to 100 in this case
ppmforge -night -width=80 -height=90 | pamfile -size

echo "Test Invalid"

tmpdir=${tmpdir:-/tmp}
test_out=${tmpdir}/test_out

echo 1>&2
echo "Invalid command-line arguments." 1>&2
echo "Error messages should appear below the line." 1>&2
echo "-----------------------------------------------------------" 1>&2

ppmforge -night  -dimension=0  > ${test_out} || \
   echo -n "Expected failure 1"; test -s ${test_out}; echo " "$?
ppmforge -clouds -mesh=1.99    > ${test_out} || \
   echo -n "Expected failure 2"; test -s ${test_out}; echo " "$?
ppmforge -clouds -power=0      > ${test_out} || \
   echo -n "Expected failure 3"; test -s ${test_out}; echo " "$?
ppmforge         -ice=0        > ${test_out} || \
   echo -n "Expected failure 4"; test -s ${test_out}; echo " "$?
ppmforge         -glaciers=0   > ${test_out} || \
   echo -n "Expected failure 5"; test -s ${test_out}; echo " "$?

rm ${test_out}