]> git.saurik.com Git - apt.git/blob - test/integration/test-apt-key-net-update
Make the test more verbose and check for the negative case of a kernel that
[apt.git] / test / integration / test-apt-key-net-update
1 #!/bin/sh
2 set -e
3
4 TESTDIR=$(readlink -f $(dirname $0))
5 . $TESTDIR/framework
6
7 setupenvironment
8 configarchitecture "i386"
9 changetowebserver
10
11 # setup env
12 mkdir -p var/lib/apt/keyrings
13 mkdir -p usr/share/keyrings
14
15 # install the fake master keyring
16 install -m0644 keys/test-master-keyring.pub usr/share/keyrings
17 echo "APT::Key::MasterKeyring \"${TMPWORKINGDIRECTORY}/usr/share/keyrings/test-master-keyring.pub\";" >> ./aptconfig.conf
18
19 # setup archive-keyring
20 mkdir -p aptarchive/ubuntu/project
21 install -m0644 keys/test-archive-keyring.pub aptarchive/ubuntu/project/
22 echo 'APT::Key::ArchiveKeyringURI "http://localhost:8080/ubuntu/project/test-archive-keyring.pub";' >> ./aptconfig.conf
23 echo 'APT::Key::Net-Update-Enabled "1";' >> ./aptconfig.conf
24
25 # test against the "real" webserver
26 testequal 'Checking for new archive signing keys now
27 gpg: key F68C85A3: public key "Test Automatic Archive Signing Key <ftpmaster@example.com>" imported
28 gpg: Total number processed: 1
29 gpg: imported: 1 (RSA: 1)' aptkey --fakeroot net-update
30
31
32 # now try a different one
33 # setup archive-keyring
34 mkdir -p aptarchive/ubuntu/project
35 install -m0644 keys/marvinparanoid.pub aptarchive/ubuntu/project/
36 echo 'APT::Key::ArchiveKeyringURI "http://localhost:8080/ubuntu/project/marvinparanoid.pub";' >> ./aptconfig.conf
37 echo 'APT::Key::Net-Update-Enabled "1";' >> ./aptconfig.conf
38
39 # test against the "real" webserver
40 testequal "Checking for new archive signing keys now
41 Key 'E8525D47528144E2' not added. It is not signed with a master key" aptkey --fakeroot net-update
42
43