* apt-pkg/contrib/fileutl.cc:
[ntk/apt.git] / test / libapt / run-tests.sh
1 #!/bin/sh
2 set -e
3
4 echo "Compiling the tests ..."
5 make
6 echo "Running all testcases ..."
7 LDPATH=$(pwd)/../../build/bin
8 EXT="_libapt_test"
9 for testapp in $(ls ${LDPATH}/*$EXT)
10 do
11 name=$(basename ${testapp})
12 tmppath=""
13
14 if [ $name = "GetListOfFilesInDir${EXT}" ]; then
15 # TODO: very-low: move env creation to the actual test-app
16 echo "Prepare Testarea for \033[1;35m$name\033[0m ..."
17 tmppath=$(mktemp -d)
18 touch "${tmppath}/anormalfile" \
19 "${tmppath}/01yet-anothernormalfile" \
20 "${tmppath}/anormalapt.conf" \
21 "${tmppath}/01yet-anotherapt.conf" \
22 "${tmppath}/anormalapt.list" \
23 "${tmppath}/01yet-anotherapt.list" \
24 "${tmppath}/wrongextension.wron" \
25 "${tmppath}/wrong-extension.wron" \
26 "${tmppath}/strangefile." \
27 "${tmppath}/s.t.r.a.n.g.e.f.i.l.e" \
28 "${tmppath}/.hiddenfile" \
29 "${tmppath}/.hiddenfile.conf" \
30 "${tmppath}/.hiddenfile.list" \
31 "${tmppath}/multi..dot" \
32 "${tmppath}/multi.dot.conf" \
33 "${tmppath}/multi.dot.list" \
34 "${tmppath}/disabledfile.disabled" \
35 "${tmppath}/disabledfile.conf.disabled" \
36 "${tmppath}/disabledfile.list.disabled" \
37 "${tmppath}/invälid.conf" \
38 "${tmppath}/invalíd" \
39 "${tmppath}/01invalíd"
40 ln -s "${tmppath}/anormalfile" "${tmppath}/linkedfile.list"
41 ln -s "${tmppath}/non-existing-file" "${tmppath}/brokenlink.list"
42 fi
43
44 echo -n "Testing with \033[1;35m${name}\033[0m ... "
45 LD_LIBRARY_PATH=${LDPATH} ${testapp} ${tmppath} && echo "\033[1;32mOKAY\033[0m" || echo "\033[1;31mFAILED\033[0m"
46
47 if [ -n "$tmppath" -a -d "$tmppath" ]; then
48 echo "Cleanup Testarea after \033[1;35m$name\033[0m ..."
49 rm -rf "$tmppath"
50 fi
51
52 done