3 # Ensure that we do not modify file:/// uris (regression test for
8 TESTDIR
=$(readlink -f $(dirname $0))
12 configarchitecture
"amd64"
13 configcompression
'bz2' 'gz'
15 insertpackage
'unstable' 'foo' 'all' '1.0'
17 setupaptarchive
--no-update
19 # ensure the archive is not writable
20 chmod 550 aptarchive
/dists
/unstable
/main
/binary
-amd64
22 testsuccess aptget update
-qq
23 testsuccess aptget update
-qq
24 aptget update
-qq -o Debug
::pkgAcquire
::Auth
=1 2> output.log
26 # ensure that the hash of the uncompressed file was verified even on a local
28 canary
="SHA512:$(bzcat aptarchive/dists/unstable/main/binary-amd64/Packages.bz2 | sha512sum |cut -f1 -d' ')"
29 grep -q -- "- $canary" output.log
31 # foo is still available
32 testsuccess aptget
install -s foo
34 # the cleanup should still work
35 chmod 750 aptarchive
/dists
/unstable
/main
/binary
-amd64