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

echo "Test 1"

for type in -lr -tb -rectangle -ellipse -diagonal
do
pgmramp -maxval=6 $type 4 4 -plain
done

echo "Test 2"

for type in -lr -tb -rectangle -ellipse
do pgmramp $type 256 256 | cksum
done

echo "Test 3"

pgmramp -diagonal -maxval=510 256 256 | cksum

echo "Test 4"

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

for combination in "-lr -tb" "-lr -rectangle" "-rectangle -ellipse"
do pgmramp $combination 10 10 || echo "Expected error: $combination"
done

pgmramp -lr     1 || echo "Expected error: insufficient parameters"
pgmramp -tb 1 1 1 || echo "Expected error: excessive parameters"