summaryrefslogtreecommitdiff
path: root/Build/source/libs/zziplib/zziplib-0.13.58/test/Makefile.am
blob: 1582da4a2ed2f72e9b9cb0dff8ed05ce2cc4171e (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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
AUTOMAKE_OPTIONS = 1.4 foreign
AUTOTOOL_VERSION=autoconf-2.52 automake-1.5 libtool-1.4.2
DEFAULT_INCLUDES = # nothing - no default of -I. -I$(srcdir)
DEFS = @DEFS@ -I$(top_builddir) -I$(top_srcdir) # also for automake 1.4

EXTRA_DIST = test.zip test1.zip
DISTCLEANFILES = test*.dat test2.zip test3.zip

zzcat     = ../bins/zzcat$(EXEEXT)
zzdir     = ../bins/zzdir$(EXEEXT)
zziptest  = ../bins/zziptest$(EXEEXT)
zzxorcat  = ../bins/zzxorcat$(EXEEXT)
zzxordir  = ../bins/zzxordir$(EXEEXT)
zzxorcopy = ../bins/zzxorcopy$(EXEEXT)

$(zzcat) $(zzdir) $(zziptest) $(zzxorcat) $(zzxordir) $(xorcopy) : \
        @top_srcdir@/bins/*.c @top_srcdir@/zzip/*.c
	(cd ../bins && $(MAKE))

# -------------------------------------------------------------------
NULL=/dev/null
README = $(top_srcdir)/README
testdatadir = $(top_srcdir)/testdata.d

testzip testzips : test.zip test1.zip test2.zip test3.zip 

test.zip tmp/../test.zip : $(README)
	- test -d tmp || mkdir tmp
	- $(MAKE) test0.zip && mv test0.zip $@
	test -s $@ || cp $(srcdir)/test.zip $@
test0.zip : $(README)
	test -f README || ln -s $(README) .
	- $(MKZIP) test_.zip README
	@ if test -s test_.zip ;then echo mv test_.zip $@ ; mv test_.zip $@ ;fi
	@      test -d $(testdatadir) || mkdir $(testdatadir); if test -s $@ \
	; then echo cp $@ $(testdatadir)/ ; cp $@ $(testdatadir)/ \
	; else echo cp $(testdatadir)/$@ .; cp $(testdatadir)/$@ . \
	; fi ; echo test -s $@ ; test -s $@

test1.zip :
	@ echo $(MKZIP) $@ ... "(10 files)" \
	; mkdir test.tmp \
	; for i in 1 2 3 4 5 6 8 9 \
	; do echo "file-$i" >test.tmp/file.$$i ; done \
	; echo " a plain text file here" >test.tmp/README \
	; (cd test.tmp && $(MKZIP) ../$@ file.* >$(NULL)) \
	; rm -rf test.tmp
	@      test -d $(testdatadir) || mkdir $(testdatadir); if test -s $@ \
	; then echo cp $@ $(testdatadir)/ ; cp $@ $(testdatadir)/ \
	; else echo cp $(testdatadir)/$@ .; cp $(testdatadir)/$@ . \
	; fi ; echo test -s $@ ; test -s $@

test2.zip : # will not be shipped in source tarball
	@ echo $(MKZIP) $@ ... "(100 files)" \
	; mkdir test.tmp \
	; for i in 1 2 3 4 5 6 8 9 ; do for j in 1 2 3 4 5 6 7 8 9 \
	; do echo "file-$i" >test.tmp/file.$$j$$i ; done done \
	; (cd test.tmp && $(MKZIP) ../$@ file.* >$(NULL)) \
	; rm -rf test.tmp
	@      test -d $(testdatadir) || mkdir $(testdatadir); if test -s $@ \
	; then echo cp $@ $(testdatadir)/ ; cp $@ $(testdatadir)/ \
	; else echo cp $(testdatadir)/$@ .; cp $(testdatadir)/$@ . \
	; fi ; echo test -s $@ ; test -s $@

test3.zip : # will not be shipped in source tarball
	@ echo $(MKZIP) $@ ... "(1000 files)" \
	; mkdir test.tmp ; for h in 1 2 3 4 5 6 7 8 9 ; do : \
	; for i in 1 2 3 4 5 6 8 9 ; do for j in 1 2 3 4 5 6 7 8 9 \
	; do echo "file-$i" >test.tmp/file.$$h$$j$$i ; done done done \
	; (cd test.tmp && $(MKZIP) ../$@ file.* >$(NULL)) \
	; rm -rf test.tmp
	@      test -d $(testdatadir) || mkdir $(testdatadir); if test -s $@ \
	; then echo cp $@ $(testdatadir)/ ; cp $@ $(testdatadir)/ \
	; else echo cp $(testdatadir)/$@ .; cp $(testdatadir)/$@ . \
	; fi ; echo test -s $@ ; test -s $@

test4.zip : # will not be shipped in source tarball
	@ echo $(MKZIP) $@ ... "(1000 files)" \
	; mkdir test.tmp ; for h in 1 2 3 4 5 6 7 8 9 ; do : \
	; for i in 1 2 3 4 5 6 8 9 ; do for j in 1 2 3 4 5 6 7 8 9 \
	; do echo "file-$i" >test.tmp/file.$$h$$j$$i ; done done done \
	; (cd test.tmp && $(MKZIP) -n : ../$@ file.* >$(NULL)) \
	; rm -rf test.tmp
	@      test -d $(testdatadir) || mkdir $(testdatadir); if test -s $@ \
	; then echo cp $@ $(testdatadir)/ ; cp $@ $(testdatadir)/ \
	; else echo cp $(testdatadir)/$@ .; cp $(testdatadir)/$@ . \
	; fi ; echo test -s $@ ; test -s $@

test.dat : test.zip
	$(zzxorcopy) $? $@
test1.dat : test1.zip
	$(zzxorcopy) $? $@
test2.dat : test2.zip
	$(zzxorcopy) $? $@
test3.dat : test3.zip
	$(zzxorcopy) $? $@

# -------------------------------------------------------------------

stdtests = @ZIPTESTS@ check-test0 check-test1 check-zzdir check-zzcat
xortests = @ZIPTESTS@ check-zzxor check-zzxordir check-zzxorcat
sfxtests = @ZIPTESTS@ check-sfx

check-local: check-readme $(stdtests) $(xortests) $(sfxtests)

check-readme : $(zzcat)  test.zip
	@ test -f test.zip || $(MAKE) tmp/../test.zip 
	test -s test.zip
	@ echo :$@: checking $(zzcat) test/README 
	@ $(zzcat) test/README >test.out
	@ if diff test.out $(README) >$(NULL) \
	; then rm test.out ; echo check OK ; true \
	; else rm test.out ; echo check FAIL ; false ; fi

check-zzxor : $(zzxorcat) test.dat
	@ echo :$@: checking $(zzxorcat) test.dat/README 
	@ $(zzxorcat) test.dat/README >test.out
	@ if diff test.out $(README) >$(NULL) \
	; then rm test.out ; echo check OK ; true \
	; else rm test.out ; echo check FAIL ; false ; fi

test: test0 test1 test2 test3
test0: $(zziptest)
	$(zziptest) test.zip
test1: $(zziptest)
	$(zziptest) test1.zip
test2: $(zzcat)
	$(zzcat) test/README
test3: $(zzdir)
	$(zzdir) test1.zip
test4: $(zzdir) test4.zip
	$(zzcat) test4/file.113

check-test0 : $(zziptest)
	@ echo :$@: quick selftest
	$(zziptest) test.zip >test.out
	rm test.out
check-test1 : $(zziptest)
	@ test -f test1.zip || ln -s $(srcdir)/test1.zip test1.zip
	@ echo :$@: longer selftest "(about ten seconds)"
	$(zziptest) test1.zip >test.out
	rm test.out

check-zzdir : test1.zip test2.zip test3.zip $(zzdir) 
	@ echo :$@: zip directory access
	   ./$(zzdir) test1 > test.out
	@ X="$(zzdir) test1 "\
	; if grep file.1 test.out >$(NULL) ; then : \
	; if grep file.9 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	   ./$(zzdir) test2 > test.out
	@ X="$(zzdir) test2 "\
	; if grep file.11 test.out >$(NULL) ; then : \
	; if grep file.99 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	   ./$(zzdir) test3 > test.out
	@ X="$(zzdir) test3 "\
	; if grep file.111 test.out >$(NULL) ; then : \
	; if grep file.999 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	@ X="$(zzdir) test000" ; echo ./$$X "(negative test)" \
	; if ./$(zzdir) test000 >test.out ; then : \
	; echo ..$$X.. FAIL ; false ; else echo ..$$X.. OK ; true ; fi 
	rm test.out

check-zzcat : test1.zip test2.zip test3.zip $(zzcat)
	@ echo ___ $@ ___
	   ./$(zzcat) test1/file.1 test1/file.9 > test.out
	@ X="$(zzcat) test1/file.1 test1/file.9 "\
	; if grep file-1 test.out >$(NULL) ; then : \
	; if grep file-9 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	   ./$(zzcat) test2/file.11 test2/file.99 > test.out
	@ X="$(zzcat) test2/file.10 test2/file.99 "\
	; if grep file-10 test.out >$(NULL) ; then : \
	; if grep file-99 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	   ./$(zzcat) test3/file.111 test3/file.999 > test.out
	@ X="$(zzcat) test3/file.111 test3/file.999 "\
	; if grep file-100 test.out >$(NULL) ; then : \
	; if grep file-999 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	@ X="$(zzcat) test1/file.999" ; echo ./$$X "(negative test)" \
	; if ./$(zzdir) test1/file.999 >test.out ; then : \
	; echo ..$$X.. FAIL ; false ; else echo ..$$X.. OK ; true ; fi 
	rm test.out

check-zzxordir : test1.dat test2.dat $(zzxordir) 
	@ echo ___ $@ ___
	   ./$(zzxordir) test1 > test.out
	@ X="$(zzxordir) test1 "\
	; if grep file.1 test.out >$(NULL) ; then : \
	; if grep file.9 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	   ./$(zzxordir) test2.dat > test.out
	@ X="$(zzxordir) test2.dat "\
	; if grep file.11 test.out >$(NULL) ; then : \
	; if grep file.99 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	rm test.out

check-zzxorcat : test1.dat test2.dat $(zzxorcat)
	@ echo ___ $@ ___
	   ./$(zzxorcat) test1/file.1 test1/file.9 > test.out
	@ X="$(zzxorcat) test1/file.1 test1/file.9 "\
	; if grep file-1 test.out >$(NULL) ; then : \
	; if grep file-9 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	   ./$(zzxorcat) test2.dat/file.11 test2/file.99 > test.out
	@ X="$(zzxorcat) test2.dat/file.10 test2/file.99 "\
	; if grep file-10 test.out >$(NULL) ; then : \
	; if grep file-99 test.out >$(NULL) ; then : \
	; echo ..$$X.. OK ; true ; else echo ..$$X.. FAIL ; false ; fi fi
	rm test.out

# -------------------------------------------------------------------
ECHON = echo -n
BRUTE = 0    # default is less than a thousand tests
brute :      # which is still a brute force selftest
	@ echo $(MKZIP) $@: \
	; for u in 1 2 3 4 5 6 8 9 ; do for v in 1 2 3 4 5 6 7 8 9 ; do : \
	; for w in 1 2 3 4 5 6 8 9 ; do for x in $(BRUTE) ; do : \
	; $(ECHON) $$u$$v$$w$$x: \
	; rm -rf test.tmp ; mkdir test.tmp \
	; for i in 1 2 3 4 5 6 8 9 ; do for j in 1 2 3 4 5 6 7 8 9 ; do : \
	; for m in 1 2 3 4 5 6 8 9 ; do for n in $(BRUTE) ; do : \
	; echo "file-$$i$$j$$m$$n" >test.tmp/file$$i$$j$$m$$n.txt \
	;        test "$$i$$j$$m$$n" = "$$u$$v$$w$$x" && break \
	; done ; test "$$i$$j$$m$$n" = "$$u$$v$$w$$x" && break \
	; done ; test "$$i$$j$$m$$n" = "$$u$$v$$w$$x" && break \
	; done ; test "$$i$$j$$m$$n" = "$$u$$v$$w$$x" && break \
	; done ; test -f test.tmp/file$$i$$j$$m$$n.txt || exit 2 \
	; (cd test.tmp && $(MKZIP) ../test$$u$$v$$w$$x.zip file*.* >$(NULL)) \
	; rm -rf test.tmp \
	; for i in 1 2 3 4 5 6 8 9 ; do for j in 1 2 3 4 5 6 7 8 9 ; do : \
	; for m in 1 2 3 4 5 6 8 9 ; do for n in $(BRUTE) ; do : \
	; ./$(zzcat) test$$u$$v$$w$$x/file$$i$$j$$m$$n.txt >test.out \
	; if grep file-$$i$$j$$m$$n test.out >$(NULL) ; then rm test.out \
	; else echo ERROR file-$$i$$j$$m$$n diff in test$$u$$v$$w$$x \
	; exit 1 ; fi \
	; ./$(zzdir) test$$u$$v$$w$$x >test.out \
	; if grep file$$i$$j$$m$$n.txt test.out >$(NULL) ; then rm test.out \
	; else echo ERROR file$$i$$j$$m$$n.txt not in test$$u$$v$$w$$x \
	; exit 1 ; fi \
	;        test "$$i$$j$$m$$n" = "$$u$$v$$w$$x" && break \
	; done ; test "$$i$$j$$m$$n" = "$$u$$v$$w$$x" && break \
	; done ; test "$$i$$j$$m$$n" = "$$u$$v$$w$$x" && break \
	; done ; test "$$i$$j$$m$$n" = "$$u$$v$$w$$x" && break \
	; done ; rm test$$u$$v$$w$$x.zip \
	; done ; done ; done ; done ; true

# -------------------------------------------------------------------

noinst_PROGRAMS = zzipself zzipsetstub

zzipself_LDFLAGS = @ZZIPLIB_LDFLAGS@
zzipself_LDADD = ../zzip/libzzip.la @RESOLVES@ -lz

../zzip/libzzip.la : @top_srcdir@/zzip/*.c
	(cd ../zzip && $(MAKE) `basename $@`)

zzshowme$(EXEEXT) : zzipself$(EXEEXT) zzipsetstub$(EXEEXT)
	$(MKZIP) -0 -j $@ .libs/zzipself$(EXEEXT)
	$(MKZIP) -9 -j $@ $(README)
	- test -s $@ || cp test2.zip $@
	test ! -f $@.zip || mv $@.zip $@
	./zzipsetstub $@ .libs/zzipself$(EXEEXT)
	- chmod +x $@

check-sfx : zzshowme$(EXEEXT)
	echo :$@: "./zzshowme readme >readme.out 2>readme.err" 
	export LD_LIBRARY_PATH="../zzip/.libs:$$LD_LIBRARY_PATH" \
	; ./zzshowme readme >readme.out 2>readme.err ; true
	@ echo 'diff readme.out $(README) || grep "libzzip-" readme.err' \
	; if test -s readme.out ; then diff readme.out $(README) \
        ; else grep "libzzip-" readme.err || echo "readme.out is empty!" ; fi
	rm readme.out readme.err