]> git.saurik.com Git - apt.git/blame - test/integration/framework
support setting empty values (sanely) & removing support for
[apt.git] / test / integration / framework
CommitLineData
8d876415
DK
1#!/bin/sh -- # no runable script, just for vi
2
5d76cee1 3EXIT_CODE=0
8c1dd12c 4
68042532
DK
5while [ -n "$1" ]; do
6 if [ "$1" = "-q" ]; then
7 export MSGLEVEL=2
8 elif [ "$1" = "-v" ]; then
9 export MSGLEVEL=4
10 elif [ "$1" = '--color=no' ]; then
11 export MSGCOLOR='NO'
61e92778
DK
12 elif [ "$1" = '--color=yes' ]; then
13 export MSGCOLOR='YES'
14 elif [ "$1" = '--color' ]; then
15 export MSGCOLOR="$(echo "$2" | tr 'a-z' 'A-Z')"
16 shift
17 elif [ "$1" = '--level' ]; then
18 export MSGLEVEL=$2
19 shift
68042532
DK
20 else
21 echo >&2 "WARNING: Unknown parameter »$1« will be ignored"
22 fi
23 shift
24done
25export MSGLEVEL="${MSGLEVEL:-3}"
26
8d876415 27# we all like colorful messages
61e92778 28if [ "${MSGCOLOR:-YES}" = 'YES' ]; then
27cb4f6c 29 if [ ! -t 1 ]; then # but check that we output to a terminal
1290422a
DK
30 export MSGCOLOR='NO'
31 fi
32fi
33
34
35if [ "$MSGCOLOR" != 'NO' ]; then
36 CERROR="\033[1;31m" # red
37 CWARNING="\033[1;33m" # yellow
38 CMSG="\033[1;32m" # green
39 CINFO="\033[1;96m" # light blue
40 CDEBUG="\033[1;94m" # blue
41 CNORMAL="\033[0;39m" # default system console color
42 CDONE="\033[1;32m" # green
43 CPASS="\033[1;32m" # green
44 CFAIL="\033[1;31m" # red
45 CCMD="\033[1;35m" # pink
682a3bf7 46fi
8d876415 47
de81b2e2
DK
48msgprintf() {
49 local START="$1"
50 local MIDDLE="$2"
51 local END="$3"
52 shift 3
53 if [ -n "$1" ]; then
54 printf "$START " "$1"
d73840dc 55 shift
de81b2e2 56 while [ -n "$1" ]; do
03aa0847 57 printf "$MIDDLE " "$(echo "$1" | sed -e 's#^apt\([cfghs]\)#apt-\1#')"
de81b2e2
DK
58 shift
59 done
60 fi
61 printf "${END}"
2a2a7ef4 62}
de81b2e2
DK
63msgdie() { msgprintf "${CERROR}E: %s" '%s' "${CNORMAL}\n" "$@" >&2; exit 1; }
64msgwarn() { msgprintf "${CWARNING}W: %s" '%s' "${CNORMAL}\n" "$@" >&2; }
65msgmsg() { msgprintf "${CMSG}%s" '%s' "${CNORMAL}\n" "$@"; }
66msginfo() { msgprintf "${CINFO}I: %s" '%s' "${CNORMAL}\n" "$@"; }
67msgdebug() { msgprintf "${CDEBUG}D: %s" '%s' "${CNORMAL}\n" "$@"; }
68msgdone() { msgprintf "${CDONE}DONE" '%s' "${CNORMAL}\n" "$@"; }
69msgnwarn() { msgprintf "${CWARNING}W: %s" '%s' "${CNORMAL}" "$@" >&2; }
70msgnmsg() { msgprintf "${CMSG}%s" '%s' "${CNORMAL}" "$@"; }
71msgninfo() { msgprintf "${CINFO}I: %s" '%s' "${CNORMAL}" "$@"; }
72msgndebug() { msgprintf "${CDEBUG}D: %s" '%s' "${CNORMAL}" "$@"; }
73msgtest() { msgprintf "${CINFO}%s" "${CCMD}%s${CINFO}" "…${CNORMAL} " "$@"; }
3c528b91 74msgpass() { printf "${CPASS}PASS${CNORMAL}\n"; }
1501a2c9 75msgreportheader() {
68042532 76 if [ -n "$MSGTEST_MSG" ]; then
1501a2c9 77 test "$1" != 'msgfailoutput' || echo
ae7fce5a
DK
78 if [ -n "$MSGTEST_MSGMSG" ]; then
79 echo "$MSGTEST_MSGMSG"
80 fi
22ac12b2 81 if [ -n "$MSGTEST_GRP" ] && [ "$MSGTEST_GRP" != 'NEXT' ] && [ "$MSGTEST_GRP" != "$MSGTEST_MSG" ]; then
1501a2c9 82 echo "${CFAIL}Part of the test group: $MSGTEST_GRP"
22ac12b2 83 fi
68042532
DK
84 echo -n "$MSGTEST_MSG"
85 unset MSGTEST_MSG
86 fi
1501a2c9
DK
87}
88msgskip() {
89 msgreportheader 'msgskip'
68ba0b7f
DK
90 if [ $# -gt 0 ]; then printf "${CWARNING}SKIP: $*${CNORMAL}\n" >&2;
91 else printf "${CWARNING}SKIP${CNORMAL}\n" >&2; fi
92}
5229b285 93msgfail() {
1501a2c9 94 msgreportheader 'msgfail'
68042532 95 if [ $# -gt 0 ] && [ -n "$1" ]; then printf "${CFAIL}FAIL: $*${CNORMAL}\n" >&2;
3c528b91 96 else printf "${CFAIL}FAIL${CNORMAL}\n" >&2; fi
03aa0847
DK
97 if [ -n "$APT_DEBUG_TESTS" ]; then
98 $SHELL
99 fi
5229b285
DK
100 EXIT_CODE=$((EXIT_CODE+1));
101}
9beb11aa
DK
102MSGGROUP_LEVEL=0
103msggroup() {
104 if [ -n "$1" ]; then
105 if [ $MSGGROUP_LEVEL = 0 ]; then
106 MSGTEST_GRP='NEXT'
107 fi
108 MSGGROUP_LEVEL=$((MSGGROUP_LEVEL+1));
109 else
110 MSGGROUP_LEVEL=$((MSGGROUP_LEVEL-1));
111 if [ $MSGGROUP_LEVEL = 0 ]; then
112 unset MSGTEST_GRP
113 fi
114 fi
115}
8d876415
DK
116
117# enable / disable Debugging
fc89263e
DK
118if [ $MSGLEVEL -le 0 ]; then
119 msgdie() { true; }
120fi
121if [ $MSGLEVEL -le 1 ]; then
122 msgwarn() { true; }
123 msgnwarn() { true; }
124fi
125if [ $MSGLEVEL -le 2 ]; then
ae7fce5a
DK
126 msgmsg() {
127 MSGTEST_MSGMSG="$(msgprintf "${CMSG}%s" '%s' "${CNORMAL}" "$@")"
128 }
fc89263e 129 msgnmsg() { true; }
9beb11aa
DK
130 msgtest() {
131 MSGTEST_MSG="$(msgprintf "${CINFO}%s" "${CCMD}%s${CINFO}" "…${CNORMAL} " "$@")"
132 if [ "$MSGTEST_GRP" = 'NEXT' ]; then
133 MSGTEST_GRP="$MSGTEST_MSG"
134 fi
135 }
3c528b91 136 msgpass() { printf " ${CPASS}P${CNORMAL}"; }
fc89263e
DK
137fi
138if [ $MSGLEVEL -le 3 ]; then
139 msginfo() { true; }
140 msgninfo() { true; }
141fi
142if [ $MSGLEVEL -le 4 ]; then
143 msgdebug() { true; }
144 msgndebug() { true; }
145fi
146msgdone() {
147 if [ "$1" = "debug" -a $MSGLEVEL -le 4 ] ||
148 [ "$1" = "info" -a $MSGLEVEL -le 3 ] ||
149 [ "$1" = "msg" -a $MSGLEVEL -le 2 ] ||
150 [ "$1" = "warn" -a $MSGLEVEL -le 1 ] ||
151 [ "$1" = "die" -a $MSGLEVEL -le 0 ]; then
152 true;
153 else
3c528b91 154 printf "${CDONE}DONE${CNORMAL}\n";
fc89263e
DK
155 fi
156}
e43a426e
MV
157getaptconfig() {
158 if [ -f ./aptconfig.conf ]; then
5465192b 159 echo "$(readlink -f ./aptconfig.conf)"
e43a426e 160 elif [ -f ../aptconfig.conf ]; then
5465192b
DK
161 echo "$(readlink -f ../aptconfig.conf)"
162 elif [ -f ../../aptconfig.conf ]; then
163 echo "$(readlink -f ../../aptconfig.conf)"
164 elif [ -f "${TMPWORKINGDIRECTORY}/aptconfig.conf" ]; then
165 echo "$(readlink -f "${TMPWORKINGDIRECTORY}/aptconfig.conf")"
166 fi
e43a426e 167}
8d876415
DK
168runapt() {
169 msgdebug "Executing: ${CCMD}$*${CDEBUG} "
846856f4
DK
170 local CMD="$1"
171 shift
3b8eb3bc 172 case $CMD in
a311fb96 173 sh|aptitude|*/*|command) ;;
3b8eb3bc
DK
174 *) CMD="${BUILDDIRECTORY}/$CMD";;
175 esac
a311fb96 176 MALLOC_PERTURB_=21 MALLOC_CHECK_=2 APT_CONFIG="$(getaptconfig)" LD_LIBRARY_PATH=${LIBRARYPATH} $CMD "$@"
8d876415 177}
846856f4
DK
178aptconfig() { runapt apt-config "$@"; }
179aptcache() { runapt apt-cache "$@"; }
180aptcdrom() { runapt apt-cdrom "$@"; }
181aptget() { runapt apt-get "$@"; }
182aptftparchive() { runapt apt-ftparchive "$@"; }
183aptkey() { runapt apt-key "$@"; }
184aptmark() { runapt apt-mark "$@"; }
4f6d26b4 185aptsortpkgs() { runapt apt-sortpkgs "$@"; }
796673c3 186apt() { runapt apt "$@"; }
3b8eb3bc
DK
187apthelper() { runapt "${APTHELPERBINDIR}/apt-helper" "$@"; }
188aptwebserver() { runapt "${APTWEBSERVERBINDIR}/aptwebserver" "$@"; }
189aptitude() { runapt aptitude "$@"; }
8d50b63f 190aptextracttemplates() { runapt apt-extracttemplates "$@"; }
3082603f 191aptinternalsolver() { runapt "${APTINTERNALSOLVER}" "$@"; }
ad7e0941 192aptdumpsolver() { runapt "${APTDUMPSOLVER}" "$@"; }
3b8eb3bc 193
158fda31 194dpkg() {
b0be0e09 195 "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" "$@"
158fda31 196}
ce7f128c 197dpkgcheckbuilddeps() {
63c71412 198 command dpkg-checkbuilddeps --admindir="${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg" "$@"
b6b5a542 199}
3fa950f1 200gdb() {
b07aeb1a
DK
201 local CMD
202 case "$1" in
203 aptget) CMD="apt-get";;
204 aptcache) CMD="apt-cache";;
5465192b
DK
205 aptcdrom) CMD="apt-cdrom";;
206 aptconfig) CMD="apt-config";;
b07aeb1a
DK
207 aptmark) CMD="apt-mark";;
208 apthelper) CMD="apt-helper";;
3d8232bf 209 aptftparchive) CMD="apt-ftparchive";;
63c71412 210 dpkg) shift; runapt "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg" "$@"; return;;
b07aeb1a
DK
211 *) CMD="$1";;
212 esac
ce928105 213 shift
921a9626
DK
214 if [ "${CMD##*/}" = "$CMD" ]; then
215 CMD="${BUILDDIRECTORY}/${CMD}"
216 fi
217 runapt command gdb --quiet -ex run "$CMD" --args "$CMD" "$@"
ae99ce2e 218}
8d876415 219
8c1dd12c 220exitwithstatus() {
f91bd741
MV
221 # error if we about to overflow, but ...
222 # "255 failures ought to be enough for everybody"
5d76cee1
MV
223 if [ $EXIT_CODE -gt 255 ]; then
224 msgdie "Total failure count $EXIT_CODE too big"
f91bd741 225 fi
5d76cee1 226 exit $((EXIT_CODE <= 255 ? EXIT_CODE : 255));
8c1dd12c
MV
227}
228
804d4a0d
DK
229shellsetedetector() {
230 local exit_status=$?
231 if [ "$exit_status" != '0' ]; then
3c528b91 232 printf >&2 "${CERROR}E: Looks like the testcases ended prematurely with exitcode: ${exit_status}${CNORMAL}\n"
804d4a0d
DK
233 if [ "$EXIT_CODE" = '0' ]; then
234 EXIT_CODE="$exit_status"
235 fi
236 fi
237}
238
b720d0bd 239addtrap() {
8437b7d4
DK
240 if [ "$1" = 'prefix' ]; then
241 CURRENTTRAP="$2 $CURRENTTRAP"
242 else
243 CURRENTTRAP="$CURRENTTRAP $1"
244 fi
804d4a0d 245 trap "shellsetedetector; $CURRENTTRAP exitwithstatus;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
b720d0bd 246}
8d876415
DK
247
248setupenvironment() {
0d303f17
DK
249 # privilege dropping and testing doesn't work if /tmp isn't world-writeable (as e.g. with libpam-tmpdir)
250 if [ -n "$TMPDIR" ] && [ "$(id -u)" = '0' ] && [ "$(stat --format '%a' "$TMPDIR")" != '1777' ]; then
251 unset TMPDIR
252 fi
63c71412
DK
253 TMPWORKINGDIRECTORY="$(mktemp -d)"
254 addtrap "cd /; rm -rf \"$TMPWORKINGDIRECTORY\";"
255 msgninfo "Preparing environment for ${0##*/} in ${TMPWORKINGDIRECTORY}…"
5c0dd6fc 256
03aa0847 257 mkdir -m 700 "${TMPWORKINGDIRECTORY}/downloaded"
68ba0b7f
DK
258 if [ "$(id -u)" = '0' ]; then
259 # relax permissions so that running as root with user switching works
260 umask 022
03aa0847
DK
261 chmod 711 "$TMPWORKINGDIRECTORY"
262 chown _apt:root "${TMPWORKINGDIRECTORY}/downloaded"
68ba0b7f
DK
263 fi
264
63c71412 265 TESTDIRECTORY="$(readlink -f "$(dirname $0)")"
5c0dd6fc 266 # allow overriding the default BUILDDIR location
63c71412
DK
267 SOURCEDIRECTORY="${APT_INTEGRATION_TESTS_SOURCE_DIR:-"${TESTDIRECTORY}/../../"}"
268 BUILDDIRECTORY="${APT_INTEGRATION_TESTS_BUILD_DIR:-"${TESTDIRECTORY}/../../build/bin"}"
269 LIBRARYPATH="${APT_INTEGRATION_TESTS_LIBRARY_PATH:-"${BUILDDIRECTORY}"}"
270 METHODSDIR="${APT_INTEGRATION_TESTS_METHODS_DIR:-"${BUILDDIRECTORY}/methods"}"
271 APTHELPERBINDIR="${APT_INTEGRATION_TESTS_LIBEXEC_DIR:-"${BUILDDIRECTORY}"}"
272 APTWEBSERVERBINDIR="${APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR:-"${BUILDDIRECTORY}"}"
273 APTINTERNALSOLVER="${APT_INTEGRATION_TESTS_INTERNAL_SOLVER:-"${BUILDDIRECTORY}/apt-internal-solver"}"
274 APTDUMPSOLVER="${APT_INTEGRATION_TESTS_DUMP_SOLVER:-"${BUILDDIRECTORY}/apt-dump-solver"}"
8d876415 275 test -x "${BUILDDIRECTORY}/apt-get" || msgdie "You need to build tree first"
5c0dd6fc
MV
276 # -----
277
63c71412 278 cd "$TMPWORKINGDIRECTORY"
cd725954 279 mkdir rootdir aptarchive keys
8d876415 280 cd rootdir
b29c3712 281 mkdir -p etc/apt/apt.conf.d etc/apt/sources.list.d etc/apt/trusted.gpg.d etc/apt/preferences.d
8fe964f1 282 mkdir -p usr/bin var/cache var/lib var/log tmp
cffea9af 283 mkdir -p var/lib/dpkg/info var/lib/dpkg/updates var/lib/dpkg/triggers
cd725954 284 touch var/lib/dpkg/available
8d876415 285 mkdir -p usr/lib/apt
63c71412 286 ln -s "${METHODSDIR}" usr/lib/apt/methods
1f6cf9e7
DK
287 if [ "$BUILDDIRECTORY" = "$LIBRARYPATH" ]; then
288 mkdir -p usr/lib/apt/solvers
289 ln -s "${BUILDDIRECTORY}/apt-dump-solver" usr/lib/apt/solvers/dump
290 ln -s "${BUILDDIRECTORY}/apt-internal-solver" usr/lib/apt/solvers/apt
291 echo "Dir::Bin::Solvers \"${TMPWORKINGDIRECTORY}/rootdir/usr/lib/apt/solvers\";" > etc/apt/apt.conf.d/externalsolver.conf
292 fi
291a386f
MV
293 # use the autoremove from the BUILDDIRECTORY if its there, otherwise
294 # system
63c71412
DK
295 if [ -e "${BUILDDIRECTORY}/../../debian/apt.conf.autoremove" ]; then
296 ln -s "${BUILDDIRECTORY}/../../debian/apt.conf.autoremove" etc/apt/apt.conf.d/01autoremove
291a386f
MV
297 else
298 ln -s /etc/apt/apt.conf.d/01autoremove etc/apt/apt.conf.d/01autoremove
299 fi
8d876415 300 cd ..
63c71412
DK
301 local BASENAME="${0##*/}"
302 local PACKAGESFILE="Packages-${BASENAME#*-}"
53ea1b56
DK
303 if [ -f "${TESTDIRECTORY}/${PACKAGESFILE}" ]; then
304 cp "${TESTDIRECTORY}/${PACKAGESFILE}" aptarchive/Packages
8f8169ac 305 fi
63c71412 306 local SOURCESSFILE="Sources-${BASENAME#*-}"
53ea1b56
DK
307 if [ -f "${TESTDIRECTORY}/${SOURCESSFILE}" ]; then
308 cp "${TESTDIRECTORY}/${SOURCESSFILE}" aptarchive/Sources
8f8169ac 309 fi
63c71412
DK
310 for key in $(find "$TESTDIRECTORY" -name '*.pub' -o -name '*.sec'); do
311 cp "$key" keys/
312 chmod 644 "$key"
313 done
314 ln -s "${TMPWORKINGDIRECTORY}/keys/joesixpack.pub" rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
d6cf2345 315
cffea9af 316 echo "Dir \"${TMPWORKINGDIRECTORY}/rootdir\";" > aptconfig.conf
94eb3bee 317 echo "Dir::state::status \"${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg/status\";" >> aptconfig.conf
8d876415 318 echo "APT::Get::Show-User-Simulation-Note \"false\";" >> aptconfig.conf
9d2a8a73 319 echo "Dir::Bin::Methods \"${TMPWORKINGDIRECTORY}/rootdir/usr/lib/apt/methods\";" >> aptconfig.conf
23e64f6d
DK
320 # either store apt-key were we can access it, even if we run it as a different user
321 #cp "${BUILDDIRECTORY}/apt-key" "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/"
322 #chmod o+rx "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/apt-key"
323 #echo "Dir::Bin::apt-key \"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/apt-key\";" >> aptconfig.conf
324 # destroys coverage reporting though, so we disable changing user for the calling gpgv
325 echo "Dir::Bin::apt-key \"${BUILDDIRECTORY}/apt-key\";" >> aptconfig.conf
68ba0b7f 326 if [ "$(id -u)" = '0' ]; then
23e64f6d 327 echo 'Binary::gpgv::Debug::NoDropPrivs "true";' >>aptconfig.conf
68ba0b7f 328 fi
b0be0e09 329
63c71412 330 cat > "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" <<EOF
b0be0e09
DK
331#!/bin/sh
332set -e
333if [ -r "${TMPWORKINGDIRECTORY}/noopchroot.so" ]; then
63c71412
DK
334 if [ -n "\$LD_LIBRARY_PATH" ]; then
335 export LD_LIBRARY_PATH="${TMPWORKINGDIRECTORY}:${LD_LIBRARY_PATH}"
b0be0e09 336 else
63c71412 337 export LD_LIBRARY_PATH="${TMPWORKINGDIRECTORY}"
b0be0e09 338 fi
921a9626 339 if [ -n "\$LD_PRELOAD" ]; then
63c71412 340 export LD_PRELOAD="noopchroot.so \${LD_PRELOAD}"
921a9626 341 else
63c71412 342 export LD_PRELOAD="noopchroot.so"
921a9626
DK
343 fi
344fi
63c71412
DK
345EOF
346 cp "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg"
347 cat >> "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" <<EOF
348exec fakeroot "${DPKG:-dpkg}" --root="${TMPWORKINGDIRECTORY}/rootdir" \\
349 --log="${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log" \\
350 --force-not-root --force-bad-path "\$@"
351EOF
352 cat >> "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg" <<EOF
921a9626 353exec fakeroot gdb --quiet -ex run "${DPKG:-dpkg}" --args "${DPKG:-dpkg}" --root="${TMPWORKINGDIRECTORY}/rootdir" \\
63c71412 354 --log="${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log" \\
b0be0e09
DK
355 --force-not-root --force-bad-path "\$@"
356EOF
921a9626 357 chmod +x "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg"
b0be0e09
DK
358 echo "Dir::Bin::dpkg \"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg\";" > rootdir/etc/apt/apt.conf.d/99dpkg
359
533fe3d1
DK
360 {
361 if ! command dpkg --assert-multi-arch >/dev/null 2>&1; then
362 echo "DPKG::options:: \"--force-architecture\";" # Added to test multiarch before dpkg is ready for it…
363 fi
364 echo 'quiet::NoUpdate "true";'
365 echo 'quiet::NoStatistic "true";'
366 # too distracting for users, but helpful to detect changes
367 echo 'Acquire::Progress::Ignore::ShowErrorText "true";'
368 echo 'Acquire::Progress::Diffpercent "true";'
369 # in testcases, it can appear as if localhost has a rotation setup,
370 # hide this as we can't really deal with it properly
371 echo 'Acquire::Failure::ShowIP "false";'
372 } >> aptconfig.conf
d6cf2345 373
68ba0b7f
DK
374 cp "${TESTDIRECTORY}/apt.pem" "${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem"
375 if [ "$(id -u)" = '0' ]; then
376 chown _apt:root "${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem"
377 fi
378 echo "Acquire::https::CaInfo \"${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem\";" > rootdir/etc/apt/apt.conf.d/99https
d6cf2345 379 echo "Apt::Cmd::Disable-Script-Warning \"1\";" > rootdir/etc/apt/apt.conf.d/apt-binary
23d35ec1 380 echo 'Acquire::Connect::AddrConfig "false";' > rootdir/etc/apt/apt.conf.d/connect-addrconfig
276e51dd 381 configcompression '.' 'gz' #'bz2' 'lzma' 'xz'
c5ede4ca 382 confighashes 'SHA1' # these are tests, not security best-practices
77a45beb 383
4bb006d1
DK
384 # create some files in /tmp and look at user/group to get what this means
385 TEST_DEFAULT_USER="$USER"
386 if [ "$(uname)" = 'GNU/kFreeBSD' ]; then
387 TEST_DEFAULT_GROUP='root'
388 else
389 TEST_DEFAULT_GROUP="$USER"
390 fi
391
ce7f128c 392 # cleanup the environment a bit
995a4bf6 393 # prefer our apt binaries over the system apt binaries
8c617819 394 export PATH="${BUILDDIRECTORY}:${PATH}:/usr/local/sbin:/usr/sbin:/sbin"
be233796 395 export LC_ALL=C.UTF-8
3b8eb3bc 396 unset LANGUAGE APT_CONFIG
ce7f128c 397 unset GREP_OPTIONS DEB_BUILD_PROFILES
8d876415
DK
398 msgdone "info"
399}
400
ea65d079
DK
401getarchitecture() {
402 if [ "$1" = "native" -o -z "$1" ]; then
403 eval `aptconfig shell ARCH APT::Architecture`
404 if [ -n "$ARCH" ]; then
405 echo $ARCH
406 else
5834d7a1 407 dpkg --print-architecture
ea65d079
DK
408 fi
409 else
410 echo $1
411 fi
412}
413
53ea1b56 414getarchitectures() {
081c9d44 415 aptconfig dump --no-empty --format '%v%n' APT::Architecture APT::Architectures | sort -u | tr '\n' ' '
53ea1b56
DK
416}
417
3dcdc1f9
DK
418getarchitecturesfromcommalist() {
419 echo "$1" | sed -e 's#,#\n#g' | sed -e "s/^native\$/$(getarchitecture 'native')/"
420}
421
8d876415 422configarchitecture() {
18908589
DK
423 {
424 echo "APT::Architecture \"$(getarchitecture $1)\";"
425 while [ -n "$1" ]; do
426 echo "APT::Architectures:: \"$(getarchitecture $1)\";"
427 shift
428 done
429 } >rootdir/etc/apt/apt.conf.d/01multiarch.conf
53ea1b56
DK
430 configdpkg
431}
432
433configdpkg() {
434 if [ ! -e rootdir/var/lib/dpkg/status ]; then
63c71412
DK
435 local BASENAME="${0##*/}"
436 local STATUSFILE="status-${BASENAME#*-}"
53ea1b56
DK
437 if [ -f "${TESTDIRECTORY}/${STATUSFILE}" ]; then
438 cp "${TESTDIRECTORY}/${STATUSFILE}" rootdir/var/lib/dpkg/status
439 else
440 echo -n > rootdir/var/lib/dpkg/status
441 fi
442 fi
18908589 443 rm -f rootdir/etc/apt/apt.conf.d/00foreigndpkg
846856f4 444 if command dpkg --assert-multi-arch >/dev/null 2>&1 ; then
53ea1b56
DK
445 local ARCHS="$(getarchitectures)"
446 if echo "$ARCHS" | grep -E -q '[^ ]+ [^ ]+'; then
447 DPKGARCH="$(dpkg --print-architecture)"
448 for ARCH in ${ARCHS}; do
feae193b 449 if [ "${ARCH}" != "${DPKGARCH}" ]; then
18908589 450 if ! dpkg --add-architecture ${ARCH} >/dev/null 2>&1; then
feae193b 451 # old-style used e.g. in Ubuntu-P – and as it seems travis
18908589
DK
452 echo "DPKG::options:: \"--foreign-architecture\";" >> rootdir/etc/apt/apt.conf.d/00foreigndpkg
453 echo "DPKG::options:: \"${ARCH}\";" >> rootdir/etc/apt/apt.conf.d/00foreigndpkg
feae193b
DK
454 fi
455 fi
53ea1b56
DK
456 done
457 if [ "0" = "$(dpkg -l dpkg 2> /dev/null | grep '^i' | wc -l)" ]; then
05343a22
DK
458 # dpkg doesn't really check the version as long as it is fully installed,
459 # but just to be sure we choose one above the required version
460 insertinstalledpackage 'dpkg' "all" '1.16.2+fake'
53ea1b56
DK
461 fi
462 fi
463 fi
8d876415
DK
464}
465
0c787570
DK
466configdpkgnoopchroot() {
467 # create a library to noop chroot() and rewrite maintainer script executions
468 # via execvp() as used by dpkg as we don't want our rootdir to be a fullblown
469 # chroot directory dpkg could chroot into to execute the maintainer scripts
470 msgtest 'Building library to preload to make maintainerscript work in' 'dpkg'
63c71412 471 cat > noopchroot.c << EOF
0c787570
DK
472#define _GNU_SOURCE
473#include <stdio.h>
474#include <stdlib.h>
475#include <string.h>
476#include <dlfcn.h>
477
478static char * chrootdir = NULL;
479
480int chroot(const char *path) {
481 printf("WARNING: CHROOTing to %s was ignored!\n", path);
482 free(chrootdir);
483 chrootdir = strdup(path);
484 return 0;
485}
486int execvp(const char *file, char *const argv[]) {
487 static int (*func_execvp) (const char *, char * const []) = NULL;
488 if (func_execvp == NULL)
489 func_execvp = (int (*) (const char *, char * const [])) dlsym(RTLD_NEXT, "execvp");
490 if (chrootdir == NULL || strncmp(file, "/var/lib/dpkg/", strlen("/var/lib/dpkg/")) != 0)
491 return func_execvp(file, argv);
492 printf("REWRITE execvp call %s into %s\n", file, chrootdir);
493 char newfile[strlen(chrootdir) + strlen(file)];
494 strcpy(newfile, chrootdir);
495 strcat(newfile, file);
b0be0e09
DK
496 char const * const baseadmindir = "/var/lib/dpkg";
497 char admindir[strlen(chrootdir) + strlen(baseadmindir)];
498 strcpy(admindir, chrootdir);
499 strcat(admindir, baseadmindir);
500 setenv("DPKG_ADMINDIR", admindir, 1);
0c787570
DK
501 return func_execvp(newfile, argv);
502}
503EOF
504 testsuccess --nomsg gcc -fPIC -shared -o noopchroot.so noopchroot.c -ldl
0c787570 505}
276e51dd
DK
506configcompression() {
507 while [ -n "$1" ]; do
508 case "$1" in
3c528b91
MO
509 '.') printf ".\t.\tcat\n";;
510 'gz') printf "gzip\tgz\tgzip\n";;
511 'bz2') printf "bzip2\tbz2\tbzip2\n";;
512 'lzma') printf "lzma\tlzma\txz --format=lzma\n";;
513 'xz') printf "xz\txz\txz\n";;
514 *) printf "$1\t$1\t$1\n";;
276e51dd
DK
515 esac
516 shift
63c71412 517 done > "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf"
276e51dd 518}
c5ede4ca
DK
519confighashes() {
520 {
521 echo 'APT::FTPArchive {'
522 {
523 while [ -n "$1" ]; do
524 printf "$1" | tr 'a-z' 'A-Z'
525 printf "\t\"true\";\n"
526 shift
527 done
528 for h in 'MD5' 'SHA1' 'SHA256' 'SHA512'; do
529 printf "$h\t\"false\";\n"
530 done
531 } | awk '!x[$1]++'
532 echo '};'
533 } >> "${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/ftparchive-hashes.conf"
534}
5f982b9d
DK
535forcecompressor() {
536 COMPRESSOR="$1"
537 COMPRESSOR_CMD="$1"
538 case $COMPRESSOR in
539 gzip) COMPRESS='gz';;
540 bzip2) COMPRESS='bz2';;
541 lzma) COMPRESS='lzma';;
542 xz) COMPRESS='xz';;
543 *) msgdie "Compressor $COMPRESSOR is unknown to framework, so can't be forced by forcecompressor!";;
544 esac
545 local CONFFILE="${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/00force-compressor"
546 echo "Acquire::CompressionTypes::Order { \"${COMPRESS}\"; };
547Dir::Bin::uncompressed \"/does/not/exist\";
548Dir::Bin::gzip \"/does/not/exist\";
549Dir::Bin::bzip2 \"/does/not/exist\";
550Dir::Bin::lzma \"/does/not/exist\";
551Dir::Bin::xz \"/does/not/exist\";" > "$CONFFILE"
552 if [ -e "/bin/${COMPRESSOR}" ]; then
553 echo "Dir::Bin::${COMPRESSOR} \"/bin/${COMPRESSOR}\";" >> "$CONFFILE"
554 elif [ -e "/usr/bin/${COMPRESSOR}" ]; then
555 echo "Dir::Bin::${COMPRESSOR} \"/usr/bin/${COMPRESSOR}\";" >> "$CONFFILE"
556 elif [ "${COMPRESSOR}" = 'lzma' ]; then
557 echo 'Dir::Bin::xz "/usr/bin/xz";' >> "$CONFFILE"
558 COMPRESSOR_CMD='xz --format=lzma'
559 else
560 msgtest 'Test for availability of compressor' "${COMPRESSOR}"
68042532 561 msgfail "${COMPRESSOR} not available"
5f982b9d
DK
562 fi
563}
564
75954ae2 565setupsimplenativepackage() {
ce9864a8
DK
566 local NAME="$1"
567 local ARCH="$2"
568 local VERSION="$3"
569 local RELEASE="${4:-unstable}"
570 local DEPENDENCIES="$5"
14109555 571 local DESCRIPTION="${6:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
18908589
DK
572 If you find such a package installed on your system,
573 something went horribly wrong! They are autogenerated
574 und used only by testcases and surf no other propose…"}"
575
b7899b00
DK
576 local SECTION="${7:-others}"
577 local DISTSECTION
63c71412 578 if [ "$SECTION" = "${SECTION#*/}" ]; then
b7899b00
DK
579 DISTSECTION="main"
580 else
63c71412 581 DISTSECTION="${SECTION%/*}"
b7899b00 582 fi
ce9864a8
DK
583 local BUILDDIR=incoming/${NAME}-${VERSION}
584 mkdir -p ${BUILDDIR}/debian/source
585 cd ${BUILDDIR}
586 echo "* most suckless software product ever" > FEATURES
b7899b00
DK
587 test -e debian/copyright || echo "Copyleft by Joe Sixpack $(date +%Y)" > debian/copyright
588 test -e debian/changelog || echo "$NAME ($VERSION) $RELEASE; urgency=low
ce9864a8
DK
589
590 * Initial release
591
b7899b00
DK
592 -- Joe Sixpack <joe@example.org> $(date -R)" > debian/changelog
593 test -e debian/control || echo "Source: $NAME
594Section: $SECTION
ce9864a8
DK
595Priority: optional
596Maintainer: Joe Sixpack <joe@example.org>
597Build-Depends: debhelper (>= 7)
598Standards-Version: 3.9.1
599
875bcb36
DK
600Package: $NAME" > debian/control
601 if [ "$ARCH" = 'all' ]; then
602 echo "Architecture: all" >> debian/control
603 else
604 echo "Architecture: any" >> debian/control
605 fi
ce9864a8 606 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> debian/control
18908589
DK
607 echo "Description: $DESCRIPTION" >> debian/control
608
b7899b00
DK
609 test -e debian/compat || echo "7" > debian/compat
610 test -e debian/source/format || echo "3.0 (native)" > debian/source/format
ce9864a8 611 test -e debian/rules || cp /usr/share/doc/debhelper/examples/rules.tiny debian/rules
75954ae2
DK
612 cd - > /dev/null
613}
614
615buildsimplenativepackage() {
616 local NAME="$1"
d56e2917
DK
617 local NM
618 if [ "$(echo "$NAME" | cut -c 1-3)" = 'lib' ]; then
619 NM="$(echo "$NAME" | cut -c 1-4)"
620 else
621 NM="$(echo "$NAME" | cut -c 1)"
622 fi
75954ae2
DK
623 local ARCH="$2"
624 local VERSION="$3"
625 local RELEASE="${4:-unstable}"
626 local DEPENDENCIES="$5"
14109555 627 local DESCRIPTION="${6:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
18908589
DK
628 If you find such a package installed on your system,
629 something went horribly wrong! They are autogenerated
630 und used only by testcases and surf no other propose…"}"
631
75954ae2 632 local SECTION="${7:-others}"
d67004e0 633 local PRIORITY="${8:-optional}"
63c71412
DK
634 local FILE_TREE="$9"
635 local COMPRESS_TYPE="${10:-gzip}"
75954ae2 636 local DISTSECTION
63c71412 637 if [ "$SECTION" = "${SECTION#*/}" ]; then
75954ae2
DK
638 DISTSECTION="main"
639 else
63c71412 640 DISTSECTION="${SECTION%/*}"
75954ae2 641 fi
63c71412 642 local BUILDDIR="${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}"
b761356f 643
0c787570 644 msgtest "Build source package in version ${VERSION} for ${RELEASE} in ${DISTSECTION}" "$NAME"
63c71412
DK
645 mkdir -p "$BUILDDIR/debian/source"
646 echo "* most suckless software product ever" > "${BUILDDIR}/FEATURES"
b761356f 647 echo "#!/bin/sh
63c71412 648echo '$NAME says \"Hello!\"'" > "${BUILDDIR}/${NAME}"
b761356f 649
63c71412 650 echo "Copyleft by Joe Sixpack $(date +%Y)" > "${BUILDDIR}/debian/copyright"
b761356f
DK
651 echo "$NAME ($VERSION) $RELEASE; urgency=low
652
653 * Initial release
654
63c71412
DK
655 -- Joe Sixpack <joe@example.org> $(date -R)" > "${BUILDDIR}/debian/changelog"
656 {
657 echo "Source: $NAME
d67004e0 658Priority: $PRIORITY
b761356f 659Maintainer: Joe Sixpack <joe@example.org>
63c71412
DK
660Standards-Version: 3.9.3"
661 if [ "$SECTION" != '<none>' ]; then
662 echo "Section: $SECTION"
663 fi
664 local BUILDDEPS="$(echo "$DEPENDENCIES" | grep '^Build-')"
665 test -z "$BUILDDEPS" || echo "$BUILDDEPS"
666 echo "
667Package: $NAME"
b761356f 668
63c71412
DK
669 if [ "$ARCH" = 'all' ]; then
670 echo "Architecture: all"
671 else
672 echo "Architecture: any"
673 fi
674 local DEPS="$(echo "$DEPENDENCIES" | grep -v '^Build-')"
675 test -z "$DEPS" || echo "$DEPS"
676 echo "Description: $DESCRIPTION"
677 } > "${BUILDDIR}/debian/control"
01f520ce 678
63c71412
DK
679 echo '3.0 (native)' > "${BUILDDIR}/debian/source/format"
680 cd "${BUILDDIR}/.."
0c787570
DK
681 testsuccess --nomsg dpkg-source -b ${NAME}-${VERSION}
682 cd - >/dev/null
63c71412 683 sed -n 's#^dpkg-source: info: building [^ ]\+ in ##p' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testsuccess.output" \
f1828b69 684 | while read SRC; do
63c71412 685 echo "pool/${SRC}" >> "${BUILDDIR}/../${RELEASE}.${DISTSECTION}.srclist"
f1828b69 686# if expr match "${SRC}" '.*\.dsc' >/dev/null 2>&1; then
33a22672 687# aptkey --keyring ./keys/joesixpack.pub --secret-keyring ./keys/joesixpack.sec --quiet --readonly \
bd7fb5aa 688# adv --yes --default-key 'Joe Sixpack' \
f1828b69
DK
689# --clearsign -o "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC"
690# mv "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC"
691# fi
b761356f 692 done
84aa13f4 693
3dcdc1f9 694 for arch in $(getarchitecturesfromcommalist "$ARCH"); do
0c787570 695 msgtest "Build binary package for ${RELEASE} in ${SECTION}" "$NAME"
63c71412
DK
696 rm -rf "${BUILDDIR}/debian/tmp"
697 mkdir -p "${BUILDDIR}/debian/tmp/DEBIAN" "${BUILDDIR}/debian/tmp/usr/share/doc/${NAME}" "${BUILDDIR}/debian/tmp/usr/bin"
698 cp "${BUILDDIR}/debian/copyright" "${BUILDDIR}/debian/changelog" "${BUILDDIR}/FEATURES" "${BUILDDIR}/debian/tmp/usr/share/doc/${NAME}"
699 cp "${BUILDDIR}/${NAME}" "${BUILDDIR}/debian/tmp/usr/bin/${NAME}-${arch}"
42c1513b 700 if [ -n "$FILE_TREE" ]; then
63c71412 701 cp -ar "$FILE_TREE" "${BUILDDIR}/debian/tmp"
42c1513b 702 fi
42c1513b 703
63c71412
DK
704 (cd "${BUILDDIR}"; dpkg-gencontrol -DArchitecture=$arch)
705 (cd "${BUILDDIR}/debian/tmp"; md5sum $(find usr/ -type f) > DEBIAN/md5sums)
846856f4 706 local LOG="${BUILDDIR}/../${NAME}_${VERSION}_${arch}.dpkg-deb.log"
d56e2917 707 # ensure the right permissions as dpkg-deb insists
63c71412
DK
708 chmod 755 "${BUILDDIR}/debian/tmp/DEBIAN"
709 testsuccess --nomsg dpkg-deb -Z${COMPRESS_TYPE} --build "${BUILDDIR}/debian/tmp" "${BUILDDIR}/.."
710 echo "pool/${NAME}_${VERSION}_${arch}.deb" >> "${BUILDDIR}/../${RELEASE}.${DISTSECTION}.pkglist"
84aa13f4
DK
711 done
712
d56e2917 713 local CHANGEPATH="${BUILDDIR}/../${DISTSECTION}/${NM}/${NAME}/${NAME}_${VERSION}"
63c71412
DK
714 mkdir -p "$CHANGEPATH"
715 cp "${BUILDDIR}/debian/changelog" "$CHANGEPATH"
5a635ee4 716 rm -rf "${BUILDDIR}"
b761356f 717 msgdone "info"
75954ae2
DK
718}
719
720buildpackage() {
721 local BUILDDIR=$1
722 local RELEASE=$2
723 local SECTION=$3
ea65d079 724 local ARCH=$(getarchitecture $4)
846856f4
DK
725 local PKGNAME="$(echo "$BUILDDIR" | grep -o '[^/]*$')"
726 local BUILDLOG="$(readlink -f "${BUILDDIR}/../${PKGNAME}_${RELEASE}_${SECTION}.dpkg-bp.log")"
0c787570 727 msgtest "Build package for ${RELEASE} in ${SECTION}" "$PKGNAME"
63c71412 728 cd "$BUILDDIR"
75954ae2
DK
729 if [ "$ARCH" = "all" ]; then
730 ARCH="$(dpkg-architecture -qDEB_HOST_ARCH 2> /dev/null)"
731 fi
0c787570 732 testsuccess --nomsg dpkg-buildpackage -uc -us -a$ARCH
63c71412
DK
733 cp "${TMPWORKINGDIRECTORY}/rootdir/tmp/testsuccess.output" "$BUILDLOG"
734 local PKGS="$(grep '^dpkg-deb: building package' "$BUILDLOG" | cut -d'/' -f 2 | sed -e "s#'\.##")"
735 local SRCS="$(grep '^dpkg-source: info: building' "$BUILDLOG" | grep -o '[a-z0-9._+~-]*$')"
ce9864a8 736 cd - > /dev/null
b7899b00 737 for PKG in $PKGS; do
63c71412 738 echo "pool/${PKG}" >> "${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.pkglist"
b7899b00
DK
739 done
740 for SRC in $SRCS; do
63c71412 741 echo "pool/${SRC}" >> "${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.srclist"
b7899b00 742 done
ce9864a8
DK
743}
744
745buildaptarchive() {
ce9864a8 746 if [ -d incoming ]; then
846856f4 747 buildaptarchivefromincoming "$@"
ce9864a8 748 else
846856f4 749 buildaptarchivefromfiles "$@"
ce9864a8
DK
750 fi
751}
752
753createaptftparchiveconfig() {
63c71412 754 local COMPRESSORS="$(cut -d' ' -f 1 "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf" | tr '\n' ' ')"
016bea82
DK
755 local COMPRESSORS="${COMPRESSORS%* }"
756 local ARCHS="$(getarchitectures)"
c5ede4ca
DK
757 cat > ftparchive.conf <<EOF
758Dir {
759 ArchiveDir "$(readlink -f .)";
760 CacheDir "$(readlink -f ..)";
761 FileListDir "$(readlink -f pool/)";
b7899b00
DK
762};
763Default {
c5ede4ca
DK
764 Packages::Compress "$COMPRESSORS";
765 Sources::Compress "$COMPRESSORS";
766 Contents::Compress "$COMPRESSORS";
767 Translation::Compress "$COMPRESSORS";
18331adf 768 LongDescription "false";
ce9864a8
DK
769};
770TreeDefault {
771 Directory "pool/";
772 SrcDirectory "pool/";
773};
c5ede4ca 774EOF
b7899b00 775 for DIST in $(find ./pool/ -maxdepth 1 -name '*.pkglist' -type f | cut -d'/' -f 3 | cut -d'.' -f 1 | sort | uniq); do
63c71412
DK
776 cat <<EOF
777tree "dists/$DIST" {
1dd20368 778 Architectures "$ARCHS all source";
63c71412
DK
779 FileList "${DIST}.\$(SECTION).pkglist";
780 SourceFileList "${DIST}.\$(SECTION).srclist";
781 Sections "$(find ./pool/ -maxdepth 1 -name "${DIST}.*.pkglist" -type f | cut -d'/' -f 3 | cut -d'.' -f 2 | sort | uniq | tr '\n' ' ')";
782};
783EOF
784 done >> ftparchive.conf
ce9864a8
DK
785}
786
787buildaptftparchivedirectorystructure() {
b7899b00
DK
788 local DISTS="$(grep -i '^tree ' ftparchive.conf | cut -d'/' -f 2 | sed -e 's#".*##')"
789 for DIST in $DISTS; do
790 local SECTIONS="$(grep -i -A 5 "dists/$DIST" ftparchive.conf | grep -i 'Sections' | cut -d'"' -f 2)"
791 for SECTION in $SECTIONS; do
792 local ARCHS="$(grep -A 5 "dists/$DIST" ftparchive.conf | grep Architectures | cut -d'"' -f 2 | sed -e 's#source##')"
793 for ARCH in $ARCHS; do
63c71412 794 mkdir -p "dists/${DIST}/${SECTION}/binary-${ARCH}"
b7899b00 795 done
63c71412
DK
796 mkdir -p "dists/${DIST}/${SECTION}/source"
797 mkdir -p "dists/${DIST}/${SECTION}/i18n"
b7899b00 798 done
ce9864a8 799 done
ce9864a8
DK
800}
801
9b78cda6 802insertpackage() {
10e100e5 803 local RELEASES="$1"
9b78cda6
DK
804 local NAME="$2"
805 local ARCH="$3"
806 local VERSION="$4"
807 local DEPENDENCIES="$5"
d67004e0 808 local PRIORITY="${6:-optional}"
10e100e5 809 local DESCRIPTION="${7:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASES}
18908589
DK
810 If you find such a package installed on your system,
811 something went horribly wrong! They are autogenerated
812 und used only by testcases and surf no other propose…"}"
d67004e0 813 local ARCHS=""
10e100e5
DK
814 for RELEASE in $(printf '%s' "$RELEASES" | tr ',' '\n'); do
815 if [ "$RELEASE" = 'installed' ]; then
816 insertinstalledpackage "$2" "$3" "$4" "$5" "$6" "$7"
817 continue
d67004e0 818 fi
10e100e5 819 for arch in $(getarchitecturesfromcommalist "$ARCH"); do
1dd20368 820 if [ "$arch" = 'none' ]; then
10e100e5
DK
821 ARCHS="$(getarchitectures)"
822 else
823 ARCHS="$arch"
824 fi
825 for BUILDARCH in $ARCHS; do
826 local PPATH="aptarchive/dists/${RELEASE}/main/binary-${BUILDARCH}"
63c71412
DK
827 mkdir -p "$PPATH"
828 {
829 echo "Package: $NAME
d67004e0 830Priority: $PRIORITY
9b78cda6 831Section: other
2c085486 832Installed-Size: 42
63c71412
DK
833Maintainer: Joe Sixpack <joe@example.org>"
834 test "$arch" = 'none' || echo "Architecture: $arch"
835 echo "Version: $VERSION
836Filename: pool/main/${NAME}/${NAME}_${VERSION}_${arch}.deb"
837 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES"
838 echo "Description: $(printf '%s' "$DESCRIPTION" | head -n 1)"
839 echo "Description-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)"
840 echo
841 } >> "${PPATH}/Packages"
10e100e5 842 done
d67004e0 843 done
63c71412
DK
844 mkdir -p "aptarchive/dists/${RELEASE}/main/source" "aptarchive/dists/${RELEASE}/main/i18n"
845 touch "aptarchive/dists/${RELEASE}/main/source/Sources"
10e100e5 846 echo "Package: $NAME
0e0d9919
DK
847Description-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)
848Description-en: $DESCRIPTION
63c71412 849" >> "aptarchive/dists/${RELEASE}/main/i18n/Translation-en"
10e100e5 850 done
9b78cda6
DK
851}
852
234675b7
DK
853insertsource() {
854 local RELEASE="$1"
855 local NAME="$2"
856 local ARCH="$3"
857 local VERSION="$4"
858 local DEPENDENCIES="$5"
a8275acf 859 local BINARY="${6:-$NAME}"
234675b7
DK
860 local ARCHS=""
861 local SPATH="aptarchive/dists/${RELEASE}/main/source"
862 mkdir -p $SPATH
863 local FILE="${SPATH}/Sources"
9d2a8a73
DK
864 local DSCFILE="${NAME}_${VERSION}.dsc"
865 local TARFILE="${NAME}_${VERSION}.tar.gz"
234675b7 866 echo "Package: $NAME
a8275acf 867Binary: $BINARY
234675b7
DK
868Version: $VERSION
869Maintainer: Joe Sixpack <joe@example.org>
870Architecture: $ARCH" >> $FILE
63c71412 871 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> "$FILE"
234675b7 872 echo "Files:
63c71412
DK
873 $(echo -n "$DSCFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
874 $(echo -n "$TARFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
55ae7a51 875Checksums-Sha256:
63c71412
DK
876 $(echo -n "$DSCFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
877 $(echo -n "$TARFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
878" >> "$FILE"
234675b7
DK
879}
880
dfc2b1be
DK
881insertinstalledpackage() {
882 local NAME="$1"
883 local ARCH="$2"
884 local VERSION="$3"
885 local DEPENDENCIES="$4"
d67004e0 886 local PRIORITY="${5:-optional}"
d4b4e5ea 887 local STATUS="${6:-install ok installed}"
14109555 888 local DESCRIPTION="${7:-"an autogenerated dummy ${NAME}=${VERSION}/installed
18908589
DK
889 If you find such a package installed on your system,
890 something went horribly wrong! They are autogenerated
891 und used only by testcases and surf no other propose…"}"
892
53ea1b56
DK
893 local FILE='rootdir/var/lib/dpkg/status'
894 local INFO='rootdir/var/lib/dpkg/info'
3dcdc1f9 895 for arch in $(getarchitecturesfromcommalist "$ARCH"); do
d67004e0 896 echo "Package: $NAME
d4b4e5ea 897Status: $STATUS
d67004e0 898Priority: $PRIORITY
dfc2b1be
DK
899Section: other
900Installed-Size: 42
901Maintainer: Joe Sixpack <joe@example.org>
63c71412
DK
902Version: $VERSION" >> "$FILE"
903 test "$arch" = 'none' || echo "Architecture: $arch" >> "$FILE"
904 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> "$FILE"
905 echo "Description: $DESCRIPTION" >> "$FILE"
906 echo >> "$FILE"
53ea1b56 907 if [ "$(dpkg-query -W --showformat='${Multi-Arch}')" = 'same' ]; then
63c71412 908 echo -n > "${INFO}/${NAME}:${arch}.list"
53ea1b56 909 else
63c71412 910 echo -n > "${INFO}/${NAME}.list"
53ea1b56 911 fi
d67004e0 912 done
dfc2b1be
DK
913}
914
915
ce9864a8 916buildaptarchivefromincoming() {
63c71412 917 msginfo "Build APT archive for ${CCMD}${0##*/}${CINFO} based on incoming packages…"
ce9864a8
DK
918 cd aptarchive
919 [ -e pool ] || ln -s ../incoming pool
920 [ -e ftparchive.conf ] || createaptftparchiveconfig
921 [ -e dists ] || buildaptftparchivedirectorystructure
b7899b00 922 msgninfo "\tGenerate Packages, Sources and Contents files… "
31be38d2 923 testsuccess aptftparchive generate ftparchive.conf
ce9864a8
DK
924 cd - > /dev/null
925 msgdone "info"
4dbfe436 926 generatereleasefiles "$@"
ce9864a8
DK
927}
928
929buildaptarchivefromfiles() {
63c71412 930 msginfo "Build APT archive for ${CCMD}${0##*/}${CINFO} based on prebuild files…"
8d041b4f
DK
931 local DIR='aptarchive'
932 if [ -d "${DIR}/dists" ]; then DIR="${DIR}/dists"; fi
933 find "$DIR" -name 'Packages' -o -name 'Sources' -o -name 'Translation-*' | while read line; do
9b78cda6 934 msgninfo "\t${line} file… "
276e51dd 935 compressfile "$line" "$1"
8d876415 936 msgdone "info"
9b78cda6 937 done
e3c62328 938 generatereleasefiles "$@"
9b78cda6
DK
939}
940
276e51dd 941compressfile() {
63c71412 942 cat "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf" | while read compressor extension command; do
276e51dd
DK
943 if [ "$compressor" = '.' ]; then
944 if [ -n "$2" ]; then
945 touch -d "$2" "$1"
946 fi
947 continue
948 fi
949 cat "$1" | $command > "${1}.${extension}"
950 if [ -n "$2" ]; then
951 touch -d "$2" "${1}.${extension}"
952 fi
953 done
954}
955
a3bbbab7 956# can be overridden by testcases for their pleasure
bf9e7447
DK
957getcodenamefromsuite() {
958 case "$1" in
959 unstable) echo 'sid';;
960 *) echo -n "$1";;
961 esac
962}
a3bbbab7 963getreleaseversionfromsuite() { true; }
718f797c 964getlabelfromsuite() { true; }
d56e2917 965getoriginfromsuite() { true; }
1dd20368 966getarchitecturesfromreleasefile() { echo "all $(getarchitectures)"; }
a3bbbab7 967
c5ede4ca
DK
968aptftparchiverelease() {
969 aptftparchive -qq release "$@" | sed -e '/0 Release$/ d' # remove the self reference
970}
9b78cda6 971generatereleasefiles() {
884a4c0a
DK
972 # $1 is the Date header and $2 is the ValidUntil header to be set
973 # both should be given in notation date/touch can understand
1dd20368
DK
974 local DATE="$1"
975 local VALIDUNTIL="$2"
9b78cda6
DK
976 msgninfo "\tGenerate Release files… "
977 if [ -e aptarchive/dists ]; then
978 for dir in $(find ./aptarchive/dists -mindepth 1 -maxdepth 1 -type d); do
1dd20368 979 local ARCHITECTURES="$(getarchitecturesfromreleasefile "$dir")"
a3bbbab7
DK
980 local SUITE="$(echo "$dir" | cut -d'/' -f 4)"
981 local CODENAME="$(getcodenamefromsuite $SUITE)"
982 local VERSION="$(getreleaseversionfromsuite $SUITE)"
718f797c 983 local LABEL="$(getlabelfromsuite $SUITE)"
d56e2917 984 local ORIGIN="$(getoriginfromsuite $SUITE)"
63c71412 985 aptftparchiverelease "$dir" \
884a4c0a
DK
986 -o APT::FTPArchive::Release::Suite="${SUITE}" \
987 -o APT::FTPArchive::Release::Codename="${CODENAME}" \
bc7a59dd
DK
988 -o APT::FTPArchive::Release::Architectures="${ARCHITECTURES}" \
989 -o APT::FTPArchive::Release::Label="${LABEL}" \
990 -o APT::FTPArchive::Release::Origin="${ORIGIN}" \
991 -o APT::FTPArchive::Release::Version="${VERSION}" \
63c71412 992 > "$dir/Release"
a3bbbab7 993 if [ "$SUITE" = "experimental" -o "$SUITE" = "experimental2" ]; then
35faae11 994 sed -i '/^Date: / a\
63c71412 995NotAutomatic: yes' "$dir/Release"
35faae11 996 fi
9b78cda6
DK
997 done
998 else
c5ede4ca 999 aptftparchiverelease ./aptarchive > aptarchive/Release
8d876415 1000 fi
1dd20368 1001 if [ -n "$DATE" -a "$DATE" != "now" ]; then
fe0f7911 1002 for release in $(find ./aptarchive -name 'Release'); do
1dd20368
DK
1003 sed -i "s/^Date: .*$/Date: $(date -d "$DATE" '+%a, %d %b %Y %H:%M:%S %Z')/" "$release"
1004 touch -d "$DATE" "$release"
fe0f7911 1005 done
8d876415 1006 fi
1dd20368 1007 if [ -n "$VALIDUNTIL" ]; then
c5ede4ca 1008 sed -i "/^Date: / a\
1dd20368 1009Valid-Until: $(date -d "$VALIDUNTIL" '+%a, %d %b %Y %H:%M:%S %Z')" $(find ./aptarchive -name 'Release')
c5ede4ca 1010 fi
b7899b00 1011 msgdone "info"
8d876415
DK
1012}
1013
b7899b00 1014setupdistsaptarchive() {
63c71412 1015 local APTARCHIVE="$(readlink -f ./aptarchive | sed 's# #%20#g')"
b7899b00
DK
1016 rm -f root/etc/apt/sources.list.d/apt-test-*-deb.list
1017 rm -f root/etc/apt/sources.list.d/apt-test-*-deb-src.list
1018 for DISTS in $(find ./aptarchive/dists/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 4); do
63c71412 1019 SECTIONS=$(find "./aptarchive/dists/${DISTS}/" -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 5 | tr '\n' ' ')
b7899b00 1020 msgninfo "\tadd deb and deb-src sources.list lines for ${CCMD}${DISTS} ${SECTIONS}${CINFO}… "
63c71412
DK
1021 echo "deb file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb.list"
1022 echo "deb-src file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb-src.list"
b7899b00
DK
1023 msgdone "info"
1024 done
1025}
1026
1027setupflataptarchive() {
63c71412
DK
1028 local APTARCHIVE="$(readlink -f ./aptarchive)"
1029 local APTARCHIVEURI="$(readlink -f ./aptarchive | sed 's# #%20#g')"
1030 if [ -f "${APTARCHIVE}/Packages" ]; then
8d876415 1031 msgninfo "\tadd deb sources.list line… "
63c71412
DK
1032 echo "deb file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
1033 msgdone 'info'
8d876415 1034 else
63c71412 1035 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
8d876415 1036 fi
63c71412 1037 if [ -f "${APTARCHIVE}/Sources" ]; then
8d876415 1038 msgninfo "\tadd deb-src sources.list line… "
63c71412
DK
1039 echo "deb-src file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
1040 msgdone 'info'
8d876415 1041 else
63c71412 1042 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
8d876415 1043 fi
b7899b00
DK
1044}
1045
1046setupaptarchive() {
4dbfe436
DK
1047 local NOUPDATE=0
1048 if [ "$1" = '--no-update' ]; then
1049 NOUPDATE=1
1050 shift
1051 fi
1052 buildaptarchive "$@"
b7899b00
DK
1053 if [ -e aptarchive/dists ]; then
1054 setupdistsaptarchive
1055 else
1056 setupflataptarchive
1057 fi
9d653a6d 1058 signreleasefiles 'Joe Sixpack'
4dbfe436 1059 if [ "1" != "$NOUPDATE" ]; then
5684f71f 1060 testsuccess aptget update -o Debug::pkgAcquire::Worker=true -o Debug::Acquire::gpgv=true
b2ea1a47 1061 fi
8d876415
DK
1062}
1063
f213b6ea
DK
1064signreleasefiles() {
1065 local SIGNER="${1:-Joe Sixpack}"
07cb47e7 1066 local REPODIR="${2:-aptarchive}"
f1e1abd8 1067 local KEY="keys/$(echo "$SIGNER" | tr 'A-Z' 'a-z' | sed 's# ##g')"
33a22672 1068 local GPG="aptkey --quiet --keyring ${KEY}.pub --secret-keyring ${KEY}.sec --readonly adv --batch --yes"
f1e1abd8 1069 msgninfo "\tSign archive with $SIGNER key $KEY… "
29a59c46
DK
1070 local REXKEY='keys/rexexpired'
1071 local SECEXPIREBAK="${REXKEY}.sec.bak"
1072 local PUBEXPIREBAK="${REXKEY}.pub.bak"
1073 if [ "${SIGNER}" = 'Rex Expired' ]; then
1074 # the key is expired, so gpg doesn't allow to sign with and the --faked-system-time
1075 # option doesn't exist anymore (and using faketime would add a new obscure dependency)
1076 # therefore we 'temporary' make the key not expired and restore a backup after signing
63c71412
DK
1077 cp "${REXKEY}.sec" "$SECEXPIREBAK"
1078 cp "${REXKEY}.pub" "$PUBEXPIREBAK"
29a59c46
DK
1079 local SECUNEXPIRED="${REXKEY}.sec.unexpired"
1080 local PUBUNEXPIRED="${REXKEY}.pub.unexpired"
1081 if [ -f "$SECUNEXPIRED" ] && [ -f "$PUBUNEXPIRED" ]; then
63c71412
DK
1082 cp "$SECUNEXPIRED" "${REXKEY}.sec"
1083 cp "$PUBUNEXPIRED" "${REXKEY}.pub"
29a59c46 1084 else
f1e1abd8
DK
1085 if ! printf "expire\n1w\nsave\n" | $GPG --default-key "$SIGNER" --command-fd 0 --edit-key "${SIGNER}" >setexpire.gpg 2>&1; then
1086 cat setexpire.gpg
1087 exit 1
1088 fi
63c71412
DK
1089 cp "${REXKEY}.sec" "$SECUNEXPIRED"
1090 cp "${REXKEY}.pub" "$PUBUNEXPIRED"
29a59c46
DK
1091 fi
1092 fi
63c71412
DK
1093 for RELEASE in $(find "${REPODIR}/" -name Release); do
1094 $GPG --default-key "$SIGNER" --armor --detach-sign --sign --output "${RELEASE}.gpg" "${RELEASE}"
e3c62328 1095 local INRELEASE="$(echo "${RELEASE}" | sed 's#/Release$#/InRelease#')"
63c71412 1096 $GPG --default-key "$SIGNER" --clearsign --output "$INRELEASE" "$RELEASE"
e3c62328 1097 # we might have set a specific date for the Release file, so copy it
63c71412 1098 touch -d "$(stat --format "%y" ${RELEASE})" "${RELEASE}.gpg" "${INRELEASE}"
f213b6ea 1099 done
29a59c46 1100 if [ -f "$SECEXPIREBAK" ] && [ -f "$PUBEXPIREBAK" ]; then
63c71412
DK
1101 mv -f "$SECEXPIREBAK" "${REXKEY}.sec"
1102 mv -f "$PUBEXPIREBAK" "${REXKEY}.pub"
29a59c46 1103 fi
63c71412 1104 msgdone 'info'
f213b6ea
DK
1105}
1106
8eafc759
DK
1107redatereleasefiles() {
1108 local DATE="$(date -d "$1" '+%a, %d %b %Y %H:%M:%S %Z')"
1109 for release in $(find aptarchive/ -name 'Release'); do
63c71412
DK
1110 sed -i "s/^Date: .*$/Date: ${DATE}/" "$release"
1111 touch -d "$DATE" "$release"
8eafc759
DK
1112 done
1113 signreleasefiles "${2:-Joe Sixpack}"
1114}
1115
f2c0ec8b 1116webserverconfig() {
6c0765c0 1117 local WEBSERVER="${3:-http://localhost:${APTHTTPPORT}}"
b0314abb
DK
1118 local NOCHECK=false
1119 if [ "$1" = '--no-check' ]; then
1120 NOCHECK=true
1121 shift
1122 fi
0d58c26a 1123 local DOWNLOG='rootdir/tmp/download-testfile.log'
b0314abb 1124 local STATUS='downloaded/webserverconfig.status'
0d58c26a 1125 rm -f "$STATUS" "$DOWNLOG"
6c0765c0 1126 # very very basic URI encoding
b0314abb
DK
1127 local URI
1128 if [ -n "$2" ]; then
1129 msgtest "Set webserver config option '${1}' to" "$2"
6c0765c0 1130 URI="${WEBSERVER}/_config/set/$(echo "${1}" | sed -e 's/\//%2f/g')/$(echo "${2}" | sed -e 's/\//%2f/g')"
b0314abb
DK
1131 else
1132 msgtest 'Clear webserver config option' "${1}"
6c0765c0 1133 URI="${WEBSERVER}/_config/clear/$(echo "${1}" | sed -e 's/\//%2f/g')"
b0314abb
DK
1134 fi
1135 if downloadfile "$URI" "$STATUS" > "$DOWNLOG"; then
f2c0ec8b
DK
1136 msgpass
1137 else
68042532
DK
1138 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/webserverconfig.output"
1139 cat "$DOWNLOG" "$STATUS" >"$OUTPUT" 2>&1 || true
1140 msgfailoutput '' "$OUTPUT"
f2c0ec8b 1141 fi
b0314abb 1142 $NOCHECK || testwebserverlaststatuscode '200'
f2c0ec8b
DK
1143}
1144
fd46d305 1145rewritesourceslist() {
63c71412 1146 local APTARCHIVE="file://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
af9e40c9 1147 local APTARCHIVE2="copy://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
fd46d305 1148 for LIST in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
af9e40c9
DK
1149 sed -i $LIST -e "s#$APTARCHIVE#${1}#" -e "s#$APTARCHIVE2#${1}#" \
1150 -e "s#http://localhost:${APTHTTPPORT}/#${1}#" \
1151 -e "s#https://localhost:${APTHTTPSPORT}/#${1}#"
fd46d305
DK
1152 done
1153}
1154
5572f6bd
MV
1155# wait for up to 10s for a pid file to appear to avoid possible race
1156# when a helper is started and dosn't write the PID quick enough
1157waitforpidfile() {
1158 local PIDFILE="$1"
1159 for i in $(seq 10); do
1160 if test -s "$PIDFILE"; then
1161 return 0
1162 fi
1163 sleep 1
1164 done
1165 msgdie "waiting for $PIDFILE failed"
1166 return 1
1167}
1168
f213b6ea 1169changetowebserver() {
6c0765c0 1170 local REWRITE='no'
23af9f40 1171 if [ "$1" != '--no-rewrite' ]; then
6c0765c0 1172 REWRITE='yes'
23af9f40
DK
1173 else
1174 shift
1175 fi
63c71412 1176 if test -x "${APTWEBSERVERBINDIR}/aptwebserver"; then
fbd29dd6 1177 cd aptarchive
a0db467c 1178 local LOG="webserver.log"
6c0765c0 1179 if ! aptwebserver --port 0 -o aptwebserver::fork=1 -o aptwebserver::portfile='aptwebserver.port' "$@" >$LOG 2>&1 ; then
bee0670b
DK
1180 cat $LOG
1181 false
1182 fi
6c0765c0 1183 waitforpidfile aptwebserver.pid
e3c62328
DK
1184 local PID="$(cat aptwebserver.pid)"
1185 if [ -z "$PID" ]; then
1186 msgdie 'Could not fork aptwebserver successfully'
1187 fi
1188 addtrap "kill $PID;"
6c0765c0
DK
1189 waitforpidfile aptwebserver.port
1190 APTHTTPPORT="$(cat aptwebserver.port)"
1191 if [ -z "$APTHTTPPORT" ]; then
1192 msgdie 'Could not get port for aptwebserver successfully'
1193 fi
fbd29dd6 1194 cd - > /dev/null
c5bcc607 1195 else
fbd29dd6 1196 msgdie 'You have to build aptwerbserver or install a webserver'
f213b6ea 1197 fi
6c0765c0
DK
1198 if [ "$REWRTE" != 'yes' ]; then
1199 rewritesourceslist "http://localhost:${APTHTTPPORT}/"
1200 fi
fd46d305
DK
1201}
1202
1203changetohttpswebserver() {
1204 if ! which stunnel4 >/dev/null; then
1205 msgdie 'You need to install stunnel4 for https testcases'
1206 fi
1207 if [ ! -e "${TMPWORKINGDIRECTORY}/aptarchive/aptwebserver.pid" ]; then
dc95fee1 1208 changetowebserver --no-rewrite "$@"
fd46d305
DK
1209 fi
1210 echo "pid = ${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid
68ba0b7f 1211cert = ${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem
23af9f40 1212output = /dev/null
fd46d305
DK
1213
1214[https]
6c0765c0
DK
1215accept = 0
1216connect = $APTHTTPPORT
63c71412 1217" > "${TMPWORKINGDIRECTORY}/stunnel.conf"
fd46d305 1218 stunnel4 "${TMPWORKINGDIRECTORY}/stunnel.conf"
5572f6bd 1219 waitforpidfile "${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid"
63c71412 1220 local PID="$(cat "${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid")"
5572f6bd
MV
1221 if [ -z "$PID" ]; then
1222 msgdie 'Could not fork stunnel4 successfully'
1223 fi
fd46d305 1224 addtrap 'prefix' "kill ${PID};"
6c0765c0
DK
1225 APTHTTPSPORT="$(lsof -i | awk "/^stunnel4 / && \$2 == \"${PID}\" {print \$9; exit; }" | cut -d':' -f 2)"
1226 webserverconfig 'aptwebserver::port::https' "$APTHTTPSPORT" "https://localhost:${APTHTTPSPORT}"
1227 rewritesourceslist "https://localhost:${APTHTTPSPORT}/"
f213b6ea
DK
1228}
1229
c45233ea
DK
1230changetocdrom() {
1231 mkdir -p rootdir/media/cdrom/.disk
1232 local CD="$(readlink -f rootdir/media/cdrom)"
63c71412
DK
1233 cat > rootdir/etc/apt/apt.conf.d/00cdrom <<EOF
1234acquire::cdrom::mount "${CD}";
1235acquire::cdrom::"${CD}/"::mount "mv ${CD}-unmounted ${CD}";
1236acquire::cdrom::"${CD}/"::umount "mv ${CD} ${CD}-unmounted";
1237acquire::cdrom::autodetect 0;
1238EOF
1239 echo -n "$1" > "${CD}/.disk/info"
c45233ea
DK
1240 if [ ! -d aptarchive/dists ]; then
1241 msgdie 'Flat file archive cdroms can not be created currently'
1242 return 1
1243 fi
a0975c8d 1244 mv aptarchive/dists "$CD"
63c71412 1245 ln -s "$(readlink -f ./incoming)" "$CD/pool"
c45233ea 1246 find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list' -delete
a0975c8d
DK
1247 # start with an unmounted disk
1248 mv "${CD}" "${CD}-unmounted"
1249 # we don't want the disk to be modifiable
63c71412 1250 addtrap 'prefix' "chmod -f -R +w \"$PWD/rootdir/media/cdrom/dists/\" \"$PWD/rootdir/media/cdrom-unmounted/dists/\" || true;"
b0314abb 1251 chmod -R 555 rootdir/media/cdrom-unmounted/dists
c45233ea
DK
1252}
1253
fd46d305 1254downloadfile() {
ed793a19 1255 local PROTO="${1%%:*}"
27925d82 1256 if ! apthelper -o Debug::Acquire::${PROTO}=1 -o Debug::pkgAcquire::Worker=1 \
dcbb364f 1257 download-file "$1" "$2" "$3" 2>&1 ; then
27925d82
DK
1258 return 1
1259 fi
fd46d305 1260 # only if the file exists the download was successful
b0314abb 1261 if [ -r "$2" ]; then
fd46d305
DK
1262 return 0
1263 else
1264 return 1
1265 fi
1266}
1267
f213b6ea 1268checkdiff() {
03aa0847 1269 local DIFFTEXT="$(command diff -u "$@" 2>&1 | sed -e '/^---/ d' -e '/^+++/ d' -e '/^@@/ d')"
8d876415 1270 if [ -n "$DIFFTEXT" ]; then
0d58c26a
DK
1271 echo >&2
1272 echo >&2 "$DIFFTEXT"
8d876415
DK
1273 return 1
1274 else
1275 return 0
1276 fi
1277}
1278
22ac12b2
DK
1279testoutputequal() {
1280 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testoutputequal.output"
1281 local COMPAREFILE="$1"
1282 shift
63c71412 1283 if "$@" 2>&1 | checkdiff "$COMPAREFILE" - >"$OUTPUT" 2>&1; then
22ac12b2
DK
1284 msgpass
1285 else
1286 echo "=== content of file we compared with (${COMPAREFILE}) ===" >>"${OUTPUT}"
1287 cat "$COMPAREFILE" >>"${OUTPUT}"
1288 msgfailoutput '' "$OUTPUT" "$@"
1289 fi
1290}
1291
75954ae2 1292testfileequal() {
1501a2c9 1293 msggroup 'testfileequal'
e6a12ff7
DK
1294 local MSG='Test for correctness of file'
1295 if [ "$1" = '--nomsg' ]; then
1296 MSG=''
1297 shift
1298 fi
75954ae2
DK
1299 local FILE="$1"
1300 shift
e6a12ff7
DK
1301 if [ -n "$MSG" ]; then
1302 msgtest "$MSG" "$FILE"
1303 fi
68042532 1304 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfileequal.output"
75954ae2 1305 if [ -z "$*" ]; then
22ac12b2 1306 testoutputequal "$FILE" echo -n ''
75954ae2 1307 else
22ac12b2 1308 testoutputequal "$FILE" echo "$*"
75954ae2 1309 fi
9beb11aa 1310 msggroup
75954ae2
DK
1311}
1312
b855a400 1313testempty() {
1501a2c9 1314 msggroup 'testempty'
b855a400 1315 msgtest "Test for no output of" "$*"
859093da 1316 local COMPAREFILE="${TMPWORKINGDIRECTORY}/rootdir/tmp/testempty.comparefile"
63c71412 1317 if ("$@" >"$COMPAREFILE" 2>&1 || true) && test ! -s "$COMPAREFILE"; then
859093da
DK
1318 msgpass
1319 else
22ac12b2 1320 msgfailoutput '' "$COMPAREFILE" "$@"
859093da 1321 fi
ab25bf1f 1322 aptautotest 'testempty' "$@"
9beb11aa 1323 msggroup
b855a400 1324}
63c71412
DK
1325testnotempty() {
1326 msggroup 'testnotempty'
1327 msgtest "Test for some output of" "$*"
1328 local COMPAREFILE="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnotempty.comparefile"
1329 if ("$@" >"$COMPAREFILE" 2>&1 || true) && test -s "$COMPAREFILE"; then
1330 msgpass
1331 else
1332 msgfailoutput '' "$COMPAREFILE" "$@"
1333 fi
1334 aptautotest 'testnotempty' "$@"
1335 msggroup
1336}
b855a400 1337
f74a6fa1 1338testequal() {
1501a2c9 1339 msggroup 'testequal'
f74a6fa1
DK
1340 local MSG='Test of equality of'
1341 if [ "$1" = '--nomsg' ]; then
1342 MSG=''
1343 shift
1344 fi
1345
03938280 1346 local COMPAREFILE="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.comparefile"
63c71412 1347 echo "$1" > "$COMPAREFILE"
8d876415 1348 shift
d2d68aaf 1349
f74a6fa1
DK
1350 if [ -n "$MSG" ]; then
1351 msgtest "$MSG" "$*"
1352 fi
22ac12b2 1353 testoutputequal "$COMPAREFILE" "$@"
ab25bf1f 1354 aptautotest 'testequal' "$@"
9beb11aa 1355 msggroup
8d876415
DK
1356}
1357
685625bd 1358testequalor2() {
1501a2c9 1359 msggroup 'testequalor2'
03938280
DK
1360 local COMPAREFILE1="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile1"
1361 local COMPAREFILE2="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile2"
1362 local COMPAREAGAINST="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.compareagainst"
63c71412
DK
1363 echo "$1" > "$COMPAREFILE1"
1364 echo "$2" > "$COMPAREFILE2"
685625bd
DK
1365 shift 2
1366 msgtest "Test for equality OR of" "$*"
63c71412
DK
1367 "$@" >"$COMPAREAGAINST" 2>&1 || true
1368 if checkdiff "$COMPAREFILE1" "$COMPAREAGAINST" >/dev/null 2>&1 || \
1369 checkdiff "$COMPAREFILE2" "$COMPAREAGAINST" >/dev/null 2>&1
0d58c26a 1370 then
0caa5a4c
DK
1371 msgpass
1372 else
68042532
DK
1373 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.output"
1374 echo -n "\n${CINFO}Diff against OR 1${CNORMAL}" >"$OUTPUT" 2>&1
1375 checkdiff "$COMPAREFILE1" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1376 echo -n "${CINFO}Diff against OR 2${CNORMAL}" >"$OUTPUT" 2>&1
1377 checkdiff "$COMPAREFILE2" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1378 msgfailoutput '' "$OUTPUT"
0caa5a4c 1379 fi
ab25bf1f 1380 aptautotest 'testequalor2' "$@"
9beb11aa 1381 msggroup
685625bd
DK
1382}
1383
8d876415 1384testshowvirtual() {
1501a2c9 1385 msggroup 'testshowvirtual'
edc0ef10 1386 local VIRTUAL="N: Can't select versions from package '$1' as it is purely virtual"
8d876415
DK
1387 local PACKAGE="$1"
1388 shift
1389 while [ -n "$1" ]; do
1390 VIRTUAL="${VIRTUAL}
edc0ef10 1391N: Can't select versions from package '$1' as it is purely virtual"
8d876415
DK
1392 PACKAGE="${PACKAGE} $1"
1393 shift
1394 done
1395 msgtest "Test for virtual packages" "apt-cache show $PACKAGE"
1396 VIRTUAL="${VIRTUAL}
4bec02c2 1397N: No packages found"
03938280 1398 local COMPAREFILE="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.comparefile"
ea65d079 1399 local ARCH="$(getarchitecture 'native')"
68042532
DK
1400 echo "$VIRTUAL" | sed -e "s/:$ARCH//" -e 's/:all//' >"$COMPAREFILE"
1401 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.output"
22ac12b2 1402 testoutputequal "$COMPAREFILE" aptcache show -q=0 "$PACKAGE"
9beb11aa 1403 msggroup
8d876415
DK
1404}
1405
1406testnopackage() {
1501a2c9 1407 msggroup 'testnopackage'
8d876415 1408 msgtest "Test for non-existent packages" "apt-cache show $*"
846856f4 1409 local SHOWPKG="$(aptcache show "$@" 2>&1 | grep '^Package: ')"
8d876415 1410 if [ -n "$SHOWPKG" ]; then
68042532
DK
1411 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1412 echo "$SHOWPKG" >"$OUTPUT"
1413 msgfailoutput '' "$OUTPUT"
0d58c26a
DK
1414 else
1415 msgpass
8d876415 1416 fi
9beb11aa 1417 msggroup
8d876415 1418}
01a6e24c 1419
ecb777dd 1420testdpkgstatus() {
1501a2c9 1421 msggroup 'testdpkgstatus'
ecb777dd
DK
1422 local STATE="$1"
1423 local NR="$2"
1424 shift 2
1425 msgtest "Test that $NR package(s) are in state $STATE with" "dpkg -l $*"
1426 local PKGS="$(dpkg -l "$@" 2>/dev/null | grep "^${STATE}" | wc -l)"
1427 if [ "$PKGS" != $NR ]; then
68042532
DK
1428 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1429 echo "$PKGS" >"$OUTPUT"
1430 dpkg -l "$@" | grep '^[a-z]' >"$OUTPUT" >&2 || true
1431 msgfailoutput '' "$OUTPUT"
0d58c26a
DK
1432 else
1433 msgpass
01a6e24c 1434 fi
9beb11aa 1435 msggroup
01a6e24c
DK
1436}
1437
ecb777dd 1438testdpkginstalled() {
1501a2c9 1439 msggroup 'testdpkginstalled'
ecb777dd 1440 testdpkgstatus 'ii' "$#" "$@"
9beb11aa 1441 msggroup
ecb777dd
DK
1442}
1443
5cf733e1 1444testdpkgnotinstalled() {
1501a2c9 1445 msggroup 'testdpkgnotinstalled'
ecb777dd 1446 testdpkgstatus 'ii' '0' "$@"
9beb11aa 1447 msggroup
01a6e24c 1448}
ec7f904e
DK
1449
1450testmarkedauto() {
1501a2c9 1451 msggroup 'testmarkedauto'
03938280 1452 local COMPAREFILE="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedauto.comparefile"
ec7f904e
DK
1453 if [ -n "$1" ]; then
1454 msgtest 'Test for correctly marked as auto-installed' "$*"
63c71412 1455 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
ec7f904e
DK
1456 else
1457 msgtest 'Test for correctly marked as auto-installed' 'no package'
63c71412 1458 echo -n > "$COMPAREFILE"
ec7f904e 1459 fi
22ac12b2 1460 testoutputequal "$COMPAREFILE" aptmark showauto
9beb11aa 1461 msggroup
ec7f904e 1462}
7c2cc4a7 1463testmarkedmanual() {
1501a2c9 1464 msggroup 'testmarkedmanual'
7c2cc4a7
DK
1465 local COMPAREFILE="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedmanual.comparefile"
1466 if [ -n "$1" ]; then
1467 msgtest 'Test for correctly marked as manually installed' "$*"
63c71412 1468 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
7c2cc4a7
DK
1469 else
1470 msgtest 'Test for correctly marked as manually installed' 'no package'
63c71412 1471 echo -n > "$COMPAREFILE"
7c2cc4a7 1472 fi
22ac12b2 1473 testoutputequal "$COMPAREFILE" aptmark showmanual
9beb11aa 1474 msggroup
7c2cc4a7 1475}
89a1aa5d 1476
e52aad52 1477msgfailoutput() {
1501a2c9 1478 msgreportheader 'msgfailoutput'
e52aad52
DK
1479 local MSG="$1"
1480 local OUTPUT="$2"
1481 shift 2
e52aad52 1482 if [ "$1" = 'grep' ]; then
68042532 1483 echo >&2
e52aad52
DK
1484 while [ -n "$2" ]; do shift; done
1485 echo "#### Complete file: $1 ####"
1486 cat >&2 "$1" || true
1487 echo '#### grep output ####'
1488 elif [ "$1" = 'test' ]; then
68042532 1489 echo >&2
e52aad52
DK
1490 # doesn't support ! or non-file flags
1491 msgfailoutputstatfile() {
1492 local FILEFLAGS='^-[bcdefgGhkLOprsStuwx]$'
1493 if expr match "$1" "$FILEFLAGS" >/dev/null; then
1494 echo "#### stat(2) of file: $2 ####"
1495 stat "$2" || true
3196dae8
DK
1496 if test -e "$2"; then
1497 echo "#### Complete file: $2 ####"
1498 cat >&2 "$2" || true
1499 fi
e52aad52
DK
1500 fi
1501 }
1502 msgfailoutputstatfile "$2" "$3"
1503 while [ -n "$5" ] && [ "$4" = '-o' -o "$4" = '-a' ]; do
1504 shift 3
1505 msgfailoutputstatfile "$2" "$3"
1506 done
1507 echo '#### test output ####'
1508 fi
63c71412 1509 cat >&2 "$OUTPUT"
e52aad52
DK
1510 msgfail "$MSG"
1511}
1512
671a55ba
DK
1513testsuccesswithglobalerror() {
1514 local TYPE="$1"
1515 local ERRORS="$2"
1516 shift 2
1517 msggroup "$TYPE"
0440d936
DK
1518 if [ "$1" = '--nomsg' ]; then
1519 shift
1520 else
1521 msgtest 'Test for successful execution of' "$*"
1522 fi
671a55ba 1523 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/${TYPE}.output"
63c71412 1524 if "$@" >"${OUTPUT}" 2>&1; then
4fa34122 1525 if expr match "$1" '^apt.*' >/dev/null; then
e52aad52
DK
1526 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1527 msgfailoutput 'compiler detected undefined behavior' "$OUTPUT" "$@"
671a55ba 1528 elif grep -E "^[${ERRORS}]: " "$OUTPUT" > "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" 2>&1; then
3261271e
DK
1529 if [ "$IGNORE_PTY_NOT_MOUNTED" = '1' ]; then
1530 if echo 'E: Can not write log (Is /dev/pts mounted?) - posix_openpt (2: No such file or directory)' \
1531 | cmp - "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" >/dev/null 2>&1; then
1532 msgpass
1533 else
1534 msgfailoutput 'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1535 fi
1536 else
1537 msgfailoutput 'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1538 fi
671a55ba
DK
1539 elif [ "$TYPE" = 'testsuccesswithnotice' ]; then
1540 if grep -q -E "^N: " "$OUTPUT"; then
1541 msgpass
1542 else
1543 msgfailoutput 'successful run, but output had no notices' "$OUTPUT" "$@"
1544 fi
4fa34122
DK
1545 else
1546 msgpass
1547 fi
1548 else
1549 msgpass
1550 fi
1551 else
1552 local EXITCODE=$?
e52aad52 1553 msgfailoutput "exitcode $EXITCODE" "$OUTPUT" "$@"
4fa34122 1554 fi
671a55ba 1555 aptautotest "$TYPE" "$@"
9beb11aa 1556 msggroup
4fa34122 1557}
671a55ba
DK
1558testsuccesswithnotice() {
1559 testsuccesswithglobalerror 'testsuccesswithnotice' 'WE' "$@"
1560}
1561testsuccess() {
1562 testsuccesswithglobalerror 'testsuccess' 'NWE' "$@"
1563}
4fa34122 1564testwarning() {
1501a2c9 1565 msggroup 'testwarning'
4fa34122
DK
1566 if [ "$1" = '--nomsg' ]; then
1567 shift
1568 else
1569 msgtest 'Test for successful execution with warnings of' "$*"
1570 fi
25b86db1 1571 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output"
63c71412 1572 if "$@" >"${OUTPUT}" 2>&1; then
1df24acf 1573 if expr match "$1" '^apt.*' >/dev/null; then
e52aad52
DK
1574 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1575 msgfailoutput 'compiler detected undefined behavior' "$OUTPUT" "$@"
1576 elif grep -q -E '^E: ' "$OUTPUT"; then
1577 msgfailoutput 'successful run, but output contains errors' "$OUTPUT" "$@"
4fa34122 1578 elif ! grep -q -E '^W: ' "$OUTPUT"; then
e52aad52 1579 msgfailoutput 'successful run, but output contains no warnings' "$OUTPUT" "$@"
1df24acf
DK
1580 else
1581 msgpass
1582 fi
1583 else
1584 msgpass
1585 fi
0440d936 1586 else
07cb47e7 1587 local EXITCODE=$?
68042532 1588 msgfailoutput "exitcode $EXITCODE" "$OUTPUT" "$@"
0440d936 1589 fi
4fa34122 1590 aptautotest 'testwarning' "$@"
9beb11aa 1591 msggroup
0440d936 1592}
0440d936 1593testfailure() {
1501a2c9 1594 msggroup 'testfailure'
0440d936
DK
1595 if [ "$1" = '--nomsg' ]; then
1596 shift
1597 else
889b0072 1598 msgtest 'Test for failure in execution of' "$*"
0440d936 1599 fi
03938280 1600 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output"
63c71412 1601 if "$@" >"${OUTPUT}" 2>&1; then
07cb47e7 1602 local EXITCODE=$?
e52aad52 1603 msgfailoutput "exitcode $EXITCODE" "$OUTPUT" "$@"
0440d936 1604 else
1df24acf
DK
1605 local EXITCODE=$?
1606 if expr match "$1" '^apt.*' >/dev/null; then
b0d40854
DK
1607 if [ "$1" = 'aptkey' ]; then
1608 if grep -q -E " Can't check signature: " "$OUTPUT" || \
1609 grep -q -E " BAD signature from " "$OUTPUT"; then
1610 msgpass
1611 else
1612 msgfailoutput "run failed with exitcode ${EXITCODE}, but no signature error" "$OUTPUT" "$@"
1613 fi
1df24acf 1614 else
b0d40854
DK
1615 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1616 msgfailoutput 'compiler detected undefined behavior' "$OUTPUT" "$@"
1617 elif grep -q -E '==ERROR' "$OUTPUT"; then
1618 msgfailoutput 'compiler sanitizers reported errors' "$OUTPUT" "$@"
1619 elif ! grep -q -E '^E: ' "$OUTPUT"; then
1620 msgfailoutput "run failed with exitcode ${EXITCODE}, but with no errors" "$OUTPUT" "$@"
1621 else
1622 msgpass
1623 fi
1df24acf
DK
1624 fi
1625 else
1626 msgpass
1627 fi
0440d936 1628 fi
ab25bf1f 1629 aptautotest 'testfailure' "$@"
9beb11aa 1630 msggroup
0440d936
DK
1631}
1632
7414af7f
DK
1633testreturnstateequal() {
1634 local STATE="$1"
671a55ba
DK
1635 if [ "$STATE" = 'testsuccesswithglobalerror' ]; then
1636 local STATE="$2"
1637 local TYPE="$3"
7414af7f 1638 shift 3
671a55ba
DK
1639 msggroup "${STATE}equal"
1640 if [ "$1" != '--nomsg' ]; then
1641 local CMP="$1"
1642 shift
1643 testsuccesswithglobalerror "$STATE" "$TYPE" "$@"
1644 testfileequal "${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1645 else
1646 local CMP="$2"
1647 shift 2
1648 testsuccesswithglobalerror "$STATE" "$TYPE" "$@"
1649 testfileequal "${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1650 fi
1651 else
1652 msggroup "${STATE}equal"
1653 if [ "$2" != '--nomsg' ]; then
1654 local CMP="$2"
1655 shift 2
1656 "$STATE" "$@"
1657 testfileequal "${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1658 else
1659 local CMP="$3"
1660 shift 3
1661 "$STATE" --nomsg "$@"
1662 testfileequal "${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1663 fi
7414af7f 1664 fi
9beb11aa 1665 msggroup
25b86db1 1666}
7414af7f 1667testsuccessequal() {
671a55ba
DK
1668 # we compare output, so we know perfectly well about N:
1669 testreturnstateequal 'testsuccesswithglobalerror' 'testsuccess' 'WE' "$@"
7414af7f 1670}
25b86db1 1671testwarningequal() {
7414af7f 1672 testreturnstateequal 'testwarning' "$@"
25b86db1
DK
1673}
1674testfailureequal() {
7414af7f 1675 testreturnstateequal 'testfailure' "$@"
25b86db1
DK
1676}
1677
27925d82 1678testfailuremsg() {
1501a2c9 1679 msggroup 'testfailuremsg'
27925d82
DK
1680 local CMP="$1"
1681 shift
1682 testfailure "$@"
1683 msgtest 'Check that the output of the previous failed command has expected' 'failures and warnings'
68042532 1684 local COMPAREFILE="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailuremsg.comparefile"
002b1bc4 1685 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output" > "$COMPAREFILE" 2>&1 || true
22ac12b2 1686 testoutputequal "$COMPAREFILE" echo "$CMP"
9beb11aa 1687 msggroup
27925d82 1688}
f18f2338
DK
1689testwarningmsg() {
1690 msggroup 'testwarningmsg'
1691 local CMP="$1"
1692 shift
1693 testwarning "$@"
1694 msgtest 'Check that the output of the previous warned command has expected' 'warnings'
1695 local COMPAREFILE="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarningmsg.comparefile"
002b1bc4 1696 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output" > "$COMPAREFILE" 2>&1 || true
f18f2338
DK
1697 testoutputequal "$COMPAREFILE" echo "$CMP"
1698 msggroup
1699}
25b86db1 1700
de81b2e2 1701testfilestats() {
1501a2c9 1702 msggroup 'testfilestats'
de81b2e2
DK
1703 msgtest "Test that file $1 has $2 $3" "$4"
1704 if [ "$4" "$3" "$(stat --format "$2" "$1")" ]; then
5684f71f
DK
1705 msgpass
1706 else
68042532
DK
1707 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfilestats.output"
1708 {
1709 ls -ld "$1" || true
1710 echo -n "stat(1) reports for $2: "
1711 stat --format "$2" "$1" || true
1712 } >"$OUTPUT" 2>&1
1713 msgfailoutput '' "$OUTPUT"
5684f71f 1714 fi
9beb11aa 1715 msggroup
5684f71f 1716}
de81b2e2 1717testaccessrights() {
1501a2c9 1718 msggroup 'testaccessrights'
de81b2e2 1719 testfilestats "$1" '%a' '=' "$2"
9beb11aa 1720 msggroup
de81b2e2 1721}
5684f71f 1722
0d58c26a 1723testwebserverlaststatuscode() {
1501a2c9 1724 msggroup 'testwebserverlaststatuscode'
0d58c26a 1725 local DOWNLOG='rootdir/tmp/webserverstatus-testfile.log'
03aa0847 1726 local STATUS='downloaded/webserverstatus-statusfile.log'
0d58c26a
DK
1727 rm -f "$DOWNLOG" "$STATUS"
1728 msgtest 'Test last status code from the webserver was' "$1"
6c0765c0 1729 if downloadfile "http://localhost:${APTHTTPPORT}/_config/find/aptwebserver::last-status-code" "$STATUS" > "$DOWNLOG" && [ "$(cat "$STATUS")" = "$1" ]; then
0d58c26a
DK
1730 msgpass
1731 else
68042532
DK
1732 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwebserverlaststatuscode.output"
1733 {
1734 if [ -n "$2" ]; then
1735 shift
1736 echo >&2 '#### Additionally provided output files contain:'
1737 cat >&2 "$@"
1738 fi
1739 echo >&2 '#### Download log of the status code:'
1740 cat >&2 "$DOWNLOG"
1741 } >"$OUTPUT" 2>&1
1742 msgfailoutput "Status was $(cat "$STATUS")" "$OUTPUT"
0d58c26a 1743 fi
9beb11aa 1744 msggroup
0d58c26a
DK
1745}
1746
89a1aa5d
DK
1747pause() {
1748 echo "STOPPED execution. Press enter to continue"
1749 local IGNORE
1750 read IGNORE
1751}
ab25bf1f 1752
846bc058 1753listcurrentlistsdirectory() {
ba6b79bd
DK
1754 {
1755 find rootdir/var/lib/apt/lists -maxdepth 1 -type d | while read line; do
1756 stat --format '%U:%G:%a:%n' "$line"
1757 done
1758 find rootdir/var/lib/apt/lists -maxdepth 1 \! -type d | while read line; do
1759 stat --format '%U:%G:%a:%s:%y:%n' "$line"
1760 done
1761 } | sort
846bc058
DK
1762}
1763
3a8776a3 1764### convenience hacks ###
8fe964f1
DK
1765mkdir() {
1766 # creating some directories by hand is a tedious task, so make it look simple
1767 if [ "$*" = '-p rootdir/var/lib/apt/lists' ] || [ "$*" = "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" ] ||
1768 [ "$*" = '-p rootdir/var/lib/apt/lists/partial' ] || [ "$*" = "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial" ]; then
1769 # only the last directory created by mkdir is effected by the -m !
1770 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt"
1771 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"
1772 command mkdir -m 700 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1773 touch "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/lock"
1774 if [ "$(id -u)" = '0' ]; then
1775 chown _apt:root "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1776 fi
1777 else
1778 command mkdir "$@"
1779 fi
1780}
1781
ab25bf1f
DK
1782### The following tests are run by most test methods automatically to check
1783### general things about commands executed without writing the test every time.
1784
1785aptautotest() {
1786 local TESTCALL="$1"
1787 local CMD="$2"
1788 local FIRSTOPT="$3"
63c71412 1789 local AUTOTEST="aptautotest_$(echo "${CMD##*/}_${FIRSTOPT}" | tr -d '-')"
ab25bf1f
DK
1790 if command -v $AUTOTEST >/dev/null; then
1791 shift 3
1792 # save and restore the *.output files from other tests
1793 # as we might otherwise override them in these automatic tests
63c71412
DK
1794 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1795 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1796 mkdir "${TMPWORKINGDIRECTORY}/rootdir/tmp"
ab25bf1f 1797 $AUTOTEST "$TESTCALL" "$@"
63c71412
DK
1798 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1799 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1800 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp-before" "${TMPWORKINGDIRECTORY}/rootdir/tmp"
ab25bf1f
DK
1801 fi
1802}
1803
1804aptautotest_aptget_update() {
59148d96
DK
1805 local TESTCALL="$1"
1806 while [ -n "$2" ]; do
1807 if [ "$2" = '--print-uris' ]; then return; fi # simulation mode
1808 shift
1809 done
ab25bf1f 1810 if ! test -d "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"; then return; fi
4bb006d1
DK
1811 testfilestats "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
1812 testfilestats "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
ab25bf1f 1813 # all copied files are properly chmodded
63c71412
DK
1814 local backupIFS="$IFS"
1815 IFS="$(printf "\n\b")"
146f7715 1816 for file in $(find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" -type f ! -name 'lock'); do
4bb006d1 1817 testfilestats "$file" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:644"
ab25bf1f 1818 done
63c71412 1819 IFS="$backupIFS"
59148d96 1820 if [ "$TESTCALL" = 'testsuccess' ]; then
146f7715
DK
1821 # failure cases can retain partial files and such
1822 testempty find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial" -mindepth 1 ! \( -name 'lock' -o -name '*.FAILED' \)
1823 fi
ab25bf1f
DK
1824}
1825aptautotest_apt_update() { aptautotest_aptget_update "$@"; }
d84da499 1826aptautotest_aptcdrom_add() { aptautotest_aptget_update "$@"; }
016bea82
DK
1827
1828testaptautotestnodpkgwarning() {
1829 local TESTCALL="$1"
1830 while [ -n "$2" ]; do
6bf93605
DK
1831 if expr match "$2" '^-[a-z]*s' >/dev/null 2>&1; then return; fi # simulation mode
1832 if expr match "$2" '^-dy\?' >/dev/null 2>&1; then return; fi # download-only mode
016bea82
DK
1833 shift
1834 done
1835 testfailure grep '^dpkg: warning:.*ignor.*' "${TMPWORKINGDIRECTORY}/rootdir/tmp-before/${TESTCALL}.output"
1836}
1837
1838aptautotest_aptget_install() { testaptautotestnodpkgwarning "$@"; }
1839aptautotest_aptget_remove() { testaptautotestnodpkgwarning "$@"; }
1840aptautotest_aptget_purge() { testaptautotestnodpkgwarning "$@"; }
1841aptautotest_apt_install() { testaptautotestnodpkgwarning "$@"; }
1842aptautotest_apt_remove() { testaptautotestnodpkgwarning "$@"; }
1843aptautotest_apt_purge() { testaptautotestnodpkgwarning "$@"; }