]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-apt-update-file
don't try other compressions on hashsum mismatch
[apt.git] / test / integration / test-apt-update-file
... / ...
CommitLineData
1#!/bin/sh
2#
3# Ensure that we do not modify file:/// uris (regression test for
4# CVE-2014-0487
5#
6set -e
7
8TESTDIR=$(readlink -f $(dirname $0))
9. $TESTDIR/framework
10
11setupenvironment
12configarchitecture "amd64"
13configcompression 'bz2' 'gz'
14
15insertpackage 'unstable' 'foo' 'all' '1'
16insertsource 'unstable' 'foo' 'all' '1'
17
18setupaptarchive --no-update
19
20# ensure the archive is not writable
21addtrap 'prefix' 'chmod 750 aptarchive/dists/unstable/main/binary-amd64;'
22chmod 550 aptarchive/dists/unstable/main/binary-amd64
23
24testsuccess aptget update
25testsuccess aptget update -o Debug::pkgAcquire::Auth=1
26cp -a rootdir/tmp/testsuccess.output rootdir/tmp/update.output
27
28# ensure that the hash of the uncompressed file was verified even on a local ims hit
29canary="SHA512:$(bzcat aptarchive/dists/unstable/main/binary-amd64/Packages.bz2 | sha512sum |cut -f1 -d' ')"
30testsuccess grep -- "$canary" rootdir/tmp/update.output
31
32# foo is still available
33testsuccess aptget install -s foo
34testsuccess aptcache showsrc foo
35testsuccess aptget source foo --print-uris