diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-10-13 09:54:21 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2014-10-13 13:01:15 +0200 |
commit | 9d653a6de2ca952247cc4e628256259d225570a6 (patch) | |
tree | c0953d2e518ab6b64ac11ea0096f5233feff9499 /test/integration/test-sourceslist-trusted-options | |
parent | 9983999d294887046abf386adc31190700d89b61 (diff) |
fix compile and tests error
I am pretty sure I did that before committing broken stuff…
Git-Dch: Ignore
Diffstat (limited to 'test/integration/test-sourceslist-trusted-options')
-rwxr-xr-x | test/integration/test-sourceslist-trusted-options | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/integration/test-sourceslist-trusted-options b/test/integration/test-sourceslist-trusted-options index ae65cca83..1178df46a 100755 --- a/test/integration/test-sourceslist-trusted-options +++ b/test/integration/test-sourceslist-trusted-options @@ -166,3 +166,30 @@ insecureaptgetupdate everythingfails everythingfails -t stable everythingfails -t testing + +# same as the one further above, but this time testing is unsigned +find aptarchive/ \( -name 'InRelease' -o -name 'Release.gpg' \) -delete +signreleasefiles 'Joe Sixpack' 'aptarchive/dists/stable' + +msgmsg 'Test without trusted option and unsigned and good sources' +cp -a rootdir/etc/apt/sources.list.d.bak/* rootdir/etc/apt/sources.list.d/ +insecureaptgetupdate +everythingfails +everythingsucceeds -t stable +everythingfails -t testing + +msgmsg 'Test with trusted=yes option and unsigned and good sources' +cp -a rootdir/etc/apt/sources.list.d.bak/* rootdir/etc/apt/sources.list.d/ +sed -i 's#^deb\(-src\)\? #deb\1 [trusted=yes] #' rootdir/etc/apt/sources.list.d/* +aptgetupdate +everythingsucceeds +everythingsucceeds -t stable +everythingsucceeds -t testing + +msgmsg 'Test with trusted=no option and unsigned and good sources' +cp -a rootdir/etc/apt/sources.list.d.bak/* rootdir/etc/apt/sources.list.d/ +sed -i 's#^deb\(-src\)\? #deb\1 [trusted=no] #' rootdir/etc/apt/sources.list.d/* +insecureaptgetupdate +everythingfails +everythingfails -t stable +everythingfails -t testing |