]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-get-update-unauth-warning
reenable gcc warnings for deprecated functions
[apt.git] / test / integration / test-apt-get-update-unauth-warning
CommitLineData
c4ffa042
MV
1#!/bin/sh
2#
3# ensure we print warnings for unauthenticated repositories
4#
5set -e
6
7TESTDIR=$(readlink -f $(dirname $0))
8. $TESTDIR/framework
9
10setupenvironment
11configarchitecture "i386"
ff86d7df 12configcompression '.' 'gz'
c4ffa042
MV
13
14# a "normal" package with source and binary
15buildsimplenativepackage 'foo' 'all' '2.0'
16
17setupaptarchive --no-update
18
63c71412
DK
19APTARCHIVE="$(readlink -f ./aptarchive)"
20find "$APTARCHIVE/dists/unstable" -name '*Release*' -delete
c4ffa042 21
bca84917 22# update without authenticated files leads to warning
9d2a8a73
DK
23testfailureequal "Get:1 file:$APTARCHIVE unstable InRelease
24Ign:1 file:$APTARCHIVE unstable InRelease
4dbfe436 25 File not found
9d2a8a73 26Get:2 file:$APTARCHIVE unstable Release
1eb1836f 27Err:2 file:$APTARCHIVE unstable Release
4dbfe436 28 File not found
95278287 29Reading package lists...
f18f2338
DK
30E: The repository 'file:$APTARCHIVE unstable Release' does not have a Release file.
31N: Updating such a repository securily is impossible and therefore disabled by default.
002b1bc4 32N: See apt-secure(8) manpage for repository creation and user configuration details." aptget update --no-allow-insecure-repositories -q=0
bca84917
MV
33
34# no package foo
25b86db1 35testsuccessequal 'Listing...' apt list foo
546dbfc8
DK
36testequal 'lock
37partial' ls rootdir/var/lib/apt/lists
bca84917 38
ff86d7df 39filesize() {
c2a4a8dd 40 stat -c%s "$(aptget indextargets --no-release-info --format '$(URI)' "Created-By: $1" | cut -d'/' -f 3- ).gz"
ff86d7df 41}
bca84917 42# allow override
9d2a8a73
DK
43#aptget update --allow-insecure-repositories -o Debug::pkgAcquire::worker=1
44#exit
45testwarningequal "Get:1 file:$APTARCHIVE unstable InRelease
46Ign:1 file:$APTARCHIVE unstable InRelease
4dbfe436 47 File not found
9d2a8a73 48Get:2 file:$APTARCHIVE unstable Release
1eb1836f 49Ign:2 file:$APTARCHIVE unstable Release
4dbfe436 50 File not found
9d2a8a73
DK
51Get:3 file:$APTARCHIVE unstable/main Sources
52Ign:3 file:$APTARCHIVE unstable/main Sources
53 File not found
54Get:4 file:$APTARCHIVE unstable/main i386 Packages
55Ign:4 file:$APTARCHIVE unstable/main i386 Packages
56 File not found
57Get:5 file:$APTARCHIVE unstable/main Translation-en
58Ign:5 file:$APTARCHIVE unstable/main Translation-en
59 File not found
60Get:3 file:$APTARCHIVE unstable/main Sources
61Ign:3 file:$APTARCHIVE unstable/main Sources
62 File not found
63Get:4 file:$APTARCHIVE unstable/main i386 Packages
64Ign:4 file:$APTARCHIVE unstable/main i386 Packages
65 File not found
66Get:5 file:$APTARCHIVE unstable/main Translation-en
67Ign:5 file:$APTARCHIVE unstable/main Translation-en
68 File not found
69Get:3 file:$APTARCHIVE unstable/main Sources
70Ign:3 file:$APTARCHIVE unstable/main Sources
71 File not found
72Get:4 file:$APTARCHIVE unstable/main i386 Packages
73Ign:4 file:$APTARCHIVE unstable/main i386 Packages
74 File not found
75Get:5 file:$APTARCHIVE unstable/main Translation-en
76Ign:5 file:$APTARCHIVE unstable/main Translation-en
77 File not found
1eb1836f
DK
78Get:3 file:$APTARCHIVE unstable/main Sources [$(filesize 'Sources') B]
79Get:4 file:$APTARCHIVE unstable/main i386 Packages [$(filesize 'Packages') B]
80Get:5 file:$APTARCHIVE unstable/main Translation-en [$(filesize 'Translations') B]
bca84917 81Reading package lists...
f18f2338 82W: The repository 'file:$APTARCHIVE unstable Release' does not have a Release file.
002b1bc4
DK
83N: Data from such a repository can not be authenticated and is therefore potentially dangerous to use.
84N: See apt-secure(8) manpage for repository creation and user configuration details." aptget update --allow-insecure-repositories -q=0
c4ffa042 85# ensure we can not install the package
25b86db1 86testfailureequal "WARNING: The following packages cannot be authenticated!
c4ffa042 87 foo
b381a482 88E: There were unauthenticated packages and -y was used without --allow-unauthenticated" aptget install -qq -y foo