diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-15 13:30:12 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-15 13:31:20 +0000 |
commit | 83d859286db8a184054a5e05f707953634c82604 (patch) | |
tree | d7224227db27abba7a9d21e1c2f074c0d7541f9a /test/test2.sh | |
parent | ec6359732dec5651567f593d07871b5b7997c91d (diff) | |
download | apk-tools-83d859286db8a184054a5e05f707953634c82604.tar.gz apk-tools-83d859286db8a184054a5e05f707953634c82604.tar.bz2 apk-tools-83d859286db8a184054a5e05f707953634c82604.tar.xz apk-tools-83d859286db8a184054a5e05f707953634c82604.zip |
test: initial testsuite
Diffstat (limited to 'test/test2.sh')
-rwxr-xr-x | test/test2.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/test2.sh b/test/test2.sh new file mode 100755 index 0000000..f0ba463 --- /dev/null +++ b/test/test2.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +# desc: test if dependencies works + +# test-b depends on test-a +$APK add --root $ROOT --initdb --repository $PWD/repo1 test-b + +# check if test-a was installed +test "$($ROOT/usr/bin/test-a)" = "hello from test-a-1.0" + +# run an upgrade +$APK upgrade --root $ROOT --repository $PWD/repo2 + +# test if test-a was upgraded +test "$($ROOT/usr/bin/test-a)" = "hello from test-a-1.1" + +# remove test-b +$APK del --root $ROOT test-b + +# test if the dependency was removed too +if [ -x "$ROOT/usr/bin/test-a" ]; then + exit 1 +fi |