summaryrefslogtreecommitdiff
path: root/test/integration/test-hashsum-verification
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2015-11-19 16:00:33 +0100
committerDavid Kalnischkies <david@kalnischkies.de>2015-11-19 17:13:56 +0100
commit87d6947d51717e8b0e975d913986161598a7259a (patch)
treeaa7dfd6a63cbfffd75ace2bafc00589449aa02e6 /test/integration/test-hashsum-verification
parentbc7a59dded57338e9b5e523726b246dbdd4e0935 (diff)
tests: use quiet level 0 by default in tests
Git-Dch: Ignore
Diffstat (limited to 'test/integration/test-hashsum-verification')
-rwxr-xr-xtest/integration/test-hashsum-verification23
1 files changed, 10 insertions, 13 deletions
diff --git a/test/integration/test-hashsum-verification b/test/integration/test-hashsum-verification
index 5f88110b3..21ca87836 100755
--- a/test/integration/test-hashsum-verification
+++ b/test/integration/test-hashsum-verification
@@ -58,25 +58,22 @@ runtest() {
signreleasefiles 'Joe Sixpack'
find aptarchive/ -name "$DELETEFILE" -delete
- # test signed release file
- msgtest 'apt-get update gets the expected hashsum mismatch'
- aptget update 2>&1 | grep "Hash Sum mismatch" > /dev/null && msgpass || msgfail
- msgtest 'No package from the source available'
- [ "$(aptcache show apt 2>&1)" = "E: No packages found" ] && msgpass || msgfail
+ # test signed release file
+ msgtest 'apt-get update gets the expected hashsum mismatch'
+ testfailure aptget update
+ testsuccess grep "Hash Sum mismatch" rootdir/tmp/testfailure.output
+ msgtest 'No package from the source available'
+ testfailureequal --nomsg 'N: Unable to locate package apt
+E: No packages found' aptcache show apt
msgtest 'No Packages file in /var/lib/apt/lists'
[ "$(ls rootdir/var/lib/apt/lists/*Package* 2>/dev/null | grep -v FAILED 2>/dev/null)" = "" ] && msgpass || msgfail
# now with the unsigned Release file
rm -rf rootdir/var/lib/apt/lists
rm aptarchive/InRelease aptarchive/Release.gpg
- msgtest 'unsigned apt-get update gets the expected hashsum mismatch'
- aptget update --allow-insecure-repositories >output.log 2>&1 || true
- if grep -q "Hash Sum mismatch" output.log; then
- msgpass
- else
- cat output.log
- msgfail
- fi
+ msgtest 'unsigned apt-get update gets the expected hashsum mismatch'
+ testfailure --nomsg aptget update --allow-insecure-repositories
+ testsuccess grep "Hash Sum mismatch" rootdir/tmp/testfailure.output
}
for COMPRESSEDINDEXES in 'false' 'true'; do