From c8af4e40e0096f60a5cf5039be775ff002619c4d Mon Sep 17 00:00:00 2001 From: Magnus Ahltorp Date: Fri, 14 Oct 2016 16:54:57 +0200 Subject: Test failing merge backup Refactor tests --- test/scripts/testutils.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/scripts/testutils.sh (limited to 'test/scripts/testutils.sh') diff --git a/test/scripts/testutils.sh b/test/scripts/testutils.sh new file mode 100644 index 0000000..94d6223 --- /dev/null +++ b/test/scripts/testutils.sh @@ -0,0 +1,22 @@ +. ${top_srcdir}/test/test.shvars + +fail() { + echo "$@" + false +} + +assert_equal() { + test "$2" = "$3" || fail "$1 $2 != expected $3" +} + +get_treesize() { + ${top_srcdir}/tools/loginfo.py --config ${top_srcdir}/test/catlfish-test.cfg --localconfig ${top_srcdir}/test/catlfish-test-local-merge.cfg --treesize https://localhost:8080/ +} + +check_sth() { + ${top_srcdir}/tools/check-sth.py ${BASEURL} --publickey=keys/logkey.pem --cur-sth=stored-sth --cafile httpsca/demoCA/cacert.pem || fail "Check STH failed" +} + +do_merge() { + ${top_srcdir}/tools/merge --config ${top_srcdir}/test/catlfish-test.cfg --localconfig ${top_srcdir}/test/catlfish-test-local-merge.cfg || fail "Merge failed" +} -- cgit v1.1