]>
Commit | Line | Data |
---|---|---|
a3f1d60c MV |
1 | #!/bin/sh |
2 | # | |
3 | # Regression test for debian bug #749795. Ensure that we fail with | |
4 | # a error if apt-get source foo will download a source that comes | |
5 | # from a unauthenticated repository | |
6 | # | |
7 | set -e | |
8 | ||
9 | TESTDIR=$(readlink -f $(dirname $0)) | |
10 | . $TESTDIR/framework | |
11 | ||
12 | setupenvironment | |
13 | configarchitecture "i386" | |
14 | ||
15 | # a "normal" package with source and binary | |
16 | buildsimplenativepackage 'foo' 'all' '2.0' | |
17 | ||
18 | setupaptarchive --no-update | |
19 | ||
20 | APTARCHIVE=$(readlink -f ./aptarchive) | |
21 | rm -f $APTARCHIVE/dists/unstable/*Release* | |
22 | ||
23 | # update without authenticated InRelease file | |
c99fe2e1 | 24 | testsuccess aptget update --allow-insecure-repositories |
a3f1d60c MV |
25 | |
26 | # this all should fail | |
27 | testfailure aptget install -y foo | |
28 | testfailure aptget source foo | |
29 | ||
30 | # allow overriding the warning | |
31 | testsuccess aptget source --allow-unauthenticated foo |