4 TESTDIR
=$(readlink -f $(dirname $0))
8 configarchitecture
'native'
10 insertpackage
'unstable' 'unrelated' 'all' '1.0' 'stable'
11 insertsource
'unstable' 'unrelated' 'all' '1.0' 'stable'
13 echo 'ni ni ni' > aptarchive
/knights
16 changetowebserver
-o 'aptwebserver::overwrite::.*::filename=/knights'
18 msgtest
'Acquire test file from the webserver to check' 'overwrite'
19 if downloadfile http
://localhost
:8080/holygrail .
/knights
-talking >/dev
/null
; then
25 testfileequal knights
-talking 'ni ni ni'
27 ensure_n_canary_strings_in_dir
() {
29 local CANARY_STRING
="$2"
32 msgtest
"Testing in $DIR for $EXPECTED_N canary" "$CANARY_STRING"
33 local N
=$(grep "$CANARY_STRING" $DIR/* 2>/dev/null |wc -l )
34 test "$N" = "$EXPECTED_N" && msgpass
|| msgfail
"Expected $EXPECTED_N canaries, got $N"
37 LISTS
='rootdir/var/lib/apt/lists'
38 rm -rf rootdir
/var
/lib
/apt
/lists
39 msgtest
'Got expected failure message' 'apt-get update'
40 aptget update
-qq 2>&1 | grep -q 'W:.*Does not start with a cleartext signature' && msgpass
|| msgfail
42 ensure_n_canary_strings_in_dir
$LISTS 'ni ni ni' 0
43 testequal
'partial' ls $LISTS
45 # and again with pre-existing files with "valid data" which should remain
46 for f
in Release Release.gpg main_binary
-amd64_Packages main_source_Sources
; do
47 echo 'peng neee-wom' > $LISTS/localhost
:8080_dists_stable_
${f}
50 msgtest
'Got expected failure message in' 'apt-get update'
51 aptget update
-qq 2>&1 | grep -q 'W:.*Does not start with a cleartext signature' && msgpass
|| msgfail
53 ensure_n_canary_strings_in_dir
$LISTS 'peng neee-wom' 4
54 ensure_n_canary_strings_in_dir
$LISTS 'ni ni ni' 0
56 # and now with a pre-existing InRelease file
57 echo 'peng neee-wom' > $LISTS/localhost
:8080_dists_stable_InRelease
58 rm -f $LISTS/localhost
:8080_dists_stable_Release
$LISTS/localhost
:8080_dists_stable_Release.gpg
59 msgtest
'excpected failure of' 'apt-get update'
60 aptget update
-qq 2>&1 | grep -q 'W:.*Does not start with a cleartext signature' && msgpass
|| msgfail
62 ensure_n_canary_strings_in_dir
$LISTS 'peng neee-wom' 3
63 ensure_n_canary_strings_in_dir
$LISTS 'ni ni ni' 0