]> git.saurik.com Git - apt.git/blob - test/integration/test-apt-key
add --secret-keyring option for apt-key
[apt.git] / test / integration / test-apt-key
1 #!/bin/sh
2 set -e
3
4 TESTDIR=$(readlink -f $(dirname $0))
5 . $TESTDIR/framework
6
7 setupenvironment
8 configarchitecture 'amd64'
9
10 # start from a clean plate again
11 cleanplate() {
12 rm -rf rootdir/etc/apt/trusted.gpg.d/ rootdir/etc/apt/trusted.gpg
13 mkdir rootdir/etc/apt/trusted.gpg.d/
14 }
15
16 echo 'APT::Key::ArchiveKeyring "./keys/joesixpack.pub";
17 APT::Key::RemovedKeys "./keys/rexexpired.pub";' > rootdir/etc/apt/apt.conf.d/aptkey.conf
18
19 testrun() {
20 cleanplate
21 ln -sf ${TMPWORKINGDIRECTORY}/keys/joesixpack.pub rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
22
23 msgtest 'Check that paths in list output are not' 'double-slashed'
24 aptkey list 2>&1 | grep -q '//' && msgfail || msgpass
25
26 msgtest 'Check that paths in finger output are not' 'double-slashed'
27 aptkey finger 2>&1 | grep -q '//' && msgfail || msgpass
28
29 aptkey list | grep '^pub' > aptkey.list
30 testfileequal ./aptkey.list 'pub 2048R/DBAC8DAE 2010-08-18'
31
32 testequal 'gpg: key DBAC8DAE: "Joe Sixpack (APT Testcases Dummy) <joe@example.org>" not changed
33 gpg: Total number processed: 1
34 gpg: unchanged: 1' aptkey --fakeroot update
35
36 aptkey list | grep '^pub' > aptkey.list
37 testfileequal ./aptkey.list 'pub 2048R/DBAC8DAE 2010-08-18'
38
39 testsuccess aptkey --fakeroot add ./keys/rexexpired.pub
40
41 aptkey list | grep '^pub' > aptkey.list
42 testfileequal ./aptkey.list 'pub 2048R/27CE74F9 2013-07-12 [expired: 2013-07-13]
43 pub 2048R/DBAC8DAE 2010-08-18'
44
45 msgtest 'Check that Sixpack key can be' 'exported'
46 aptkey export 'Sixpack' > aptkey.export
47 aptkey --keyring rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg exportall > aptkey.exportall
48 testsuccess --nomsg cmp aptkey.export aptkey.exportall
49 testsuccess test -s aptkey.export
50 testsuccess test -s aptkey.exportall
51
52 msgtest 'Execute update again to trigger removal of' 'Rex Expired key'
53 testsuccess --nomsg aptkey --fakeroot update
54
55 aptkey list | grep '^pub' > aptkey.list
56 testfileequal ./aptkey.list 'pub 2048R/DBAC8DAE 2010-08-18'
57
58 msgtest "Try to remove a key which exists, but isn't in the" 'forced keyring'
59 testsuccess --nomsg aptkey --fakeroot --keyring rootdir/etc/apt/trusted.gpg del DBAC8DAE
60
61 aptkey list | grep '^pub' > aptkey.list
62 testfileequal ./aptkey.list 'pub 2048R/DBAC8DAE 2010-08-18'
63
64 testsuccess aptkey --fakeroot del DBAC8DAE
65 testempty aptkey list
66
67 msgtest 'Test key removal with' 'single key in real file'
68 cleanplate
69 cp -a keys/joesixpack.pub rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
70 testsuccess --nomsg aptkey --fakeroot del DBAC8DAE
71 testempty aptkey list
72 testsuccess test ! -e rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
73 testsuccess cmp keys/joesixpack.pub rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg~
74
75 msgtest 'Test key removal with' 'fingerprint'
76 cleanplate
77 cp -a keys/joesixpack.pub rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
78 testsuccess --nomsg aptkey --fakeroot del 34A8E9D18DB320F367E8EAA05A90D141DBAC8DAE
79 testempty aptkey list
80 testsuccess test ! -e rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
81 testsuccess cmp keys/joesixpack.pub rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg~
82
83 msgtest 'Test key removal with' 'single key in softlink'
84 cleanplate
85 ln -s $(readlink -f ./keys/joesixpack.pub) rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
86 testsuccess --nomsg aptkey --fakeroot del DBAC8DAE
87 testempty aptkey list
88 testsuccess test ! -e rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
89 testsuccess test -L rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg~
90
91 cleanplate
92 testsuccess aptkey --fakeroot add ./keys/joesixpack.pub
93 testsuccess aptkey --fakeroot add ./keys/marvinparanoid.pub
94 aptkey list | grep '^pub' > aptkey.list
95 testfileequal ./aptkey.list 'pub 2048R/DBAC8DAE 2010-08-18
96 pub 2048R/528144E2 2011-01-16'
97 cp -a rootdir/etc/apt/trusted.gpg keys/testcase-multikey.pub # store for reuse
98
99 msgtest 'Test key removal with' 'multi key in real file'
100 cleanplate
101 cp -a keys/testcase-multikey.pub rootdir/etc/apt/trusted.gpg.d/multikey.gpg
102 testsuccess --nomsg aptkey --fakeroot del DBAC8DAE
103 aptkey list | grep '^pub' > aptkey.list
104 testfileequal ./aptkey.list 'pub 2048R/528144E2 2011-01-16'
105 testsuccess cmp keys/testcase-multikey.pub rootdir/etc/apt/trusted.gpg.d/multikey.gpg~
106
107 msgtest 'Test key removal with' 'multi key in softlink'
108 cleanplate
109 ln -s $(readlink -f ./keys/testcase-multikey.pub) rootdir/etc/apt/trusted.gpg.d/multikey.gpg
110 testsuccess --nomsg aptkey --fakeroot del DBAC8DAE
111 aptkey list | grep '^pub' > aptkey.list
112 testfileequal ./aptkey.list 'pub 2048R/528144E2 2011-01-16'
113 testsuccess cmp keys/testcase-multikey.pub rootdir/etc/apt/trusted.gpg.d/multikey.gpg~
114 testsuccess test ! -L rootdir/etc/apt/trusted.gpg.d/multikey.gpg
115 testsuccess test -L rootdir/etc/apt/trusted.gpg.d/multikey.gpg~
116
117 msgtest 'Test key removal with' 'multiple files including key'
118 cleanplate
119 cp -a keys/joesixpack.pub rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
120 cp -a keys/testcase-multikey.pub rootdir/etc/apt/trusted.gpg.d/multikey.gpg
121 testsuccess --nomsg aptkey --fakeroot del DBAC8DAE
122 aptkey list | grep '^pub' > aptkey.list
123 testfileequal ./aptkey.list 'pub 2048R/528144E2 2011-01-16'
124 testsuccess test ! -e rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
125 testsuccess cmp keys/joesixpack.pub rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg~
126 testsuccess cmp keys/testcase-multikey.pub rootdir/etc/apt/trusted.gpg.d/multikey.gpg~
127 }
128
129 setupgpgcommand() {
130 echo "APT::Key::GPGCommand \"$1\";" > rootdir/etc/apt/apt.conf.d/00gpgcmd
131 msgtest 'Test that apt-key uses for the following tests command' "$1"
132 aptkey adv --version >aptkey.version 2>&1
133 if grep -q "^Executing: $1 --" aptkey.version; then
134 msgpass
135 else
136 cat aptkey.version
137 msgfail
138 fi
139 }
140
141 # run with default (whatever this is)
142 testrun
143 # run with …
144 setupgpgcommand 'gpg'
145 testrun
146 setupgpgcommand 'gpg2'
147 testrun