]>
Commit | Line | Data |
---|---|---|
7a948ec7 DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | TESTDIR=$(readlink -f $(dirname $0)) | |
5 | . $TESTDIR/framework | |
6 | setupenvironment | |
7 | configarchitecture 'amd64' 'i386' | |
8 | ||
9 | buildsimplenativepackage 'toolkit' 'all' '1' 'stable' 'Multi-Arch: foreign' | |
10 | buildsimplenativepackage 'toolkit' 'amd64' '2' 'unstable' 'Multi-Arch: foreign' | |
11 | buildsimplenativepackage 'libsame' 'i386,amd64' '1' 'stable' 'Multi-Arch: same' | |
12 | buildsimplenativepackage 'libsame' 'i386,amd64' '2' 'unstable' 'Multi-Arch: same' | |
13 | buildsimplenativepackage 'stuff' 'i386,amd64' '1' 'stable' 'Depends: libsame (= 1), toolkit (= 1)' | |
14 | buildsimplenativepackage 'stuff' 'i386,amd64' '2' 'unstable' 'Depends: libsame (= 2), toolkit (= 2)' | |
15 | ||
86fdeec2 DK |
16 | setupsimplenativepackage 'confpkg' 'amd64' '1' 'unstable' |
17 | BUILDDIR='incoming/confpkg-1' | |
18 | echo 'foo "bar";' > ${BUILDDIR}/pkg.conf | |
19 | echo 'pkg.conf /etc/pkg.conf' >> ${BUILDDIR}/debian/install | |
20 | buildpackage "$BUILDDIR" 'unstable' 'main' 'amd64' | |
21 | rm -rf "$BUILDDIR" | |
22 | ||
7a948ec7 DK |
23 | setupaptarchive |
24 | ||
25 | hook='pre-install-pkgs' | |
26 | ||
27 | enablehookversion() { | |
28 | echo "#!/bin/sh | |
48498443 DK |
29 | FD=0 |
30 | echo -n > ${hook}-v${1}.list | |
31 | if [ -n \"${2}\" ]; then | |
32 | FD=\$APT_HOOK_INFO_FD | |
33 | if [ "\$FD" != \"${2}\" ]; then echo \"ERROR: Information is not on requested FD: \$FD != ${2}\" >> ${hook}-v${1}.list; fi | |
34 | fi | |
35 | while read </proc/\$\$/fd/\$FD line; do | |
7a948ec7 DK |
36 | if echo \"\$line\" | grep -Fq '**'; then |
37 | echo \"\$line\" | |
38 | fi | |
48498443 | 39 | done >> ${hook}-v${1}.list" > ${hook}-v${1}.sh |
7a948ec7 DK |
40 | chmod +x ${hook}-v${1}.sh |
41 | echo "dpkg::${hook}:: \"./${hook}-v${1}.sh --foo -bar\"; | |
42 | DPkg::Tools::options::\"./${hook}-v${1}.sh\"::Version \"$1\";" > rootdir/etc/apt/apt.conf.d/hook-v$1 | |
48498443 DK |
43 | if [ -n "$2" ]; then |
44 | echo "DPkg::Tools::options::\"./${hook}-v${1}.sh\"::InfoFD \"${2}\";" >> rootdir/etc/apt/apt.conf.d/hook-v$1 | |
45 | fi | |
7a948ec7 DK |
46 | } |
47 | ||
7a948ec7 DK |
48 | observehook() { |
49 | rm -f ${hook}-v2.list ${hook}-v3.list | |
50 | msgtest 'Observe hooks while' "$*" | |
b381a482 | 51 | testsuccess --nomsg aptget "$@" -y --allow-downgrades |
7a948ec7 DK |
52 | } |
53 | ||
48498443 DK |
54 | testrun() { |
55 | observehook install stuff -t stable | |
56 | testfileequal "${hook}-v2.list" 'libsame - < 1 **CONFIGURE** | |
7a948ec7 DK |
57 | toolkit - < 1 **CONFIGURE** |
58 | stuff - < 1 **CONFIGURE**' | |
48498443 | 59 | testfileequal "${hook}-v3.list" 'libsame - - none < 1 amd64 same **CONFIGURE** |
7a948ec7 DK |
60 | toolkit - - none < 1 all foreign **CONFIGURE** |
61 | stuff - - none < 1 amd64 none **CONFIGURE**' | |
62 | ||
48498443 DK |
63 | observehook install stuff -t unstable |
64 | testfileequal "${hook}-v2.list" 'libsame 1 < 2 **CONFIGURE** | |
7a948ec7 DK |
65 | toolkit 1 < 2 **CONFIGURE** |
66 | stuff 1 < 2 **CONFIGURE**' | |
48498443 | 67 | testfileequal "${hook}-v3.list" 'libsame 1 amd64 same < 2 amd64 same **CONFIGURE** |
7a948ec7 DK |
68 | toolkit 1 all foreign < 2 amd64 foreign **CONFIGURE** |
69 | stuff 1 amd64 none < 2 amd64 none **CONFIGURE**' | |
70 | ||
48498443 DK |
71 | observehook install stuff:i386 -t unstable |
72 | testfileequal "${hook}-v2.list" 'stuff 2 > - **REMOVE** | |
7a948ec7 DK |
73 | libsame - < 2 **CONFIGURE** |
74 | stuff - < 2 **CONFIGURE**' | |
48498443 | 75 | testfileequal "${hook}-v3.list" 'stuff 2 amd64 none > - - none **REMOVE** |
7a948ec7 DK |
76 | libsame - - none < 2 i386 same **CONFIGURE** |
77 | stuff - - none < 2 i386 none **CONFIGURE**' | |
78 | ||
48498443 DK |
79 | observehook remove libsame |
80 | testfileequal "${hook}-v2.list" 'libsame 2 > - **REMOVE**' | |
81 | testfileequal "${hook}-v3.list" 'libsame 2 amd64 same > - - none **REMOVE**' | |
7a948ec7 | 82 | |
48498443 DK |
83 | observehook install stuff:i386/stable libsame:i386/stable toolkit/stable |
84 | testfileequal "${hook}-v2.list" 'libsame 2 > 1 **CONFIGURE** | |
7a948ec7 DK |
85 | toolkit 2 > 1 **CONFIGURE** |
86 | stuff 2 > 1 **CONFIGURE**' | |
48498443 | 87 | testfileequal "${hook}-v3.list" 'libsame 2 i386 same > 1 i386 same **CONFIGURE** |
7a948ec7 DK |
88 | toolkit 2 amd64 foreign > 1 all foreign **CONFIGURE** |
89 | stuff 2 i386 none > 1 i386 none **CONFIGURE**' | |
90 | ||
48498443 DK |
91 | observehook install 'libsame:*' |
92 | testfileequal "${hook}-v2.list" 'libsame 1 < 2 **CONFIGURE** | |
7a948ec7 DK |
93 | libsame - < 2 **CONFIGURE** |
94 | toolkit 1 < 2 **CONFIGURE** | |
95 | stuff 1 < 2 **CONFIGURE**' | |
48498443 | 96 | testfileequal "${hook}-v3.list" 'libsame 1 i386 same < 2 i386 same **CONFIGURE** |
7a948ec7 DK |
97 | libsame - - none < 2 amd64 same **CONFIGURE** |
98 | toolkit 1 all foreign < 2 amd64 foreign **CONFIGURE** | |
99 | stuff 1 i386 none < 2 i386 none **CONFIGURE**' | |
100 | ||
48498443 DK |
101 | observehook purge stuff:i386 'libsame:*' toolkit |
102 | testfileequal "${hook}-v2.list" 'libsame 2 > - **REMOVE** | |
7a948ec7 DK |
103 | stuff 2 > - **REMOVE** |
104 | libsame 2 > - **REMOVE** | |
105 | toolkit 2 > - **REMOVE**' | |
48498443 | 106 | testfileequal "${hook}-v3.list" 'libsame 2 amd64 same > - - none **REMOVE** |
7a948ec7 DK |
107 | stuff 2 i386 none > - - none **REMOVE** |
108 | libsame 2 i386 same > - - none **REMOVE** | |
109 | toolkit 2 amd64 foreign > - - none **REMOVE**' | |
86fdeec2 | 110 | |
48498443 DK |
111 | observehook install confpkg |
112 | testfileequal "${hook}-v2.list" 'confpkg - < 1 **CONFIGURE**' | |
113 | testfileequal "${hook}-v3.list" 'confpkg - - none < 1 amd64 none **CONFIGURE**' | |
114 | ||
115 | observehook remove confpkg | |
116 | testfileequal "${hook}-v2.list" 'confpkg 1 > - **REMOVE**' | |
117 | testfileequal "${hook}-v3.list" 'confpkg 1 amd64 none > - - none **REMOVE**' | |
86fdeec2 | 118 | |
48498443 DK |
119 | msgtest 'Conffiles of package remained after remove' 'confpkg' |
120 | dpkg -l confpkg | grep -q '^rc' && msgpass || msgfail | |
86fdeec2 | 121 | |
48498443 DK |
122 | observehook purge confpkg |
123 | testfileequal "${hook}-v2.list" 'confpkg 1 > - **REMOVE**' | |
124 | testfileequal "${hook}-v3.list" 'confpkg 1 amd64 none > - - none **REMOVE**' | |
86fdeec2 | 125 | |
48498443 DK |
126 | msgtest 'Conffiles are gone after purge' 'confpkg' |
127 | dpkg -l confpkg 2>/dev/null | grep -q '^rc' && msgfail || msgpass | |
128 | } | |
129 | ||
130 | enablehookversion 2 | |
131 | enablehookversion 3 | |
132 | testrun | |
86fdeec2 | 133 | |
48498443 DK |
134 | enablehookversion 2 13 |
135 | enablehookversion 3 13 | |
136 | testrun |