]> git.saurik.com Git - apt.git/blame - test/integration/test-bug-596498-trusted-unsigned-repo
Fix the test suite again
[apt.git] / test / integration / test-bug-596498-trusted-unsigned-repo
CommitLineData
4b42f43b
DK
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6setupenvironment
7configarchitecture 'i386'
8
9buildsimplenativepackage 'cool' 'i386' '1.0' 'unstable'
10
11setupaptarchive
12
13aptgetupdate() {
14 rm -rf rootdir/var/lib/apt/ rootdir/var/cache/apt/*.bin
4fa34122 15 ${1:-testwarning} aptget update --allow-insecure-repositories
4b42f43b
DK
16}
17
ff86d7df
DK
18PKGTEXT="$(aptget install cool --assume-no -d | head -n 8)"
19DOWNLOG="$(echo "$PKGTEXT" | tail -n 1)"
20PKGTEXT="$(echo "$PKGTEXT" | head -n 7)"
268ffceb 21DEBFILE='rootdir/etc/apt/sources.list.d/apt-test-unstable-*.list'
4b42f43b 22
25b86db1 23testsuccessequal "$PKGTEXT
ff86d7df 24$DOWNLOG
4b42f43b
DK
25Download complete and in download only mode" aptget install cool --assume-no -d
26
25b86db1 27testsuccessequal "$PKGTEXT
ff86d7df 28$DOWNLOG
6c34ccca
DK
29Download complete and in download only mode" aptget install cool --assume-no -d --allow-unauthenticated
30
268ffceb 31sed -i -e 's#\(deb\(-src\)\?\) #\1 [trusted=no] #' $DEBFILE
4fa34122 32aptgetupdate 'testsuccess'
4b42f43b 33
25b86db1 34testfailureequal "$PKGTEXT
4b42f43b
DK
35WARNING: The following packages cannot be authenticated!
36 cool
55732492 37Install these packages without verification? [y/N] N
4b42f43b
DK
38E: Some packages could not be authenticated" aptget install cool --assume-no -d
39
a0c19a21
DK
40configarchitecture 'amd64' 'i386'
41testequal "$(echo "$PKGTEXT" | sed 's#cool$#cool:i386#g')
42WARNING: The following packages cannot be authenticated!
43 cool:i386
44Authentication warning overridden.
45$DOWNLOG
46Download complete and in download only mode" aptget install cool:i386 --assume-no -d --allow-unauthenticated
47configarchitecture 'i386'
48
4b42f43b 49find aptarchive/ \( -name 'Release.gpg' -o -name 'InRelease' \) -delete
268ffceb 50sed -i -e 's#\(deb\(-src\)\?\) \[trusted=no\] #\1 #' $DEBFILE
4b42f43b
DK
51aptgetupdate
52
25b86db1 53testfailureequal "$PKGTEXT
4b42f43b
DK
54WARNING: The following packages cannot be authenticated!
55 cool
55732492 56Install these packages without verification? [y/N] N
4b42f43b
DK
57E: Some packages could not be authenticated" aptget install cool --assume-no -d
58
25b86db1 59testsuccessequal "$PKGTEXT
6c34ccca
DK
60WARNING: The following packages cannot be authenticated!
61 cool
62Authentication warning overridden.
ff86d7df 63$DOWNLOG
6c34ccca
DK
64Download complete and in download only mode" aptget install cool --assume-no -d --allow-unauthenticated
65
268ffceb 66sed -i -e 's#\(deb\(-src\)\?\) #\1 [trusted=yes] #' $DEBFILE
4b42f43b
DK
67aptgetupdate
68
25b86db1 69testsuccessequal "$PKGTEXT
ff86d7df 70$DOWNLOG
4b42f43b 71Download complete and in download only mode" aptget install cool --assume-no -d