]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-get-update-unauth-warning
condense parallel requests with the same hashes to one
[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
19APTARCHIVE=$(readlink -f ./aptarchive)
20rm -f $APTARCHIVE/dists/unstable/*Release*
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
1da3b7b8 29W: The repository 'file:$APTARCHIVE unstable Release' does not have a Release file. This is deprecated, please contact the owner of the repository.
68ba0b7f 30E: Use --allow-insecure-repositories to force the update" aptget update --no-allow-insecure-repositories
bca84917
MV
31
32# no package foo
25b86db1 33testsuccessequal 'Listing...' apt list foo
546dbfc8
DK
34testequal 'lock
35partial' ls rootdir/var/lib/apt/lists
bca84917 36
ff86d7df
DK
37filesize() {
38 stat -c%s "$(aptget files --no-release-info --format '$(URI)' "Created-By: $1" | cut -d'/' -f 3- ).gz"
39}
bca84917 40# allow override
9d2a8a73
DK
41#aptget update --allow-insecure-repositories -o Debug::pkgAcquire::worker=1
42#exit
43testwarningequal "Get:1 file:$APTARCHIVE unstable InRelease
44Ign:1 file:$APTARCHIVE unstable InRelease
4dbfe436 45 File not found
9d2a8a73 46Get:2 file:$APTARCHIVE unstable Release
1eb1836f 47Ign:2 file:$APTARCHIVE unstable Release
4dbfe436 48 File not found
9d2a8a73
DK
49Get:3 file:$APTARCHIVE unstable/main Sources
50Ign:3 file:$APTARCHIVE unstable/main Sources
51 File not found
52Get:4 file:$APTARCHIVE unstable/main i386 Packages
53Ign:4 file:$APTARCHIVE unstable/main i386 Packages
54 File not found
55Get:5 file:$APTARCHIVE unstable/main Translation-en
56Ign:5 file:$APTARCHIVE unstable/main Translation-en
57 File not found
58Get:3 file:$APTARCHIVE unstable/main Sources
59Ign:3 file:$APTARCHIVE unstable/main Sources
60 File not found
61Get:4 file:$APTARCHIVE unstable/main i386 Packages
62Ign:4 file:$APTARCHIVE unstable/main i386 Packages
63 File not found
64Get:5 file:$APTARCHIVE unstable/main Translation-en
65Ign:5 file:$APTARCHIVE unstable/main Translation-en
66 File not found
67Get:3 file:$APTARCHIVE unstable/main Sources
68Ign:3 file:$APTARCHIVE unstable/main Sources
69 File not found
70Get:4 file:$APTARCHIVE unstable/main i386 Packages
71Ign:4 file:$APTARCHIVE unstable/main i386 Packages
72 File not found
73Get:5 file:$APTARCHIVE unstable/main Translation-en
74Ign:5 file:$APTARCHIVE unstable/main Translation-en
75 File not found
1eb1836f
DK
76Get:3 file:$APTARCHIVE unstable/main Sources [$(filesize 'Sources') B]
77Get:4 file:$APTARCHIVE unstable/main i386 Packages [$(filesize 'Packages') B]
78Get:5 file:$APTARCHIVE unstable/main Translation-en [$(filesize 'Translations') B]
bca84917 79Reading package lists...
1da3b7b8 80W: The repository 'file:$APTARCHIVE unstable Release' does not have a Release file. This is deprecated, please contact the owner of the repository." aptget update --allow-insecure-repositories
c4ffa042 81# ensure we can not install the package
25b86db1 82testfailureequal "WARNING: The following packages cannot be authenticated!
c4ffa042
MV
83 foo
84E: There are problems and -y was used without --force-yes" aptget install -qq -y foo