]>
Commit | Line | Data |
---|---|---|
f87338d2 DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
3abb6a6a DK |
4 | TESTDIR="$(readlink -f "$(dirname "$0")")" |
5 | . "$TESTDIR/framework" | |
f87338d2 DK |
6 | |
7 | setupenvironment | |
8 | configarchitecture "i386" | |
5acf154d MV |
9 | changetowebserver |
10 | ||
11 | # setup env | |
e5543ea5 MV |
12 | mkdir -p var/lib/apt/keyrings |
13 | mkdir -p usr/share/keyrings | |
f87338d2 | 14 | |
e5543ea5 MV |
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 | |
f87338d2 | 18 | |
e5543ea5 MV |
19 | # setup archive-keyring |
20 | mkdir -p aptarchive/ubuntu/project | |
21 | install -m0644 keys/test-archive-keyring.pub aptarchive/ubuntu/project/ | |
6c0765c0 | 22 | echo "APT::Key::ArchiveKeyringURI \"http://localhost:${APTHTTPPORT}/ubuntu/project/test-archive-keyring.pub\";" >> ./aptconfig.conf |
e5543ea5 | 23 | echo 'APT::Key::Net-Update-Enabled "1";' >> ./aptconfig.conf |
f87338d2 | 24 | |
e5543ea5 | 25 | # test against the "real" webserver |
25b86db1 | 26 | testsuccessequal 'Checking for new archive signing keys now |
e5543ea5 MV |
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 | |
f87338d2 | 30 | |
12841e83 DK |
31 | aptkey list | grep '^pub' > aptkey.list |
32 | testfileequal ./aptkey.list 'pub 1024R/F68C85A3 2013-12-19 | |
33 | pub 2048R/DBAC8DAE 2010-08-18' | |
f87338d2 | 34 | |
e5543ea5 MV |
35 | # now try a different one |
36 | # setup archive-keyring | |
37 | mkdir -p aptarchive/ubuntu/project | |
38 | install -m0644 keys/marvinparanoid.pub aptarchive/ubuntu/project/ | |
6c0765c0 | 39 | echo "APT::Key::ArchiveKeyringURI \"http://localhost:${APTHTTPPORT}/ubuntu/project/marvinparanoid.pub\";" >> ./aptconfig.conf |
e5543ea5 | 40 | echo 'APT::Key::Net-Update-Enabled "1";' >> ./aptconfig.conf |
f87338d2 | 41 | |
e5543ea5 | 42 | # test against the "real" webserver |
25b86db1 | 43 | testsuccessequal "Checking for new archive signing keys now |
ba72845c | 44 | Key 'DE66AECA9151AFA1877EC31DE8525D47528144E2' not added. It is not signed with a master key" aptkey --fakeroot net-update |
f87338d2 | 45 | |
12841e83 DK |
46 | aptkey list | grep '^pub' > aptkey.list |
47 | testfileequal ./aptkey.list 'pub 1024R/F68C85A3 2013-12-19 | |
48 | pub 2048R/DBAC8DAE 2010-08-18' |