]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-apt-get-download
add --sha512 option + documentation for apt-ftparchive
[apt.git] / test / integration / test-apt-get-download
... / ...
CommitLineData
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture "i386"
9
10buildsimplenativepackage 'apt' 'all' '1.0' 'stable'
11buildsimplenativepackage 'apt' 'all' '2.0' 'unstable'
12insertinstalledpackage 'vrms' 'all' '1.0'
13
14OLD_UMASK="$(umask)"
15umask 0027
16setupaptarchive --no-update
17umask "$OLD_UMASK"
18
19# directories should be readable by everyone
20find aptarchive/dists -type d | while read dir; do
21 chmod o+rx "$dir"
22done
23# apt-ftparchive knows how to chmod files
24find aptarchive/dists -name '*Packages*' -type f | while read file; do
25 testaccessrights "$file" '644'
26 chmod 640 "$file"
27done
28# created by the framework without special care
29find aptarchive/dists -name '*Release*' -type f | while read file; do
30 testaccessrights "$file" '640'
31done
32
33testsuccess aptget update
34
35testdownload() {
36 local APT="$2"
37 if [ -n "$3" ]; then
38 APT="${APT}/${3}"
39 fi
40 msgtest "Test download of package file $1 with" "$APT"
41 testsuccess --nomsg aptget download ${APT} -o Debug::pkgAcquire::Worker=1 -o Debug::pkgAcquire::Auth=1
42 testsuccess test -f "$1"
43 rm -f "$1"
44}
45
46# normal case as "root"
47OLDPWD="$(pwd)"
48cd downloaded
49testdownload apt_2.0_all.deb apt
50cd "$OLDPWD"
51
52# simulate normal user with non-existent root-owned directories
53rm -rf rootdir/var/cache/apt/archives/
54mkdir rootdir/var/cache/apt/archives/
55addtrap 'prefix' "chmod -f -R +w $PWD/rootdir/var/cache/apt/archives || true;"
56chmod -R -w rootdir/var/cache/apt/archives
57
58OLDPWD="$(pwd)"
59cd downloaded
60
61# normal case(es)
62testdownload apt_1.0_all.deb apt stable
63testdownload apt_2.0_all.deb apt
64
65DEBFILE="$(readlink -f ../aptarchive)/pool/apt_2.0_all.deb"
66testequal "'file://${DEBFILE}' apt_2.0_all.deb $(stat -c%s $DEBFILE) SHA512:$(sha512sum $DEBFILE | cut -d' ' -f 1)" aptget download apt --print-uris
67
68# deb:677887
69testequal "E: Can't find a source to download version '1.0' of 'vrms:i386'" aptget download vrms --print-uris
70testequal "E: Can't find a source to download version '1.0' of 'vrms:i386'" aptget download vrms
71
72# deb:736962
73testsuccess aptget download apt
74testsuccess aptget download apt
75testsuccess test -s apt_2.0_all.deb
76
77rm -f apt_1.0_all.deb apt_2.0_all.deb
78
79# deb:738103
80testsuccess aptget download apt apt apt/unstable apt=2.0
81testsuccess test -s apt_2.0_all.deb
82
83# restore "root" rights
84cd "$OLDPWD"
85chmod -f -R +w $PWD/rootdir/var/cache/apt/archives
86rm -rf rootdir/var/cache/apt/archives/
87
88# file: debs aren't copied to archives, so change to http which obviously are
89changetowebserver
90testsuccess aptget update
91
92# test with already stored deb
93testsuccess aptget install -d apt
94testsuccess test -s rootdir/var/cache/apt/archives/apt_2.0_all.deb
95testaccessrights 'aptarchive/pool/apt_2.0_all.deb' '644'
96mv aptarchive/pool/apt_2.0_all.deb aptarchive/pool/apt_2.0_all.deb.gone
97cd downloaded
98testdownload apt_2.0_all.deb apt
99cd "$OLDPWD"
100mv aptarchive/pool/apt_2.0_all.deb.gone aptarchive/pool/apt_2.0_all.deb