blob: 9faae19de4b4b91eedff2cb2b2cca70672e8e472 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/sh
set -e
TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
unset APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE
configarchitecture 'native'
configdpkgnoopchroot
buildingpkg() {
local PKG="$1"
shift
setupsimplenativepackage "$PKG" 'native' '1' 'unstable' "$@"
BUILDDIR="incoming/${PKG}-1"
echo '#!/bin/sh
apt-key list >/dev/null' > "${BUILDDIR}/debian/postinst"
buildpackage "$BUILDDIR" 'unstable' 'main' 'native'
rm -rf "$BUILDDIR"
}
buildingpkg 'aptkeyuser-nodepends' 'Depends: unrelated'
buildingpkg 'aptkeyuser-depends' 'Depends: gnupg'
setupaptarchive
insertinstalledpackage 'unrelated' 'native' '1'
insertinstalledpackage 'gnupg' 'native' '1'
testsuccess apt install aptkeyuser-depends -y
cp rootdir/tmp/testsuccess.output apt.output
testfailure grep '^Warning: This will BREAK' apt.output
testsuccess grep '^Warning: apt-key' apt.output
testsuccess apt install aptkeyuser-nodepends -y
cp rootdir/tmp/testsuccess.output apt.output
testsuccess grep '^Warning: This will BREAK' apt.output
testsuccess grep '^Warning: apt-key' apt.output
testsuccess aptkey list
cp rootdir/tmp/testsuccess.output aptkey.list
testsuccess grep '^Warning: apt-key' aptkey.list
|