run-tests.sh 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #!/bin/sh
  2. set -e
  3. echo "Compiling the tests ..."
  4. test -d '../../build/obj/test/libapt/' || mkdir -p '../../build/obj/test/libapt/'
  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. if [ $name = "GetListOfFilesInDir${EXT}" ]; then
  14. # TODO: very-low: move env creation to the actual test-app
  15. echo "Prepare Testarea for \033[1;35m$name\033[0m ..."
  16. tmppath=$(mktemp -d)
  17. touch "${tmppath}/anormalfile" \
  18. "${tmppath}/01yet-anothernormalfile" \
  19. "${tmppath}/anormalapt.conf" \
  20. "${tmppath}/01yet-anotherapt.conf" \
  21. "${tmppath}/anormalapt.list" \
  22. "${tmppath}/01yet-anotherapt.list" \
  23. "${tmppath}/wrongextension.wron" \
  24. "${tmppath}/wrong-extension.wron" \
  25. "${tmppath}/strangefile." \
  26. "${tmppath}/s.t.r.a.n.g.e.f.i.l.e" \
  27. "${tmppath}/.hiddenfile" \
  28. "${tmppath}/.hiddenfile.conf" \
  29. "${tmppath}/.hiddenfile.list" \
  30. "${tmppath}/multi..dot" \
  31. "${tmppath}/multi.dot.conf" \
  32. "${tmppath}/multi.dot.list" \
  33. "${tmppath}/disabledfile.disabled" \
  34. "${tmppath}/disabledfile.conf.disabled" \
  35. "${tmppath}/disabledfile.list.disabled" \
  36. "${tmppath}/invälid.conf" \
  37. "${tmppath}/invalíd" \
  38. "${tmppath}/01invalíd"
  39. ln -s "${tmppath}/anormalfile" "${tmppath}/linkedfile.list"
  40. ln -s "${tmppath}/non-existing-file" "${tmppath}/brokenlink.list"
  41. elif [ $name = "getLanguages${EXT}" ]; then
  42. echo "Prepare Testarea for \033[1;35m$name\033[0m ..."
  43. tmppath=$(mktemp -d)
  44. touch "${tmppath}/ftp.de.debian.org_debian_dists_sid_main_i18n_Translation-tr" \
  45. "${tmppath}/ftp.de.debian.org_debian_dists_sid_main_i18n_Translation-pt" \
  46. "${tmppath}/ftp.de.debian.org_debian_dists_sid_main_i18n_Translation-se~" \
  47. "${tmppath}/ftp.de.debian.org_debian_dists_sid_main_i18n_Translation-st.bak"
  48. fi
  49. echo -n "Testing with \033[1;35m${name}\033[0m ... "
  50. LD_LIBRARY_PATH=${LDPATH} ${testapp} ${tmppath} && echo "\033[1;32mOKAY\033[0m" || echo "\033[1;31mFAILED\033[0m"
  51. if [ -n "$tmppath" -a -d "$tmppath" ]; then
  52. echo "Cleanup Testarea after \033[1;35m$name\033[0m ..."
  53. rm -rf "$tmppath"
  54. fi
  55. done