From 47fb685c2d6df5995134e9b8d322f667058e505e Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 27 May 2013 20:31:01 -0600 Subject: fix and add unit tests --- test/libreblacklist-test.sh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'test/libreblacklist-test.sh') diff --git a/test/libreblacklist-test.sh b/test/libreblacklist-test.sh index f2fd457..94f5b27 100644 --- a/test/libreblacklist-test.sh +++ b/test/libreblacklist-test.sh @@ -2,6 +2,15 @@ describe libreblacklist +before() { + tmpdir=$(mktemp -d --tmpdir test-libreblacklist.XXXXXXXXXXXX) + stat=0 +} + +after() { + rm -rf -- "$tmpdir" "$XDG_CACHE_HOME" "$XDG_CONFIG_HOME" +} + it_works_with_just_pkgname() { v="$(libreblacklist normalize <<$XDG_CONFIG_HOME/libretools/libretools.conf + + libreblacklist update >$tmpdir/stdout 2>$tmpdir/stderr || stat=$? + + [[ $stat != 0 ]] + [[ -z "$(cat $tmpdir/stdout)" ]] + [[ -n "$(cat $tmpdir/stderr)" ]] +} + +it_fails_cat_when_there_is_no_blacklist_or_network() { + mkdir -p $XDG_CONFIG_HOME/libretools + echo "BLACKLIST='http://phony'" >$XDG_CONFIG_HOME/libretools/libretools.conf + + libreblacklist cat >$tmpdir/stdout 2>$tmpdir/stderr || stat=$? + + [[ $stat != 0 ]] + [[ -z "$(cat $tmpdir/stdout)" ]] + [[ -n "$(cat $tmpdir/stderr)" ]] +} + # TODO: test blacklist-update, but I don't want tests to use network -- cgit v1.2.3-54-g00ecf