summaryrefslogtreecommitdiff
path: root/contrib/gdiffmk/tests/runtests.sh
blob: f8291b0a45ea8e2dc6245944408e6840039b95bb (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#! /bin/sh
#
#	A very simple function test for gdiffmk.sh.
#
# Copyright (C) 2004-2020 Free Software Foundation, Inc.
# Written by Mike Bianchi <MBianchi@Foveal.com <mailto:MBianchi@Foveal.com>>

# This file is part of the gdiffmk utility, which is part of groff.

# groff is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# groff is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
# License for more details.

# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
# This file is part of GNU gdiffmk.

# abs_top_srcdir and abs_top_builddir are set by AM_TESTS_ENVIRONMENT
# (defined in Makefile.am) when running make check

srcdir=${abs_top_srcdir}/contrib/gdiffmk/tests

command=${abs_top_builddir}/gdiffmk

#	Test the number of arguments and the first argument.
case "$#-$1" in
1-clean )
	rm -fv result* tmp_file*
	exit 0
	;;
1-run )
	;;
* )
	echo >&2 "$0 [ clean | run ]
Run a few simple tests on '${command}'."'

clean	Remove the result? and tmp_file? files.
run	Run the tests.
'
	exit 255
	;;
esac

exit_code=0	#  Success
failure_count=0
TestResult () {
	if cmp -s $1 $2
	then
		echo $2 PASSED
	else
		echo ''
		echo $2 TEST FAILED
		diff $1 $2
		echo ''
		exit_code=1	#  Failure
		failure_count=`expr ${failure_count} + 1`
	fi
}

tmpfile=/tmp/$$
trap 'rm -f ${tmpfile}' 0 1 2 3 15

#	Run tests.

#	3 file arguments
ResultFile=result.1
${command}  ${srcdir}/file1  ${srcdir}/file2 ${ResultFile} 2>${tmpfile}
cat ${tmpfile} >>${ResultFile}
TestResult ${srcdir}/baseline ${ResultFile}


#	OUTPUT to stdout by default
ResultFile=result.2
${command}  ${srcdir}/file1  ${srcdir}/file2  >${ResultFile} 2>&1
TestResult ${srcdir}/baseline ${ResultFile}


#	OUTPUT to stdout via  -  argument
ResultFile=result.3
${command}  ${srcdir}/file1  ${srcdir}/file2 - >${ResultFile} 2>&1
TestResult ${srcdir}/baseline ${ResultFile}


#	FILE1 from standard input via  -  argument
ResultFile=result.4
${command}  - ${srcdir}/file2 <${srcdir}/file1  >${ResultFile} 2>&1
TestResult ${srcdir}/baseline ${ResultFile}


#	FILE2 from standard input via  -  argument
ResultFile=result.5
${command}  ${srcdir}/file1 - <${srcdir}/file2  >${ResultFile} 2>&1
TestResult ${srcdir}/baseline ${ResultFile}


#	Different values for addmark, changemark, deletemark
ResultFile=result.6
${command}  -aA -cC -dD  ${srcdir}/file1 ${srcdir}/file2  >${ResultFile} 2>&1
TestResult ${srcdir}/baseline.6 ${ResultFile}


#	Different values for addmark, changemark, deletemark
#	Alternate format of -a -c and -d flag arguments
ResultFile=result.6a
${command}  -a A -c C -d D  ${srcdir}/file1 ${srcdir}/file2  >${ResultFile} 2>&1
TestResult ${srcdir}/baseline.6a ${ResultFile}


#	Test for accidental file overwrite.
ResultFile=result.7
cp ${srcdir}/file2 tmp_file.7
${command}  -aA -dD -cC  ${srcdir}/file1 tmp_file.7  tmp_file.7	\
							>${ResultFile} 2>&1
TestResult ${srcdir}/baseline.7 ${ResultFile}


#	Test -D option
ResultFile=result.8
${command}  -D  ${srcdir}/file1 ${srcdir}/file2 >${ResultFile} 2>&1
TestResult ${srcdir}/baseline.8 ${ResultFile}


#	Test -D  and  -M  options
ResultFile=result.9
${command}  -D  -M '<<<<' '>>>>'				\
			${srcdir}/file1 ${srcdir}/file2 >${ResultFile} 2>&1
TestResult ${srcdir}/baseline.9 ${ResultFile}


#	Test -D  and  -M  options
#	Alternate format of -M argument.
ResultFile=result.9a
${command}  -D  -M'<<<<' '>>>>'				\
			${srcdir}/file1 ${srcdir}/file2 >${ResultFile} 2>&1
TestResult ${srcdir}/baseline.9a ${ResultFile}


#	Test -D  and  -B  options
ResultFile=result.10
${command}  -D  -B  ${srcdir}/file1 ${srcdir}/file2 >${ResultFile} 2>&1
TestResult ${srcdir}/baseline.10 ${ResultFile}


echo failure_count ${failure_count}

exit ${exit_code}

#	EOF