]>
git.saurik.com Git - apt.git/blob - test/integration/test-apt-get-source-authenticated
3 # Regression test for debian bug #749795. Ensure that we fail with
4 # an error if apt-get source foo will download a source that comes
5 # from a unauthenticated repository
9 TESTDIR
="$(readlink -f "$(dirname "$0")")"
10 . "$TESTDIR/framework
"
13 configarchitecture "i386
"
15 # a "normal
" package with source and binary
16 buildsimplenativepackage 'foo' 'all' '2.0'
18 setupaptarchive --no-update
20 APTARCHIVE="$(readlink -f ./aptarchive)"
21 find "$APTARCHIVE/dists
/unstable
" -name '*Release*' -delete
23 # update without authenticated InRelease file
24 testwarning aptget update --allow-insecure-repositories
26 # this all should fail
27 testfailure aptget install -y foo
29 testfailure aptget source foo
30 testfailure test -e foo_2.0.dsc
31 # allow overriding the warning
32 testsuccess aptget source --allow-unauthenticated foo -o Debug::pkgAcquire::Worker=1
33 testsuccess test -s foo_2.0.dsc -a -L foo_2.0.dsc