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