1 #!/bin/sh -- # no runable script, just for vi
6 if [ "$1" = "-q" ]; then
8 elif [ "$1" = "-v" ]; then
10 elif [ "$1" = '--color=no' ]; then
12 elif [ "$1" = '--color=yes' ]; then
14 elif [ "$1" = '--color' ]; then
15 export MSGCOLOR
="$(echo "$2" | tr 'a-z' 'A-Z')"
17 elif [ "$1" = '--level' ]; then
21 echo >&2 "WARNING: Unknown parameter »$1« will be ignored"
25 export MSGLEVEL
="${MSGLEVEL:-3}"
27 # we all like colorful messages
28 if [ "${MSGCOLOR:-YES}" = 'YES' ]; then
29 if [ ! -t 1 ]; then # but check that we output to a terminal
34 if [ "$MSGCOLOR" != 'NO' ]; then
35 CERROR
="\033[1;31m" # red
36 CWARNING
="\033[1;33m" # yellow
37 CMSG
="\033[1;32m" # green
38 CINFO
="\033[1;96m" # light blue
39 CDEBUG
="\033[1;94m" # blue
40 CNORMAL
="\033[0;39m" # default system console color
41 CDONE
="\033[1;32m" # green
42 CPASS
="\033[1;32m" # green
43 CFAIL
="\033[1;31m" # red
44 CCMD
="\033[1;35m" # pink
56 printf "$MIDDLE " "$(echo "$1" | sed -e 's#^apt\([cfghks]\)#apt-\1#')"
62 msgdie
() { msgprintf
"${CERROR}E: %s" '%s' "${CNORMAL}\n" "$@" >&2; exit 1; }
63 msgwarn
() { msgprintf
"${CWARNING}W: %s" '%s' "${CNORMAL}\n" "$@" >&2; }
64 msgmsg
() { msgprintf
"${CMSG}%s" '%s' "${CNORMAL}\n" "$@"; }
65 msginfo
() { msgprintf
"${CINFO}I: %s" '%s' "${CNORMAL}\n" "$@"; }
66 msgdebug
() { msgprintf
"${CDEBUG}D: %s" '%s' "${CNORMAL}\n" "$@"; }
67 msgdone
() { msgprintf
"${CDONE}DONE" '%s' "${CNORMAL}\n" "$@"; }
68 msgnwarn
() { msgprintf
"${CWARNING}W: %s" '%s' "${CNORMAL}" "$@" >&2; }
69 msgnmsg
() { msgprintf
"${CMSG}%s" '%s' "${CNORMAL}" "$@"; }
70 msgninfo
() { msgprintf
"${CINFO}I: %s" '%s' "${CNORMAL}" "$@"; }
71 msgndebug
() { msgprintf
"${CDEBUG}D: %s" '%s' "${CNORMAL}" "$@"; }
72 msgtest
() { msgprintf
"${CINFO}%s" "${CCMD}%s${CINFO}" "…${CNORMAL} " "$@"; }
73 msgpass
() { printf "${CPASS}PASS${CNORMAL}\n"; }
75 if [ -n "$MSGTEST_MSG" ]; then
76 test "$1" != 'msgfailoutput' || echo
77 if [ -n "$MSGTEST_MSGMSG" ]; then
78 echo "$MSGTEST_MSGMSG"
80 if [ -n "$MSGTEST_GRP" ] && [ "$MSGTEST_GRP" != 'NEXT' ] && [ "$MSGTEST_GRP" != "$MSGTEST_MSG" ]; then
81 echo "${CFAIL}Part of the test group: $MSGTEST_GRP"
83 echo -n "$MSGTEST_MSG"
88 msgreportheader
'msgskip'
89 if [ $# -gt 0 ]; then printf "${CWARNING}SKIP: $*${CNORMAL}\n" >&2;
90 else printf "${CWARNING}SKIP${CNORMAL}\n" >&2; fi
93 msgreportheader
'msgfail'
94 if [ $# -gt 0 ] && [ -n "$1" ]; then printf "${CFAIL}FAIL: $*${CNORMAL}\n" >&2;
95 else printf "${CFAIL}FAIL${CNORMAL}\n" >&2; fi
96 if [ -n "$APT_DEBUG_TESTS" ]; then
99 EXIT_CODE
=$((EXIT_CODE+1));
104 if [ $MSGGROUP_LEVEL = 0 ]; then
107 MSGGROUP_LEVEL
=$((MSGGROUP_LEVEL+1));
109 MSGGROUP_LEVEL
=$((MSGGROUP_LEVEL-1));
110 if [ $MSGGROUP_LEVEL = 0 ]; then
116 # enable / disable Debugging
117 if [ $MSGLEVEL -le 0 ]; then
120 if [ $MSGLEVEL -le 1 ]; then
124 if [ $MSGLEVEL -le 2 ]; then
126 MSGTEST_MSGMSG
="$(msgprintf "${CMSG}%s" '%s' "${CNORMAL}" "$@")"
130 MSGTEST_MSG
="$(msgprintf "${CINFO}%s" "${CCMD}%s${CINFO}" "…${CNORMAL} " "$@")"
131 if [ "$MSGTEST_GRP" = 'NEXT' ]; then
132 MSGTEST_GRP
="$MSGTEST_MSG"
135 msgpass
() { printf " ${CPASS}P${CNORMAL}"; }
137 if [ $MSGLEVEL -le 3 ]; then
141 if [ $MSGLEVEL -le 4 ]; then
143 msgndebug
() { true
; }
146 if [ "$1" = "debug" -a $MSGLEVEL -le 4 ] ||
147 [ "$1" = "info" -a $MSGLEVEL -le 3 ] ||
148 [ "$1" = "msg" -a $MSGLEVEL -le 2 ] ||
149 [ "$1" = "warn" -a $MSGLEVEL -le 1 ] ||
150 [ "$1" = "die" -a $MSGLEVEL -le 0 ]; then
153 printf "${CDONE}DONE${CNORMAL}\n";
157 if [ -f .
/aptconfig.conf
]; then
158 echo "$(readlink -f ./aptconfig.conf)"
159 elif [ -f ..
/aptconfig.conf
]; then
160 echo "$(readlink -f ../aptconfig.conf)"
161 elif [ -f ..
/..
/aptconfig.conf
]; then
162 echo "$(readlink -f ../../aptconfig.conf)"
163 elif [ -f "${TMPWORKINGDIRECTORY}/aptconfig.conf" ]; then
164 echo "$(readlink -f "${TMPWORKINGDIRECTORY}/aptconfig.conf")"
168 msgdebug
"Executing: ${CCMD}$*${CDEBUG} "
172 sh
|aptitude
|*/*|command) ;;
173 *) CMD
="${BUILDDIRECTORY}/$CMD";;
175 MALLOC_PERTURB_
=21 MALLOC_CHECK_
=2 APT_CONFIG
="$(getaptconfig)" LD_LIBRARY_PATH
="${LIBRARYPATH}:${LD_LIBRARY_PATH}" "$CMD" "$@"
177 runpython3
() { runapt
command python3
"$@"; }
178 aptconfig
() { runapt apt
-config "$@"; }
179 aptcache
() { runapt apt
-cache "$@"; }
180 aptcdrom
() { runapt apt
-cdrom "$@"; }
181 aptget
() { runapt apt
-get "$@"; }
182 aptftparchive
() { runapt
"${APTFTPARCHIVEBINDIR}/apt-ftparchive" "$@"; }
183 aptkey
() { runapt apt
-key "$@"; }
184 aptmark
() { runapt apt
-mark "$@"; }
185 aptsortpkgs
() { runapt apt
-sortpkgs "$@"; }
186 apt
() { runapt apt
"$@"; }
187 apthelper
() { runapt
"${APTHELPERBINDIR}/apt-helper" "$@"; }
188 aptwebserver
() { runapt
"${APTWEBSERVERBINDIR}/aptwebserver" "$@"; }
189 aptitude
() { runapt aptitude
"$@"; }
190 aptextracttemplates
() { runapt apt
-extracttemplates "$@"; }
191 aptinternalsolver
() { runapt
"${APTINTERNALSOLVER}" "$@"; }
192 aptdumpsolver
() { runapt
"${APTDUMPSOLVER}" "$@"; }
193 aptinternalplanner
() { runapt
"${APTINTERNALPLANNER}" "$@"; }
196 "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" "$@"
198 dpkgcheckbuilddeps
() {
199 command dpkg
-checkbuilddeps --admindir="${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg" "$@"
204 aptget
) CMD
="apt-get";;
205 aptcache
) CMD
="apt-cache";;
206 aptcdrom
) CMD
="apt-cdrom";;
207 aptconfig
) CMD
="apt-config";;
208 aptmark
) CMD
="apt-mark";;
209 apthelper
) CMD
="apt-helper";;
210 aptftparchive
) CMD
="apt-ftparchive";;
211 dpkg
) shift; runapt
"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg" "$@"; return;;
215 if [ "${CMD##*/}" = "$CMD" ]; then
216 CMD
="${BUILDDIRECTORY}/${CMD}"
218 runapt
command gdb
--quiet -ex "directory '$SOURCEDIRECTORY'" -ex run
"$CMD" --args "$CMD" "$@"
221 date -u -d "@$(stat -c '%Y' "${TMPWORKINGDIRECTORY}/$1")" -R
224 grep "^${2:-Date}:" "$1" | cut
-d' ' -f 2-
228 # error if we about to overflow, but ...
229 # "255 failures ought to be enough for everybody"
230 if [ $EXIT_CODE -gt 255 ]; then
231 msgdie
"Total failure count $EXIT_CODE too big"
233 exit $((EXIT_CODE <= 255 ? EXIT_CODE : 255));
236 shellsetedetector
() {
238 if [ "$exit_status" != '0' ]; then
239 printf >&2 "${CERROR}E: Looks like the testcases ended prematurely with exitcode: ${exit_status}${CNORMAL}\n"
240 if [ "$EXIT_CODE" = '0' ]; then
241 EXIT_CODE
="$exit_status"
247 if [ "$1" = 'prefix' ]; then
248 CURRENTTRAP
="$2 $CURRENTTRAP"
250 CURRENTTRAP
="$CURRENTTRAP $1"
252 trap "shellsetedetector; $CURRENTTRAP exitwithstatus;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
256 echo "$@" | sed -e "s#'#'\"'\"'#g"
259 find_project_binary_dir
() {
260 local TESTDIRECTORY
="$(readlink -f "$(dirname $0)")"
261 if [ -z "$PROJECT_BINARY_DIR" ]; then
263 for dir in ${TESTDIRECTORY}/../../ ${TESTDIRECTORY}/../../*; do
264 test -e "$dir/CMakeCache.txt
" || continue
265 if [ -z "$PROJECT_BINARY_DIR" ] ||
266 [ "$dir/CMakeCache.txt
" -nt "$PROJECT_BINARY_DIR/CMakeCache.txt
" ]; then
267 PROJECT_BINARY_DIR="$dir"
270 if [ -z "$PROJECT_BINARY_DIR" ]; then
271 echo "Cannot
find build directory
, you might want to
set PROJECT_BINARY_DIR
" >&2
274 export PROJECT_BINARY_DIR
278 # Next check needs a gnu stat, let's figure that out early.
280 if command -v gnustat >/dev/null 2>&1; then
283 # privilege dropping and testing doesn't work if /tmp isn't world-writeable (as e.g. with libpam-tmpdir)
284 if [ -n "$TMPDIR" ] && [ "$(id -u)" = '0' ] && [ "$($stat --format '%a' "$TMPDIR")" != '1777' ]; then
287 TMPWORKINGDIRECTORY="$(mktemp -d)"
288 addtrap "cd /; rm -rf '$(escape_shell "$TMPWORKINGDIRECTORY")';"
289 if [ -n "$TMPDIR_ADD" ]; then
290 TMPWORKINGDIRECTORY="${TMPWORKINGDIRECTORY}/${TMPDIR_ADD}"
291 mkdir -p "$TMPWORKINGDIRECTORY"
293 export TMPDIR="$TMPWORKINGDIRECTORY"
295 msgninfo "Preparing environment
for ${0##*/} in ${TMPWORKINGDIRECTORY}…
"
297 # Setup coreutils on BSD systems
298 mkdir "${TMPWORKINGDIRECTORY}/bin
"
299 for prefix in gnu g; do
300 for command in stat touch sed cp tr sha1sum sha256sum md5sum sha512sum grep date wc chmod head readlink tar expr base64; do
301 if command -v $prefix$command 2>/dev/null >/dev/null; then
302 [ -e "${TMPWORKINGDIRECTORY}/bin
/$command" ] || ln -sf $(command -v $prefix$command) "${TMPWORKINGDIRECTORY}/bin
/$command"
306 export PATH="${TMPWORKINGDIRECTORY}/bin
/:$PATH"
309 mkdir -m 700 "${TMPWORKINGDIRECTORY}/downloaded
"
310 if [ "$(id -u)" = '0' ]; then
311 # relax permissions so that running as root with user switching works
313 chmod 711 "$TMPWORKINGDIRECTORY"
314 chown _apt:root "${TMPWORKINGDIRECTORY}/downloaded
"
317 TESTDIRECTORY="$(readlink -f "$(dirname $0)")"
318 # Find the newest build directory (sets PROJECT_BINARY_DIR)
319 find_project_binary_dir
320 # allow overriding the default BUILDDIR location
321 SOURCEDIRECTORY
="${APT_INTEGRATION_TESTS_SOURCE_DIR:-"${TESTDIRECTORY}/../../"}"
322 BUILDDIRECTORY
="${APT_INTEGRATION_TESTS_BUILD_DIR:-"${PROJECT_BINARY_DIR}/cmdline"}"
323 LIBRARYPATH
="${APT_INTEGRATION_TESTS_LIBRARY_PATH:-"${BUILDDIRECTORY}/../apt-pkg"}"
324 METHODSDIR
="${APT_INTEGRATION_TESTS_METHODS_DIR:-"${BUILDDIRECTORY}/../methods"}"
325 APTHELPERBINDIR
="${APT_INTEGRATION_TESTS_LIBEXEC_DIR:-"${BUILDDIRECTORY}"}"
326 APTWEBSERVERBINDIR
="${APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR:-"${BUILDDIRECTORY}/../test/interactive-helper"}"
327 APTFTPARCHIVEBINDIR
="${APT_INTEGRATION_TESTS_FTPARCHIVE_BIN_DIR:-"${BUILDDIRECTORY}/../ftparchive"}"
328 APTINTERNALSOLVER
="${APT_INTEGRATION_TESTS_INTERNAL_SOLVER:-"${BUILDDIRECTORY}/solvers/apt"}"
329 APTDUMPSOLVER
="${APT_INTEGRATION_TESTS_DUMP_SOLVER:-"${BUILDDIRECTORY}/solvers/dump"}"
330 APTINTERNALPLANNER
="${APT_INTEGRATION_TESTS_INTERNAL_PLANNER:-"${BUILDDIRECTORY}/planners/apt"}"
331 test -x "${BUILDDIRECTORY}/apt-get" || msgdie
"You need to build tree first"
334 cd "$TMPWORKINGDIRECTORY"
335 mkdir rootdir aptarchive keys
337 mkdir -p etc
/apt
/apt.conf.d etc
/apt
/sources.list.d etc
/apt
/trusted.gpg.d etc
/apt
/preferences.d
338 mkdir -p usr
/bin var
/cache var
/lib var
/log var
/crash tmp
339 mkdir -p var
/lib
/dpkg
/info var
/lib
/dpkg
/updates var
/lib
/dpkg
/triggers
340 mkdir -p usr
/lib
/apt
/solvers usr
/lib
/apt
/planners
341 touch var
/lib
/dpkg
/available
342 ln -s "${METHODSDIR}" usr
/lib
/apt
/methods
343 ln -s "${APTDUMPSOLVER}" usr
/lib
/apt
/solvers
/dump
344 ln -s "${APTDUMPSOLVER}" usr
/lib
/apt
/planners
/dump
345 ln -s "${APTINTERNALSOLVER}" usr
/lib
/apt
/solvers
/apt
346 ln -s "${APTINTERNALPLANNER}" usr
/lib
/apt
/planners
/apt
347 echo "Dir::Bin::Solvers \"${TMPWORKINGDIRECTORY}/rootdir/usr/lib/apt/solvers\";" >> ..
/aptconfig.conf
348 echo "Dir::Bin::Planners \"${TMPWORKINGDIRECTORY}/rootdir/usr/lib/apt/planners\";" >> ..
/aptconfig.conf
349 # use the autoremove from the BUILDDIRECTORY if its there, otherwise
351 if [ -z "${APT_INTEGRATION_TESTS_SOURCE_DIR}" ]; then
352 ln -s "${SOURCEDIRECTORY}/debian/apt.conf.autoremove" etc
/apt
/apt.conf.d
/01autoremove
354 ln -s /etc
/apt
/apt.conf.d
/01autoremove etc
/apt
/apt.conf.d
/01autoremove
357 local BASENAME
="${0##*/}"
358 local PACKAGESFILE
="Packages-${BASENAME#*-}"
359 if [ -f "${TESTDIRECTORY}/${PACKAGESFILE}" ]; then
360 cp "${TESTDIRECTORY}/${PACKAGESFILE}" aptarchive
/Packages
362 local SOURCESSFILE
="Sources-${BASENAME#*-}"
363 if [ -f "${TESTDIRECTORY}/${SOURCESSFILE}" ]; then
364 cp "${TESTDIRECTORY}/${SOURCESSFILE}" aptarchive
/Sources
366 find "$TESTDIRECTORY" \
( -name '*.pub' -o -name '*.sec' \
) -exec cp '{}' keys
/ \
;
368 ln -s "${TMPWORKINGDIRECTORY}/keys/joesixpack.pub" rootdir
/etc
/apt
/trusted.gpg.d
/joesixpack.gpg
370 echo "Dir \"${TMPWORKINGDIRECTORY}/rootdir\";" >> aptconfig.conf
371 echo "Dir::Etc \"etc\";" >> aptconfig.conf
372 echo "Dir::State \"var/lib/apt\";" >> aptconfig.conf
373 echo "Dir::Cache \"var/cache/apt\";" >> aptconfig.conf
374 echo "Dir::Etc \"etc/apt\";" >> aptconfig.conf
375 echo "Dir::Log \"var/log/apt\";" >> aptconfig.conf
376 echo "APT::Get::Show-User-Simulation-Note \"false\";" >> aptconfig.conf
377 echo "Dir::Bin::Methods \"${TMPWORKINGDIRECTORY}/rootdir/usr/lib/apt/methods\";" >> aptconfig.conf
378 # either store apt-key were we can access it, even if we run it as a different user
379 #cp "${BUILDDIRECTORY}/apt-key" "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/"
380 #chmod o+rx "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/apt-key"
381 #echo "Dir::Bin::apt-key \"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/apt-key\";" >> aptconfig.conf
382 # destroys coverage reporting though, so we disable changing user for the calling gpgv
383 echo "Dir::Bin::apt-key \"${BUILDDIRECTORY}/apt-key\";" >> aptconfig.conf
384 if [ "$(id -u)" = '0' ]; then
385 echo 'Binary::gpgv::APT::Sandbox::User "root";' >> aptconfig.conf
386 # same for the solver executables
387 echo 'APT::Solver::RunAsUser "root";' >> aptconfig.conf
388 echo 'APT::Planner::RunAsUser "root";' >> aptconfig.conf
391 cat > "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" <<EOF
394 if [ -r '${TMPWORKINGDIRECTORY}/noopchroot.so' ]; then
395 if [ -n "\$LD_LIBRARY_PATH" ]; then
396 export LD_LIBRARY_PATH='${TMPWORKINGDIRECTORY}:'"\${LD_LIBRARY_PATH}"
398 export LD_LIBRARY_PATH='${TMPWORKINGDIRECTORY}'
400 if [ -n "\$LD_PRELOAD" ]; then
401 export LD_PRELOAD="noopchroot.so \${LD_PRELOAD}"
403 export LD_PRELOAD="noopchroot.so"
407 cp "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg"
408 cat >> "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" <<EOF
409 exec fakeroot '${DPKG:-dpkg}' --root='${TMPWORKINGDIRECTORY}/rootdir' \\
410 --admindir="${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg" \\
411 --log='${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log' \\
412 --force-not-root --force-bad-path "\$@"
414 cat >> "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg" <<EOF
415 exec fakeroot gdb --quiet -ex run '${DPKG:-dpkg}' --args '${DPKG:-dpkg}' --root='${TMPWORKINGDIRECTORY}/rootdir' \\
416 --admindir="${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg" \\
417 --log='${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log' \\
418 --force-not-root --force-bad-path "\$@"
420 chmod +x
"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg"
421 echo "Dir::Bin::dpkg \"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg\";" > rootdir
/etc
/apt
/apt.conf.d
/99dpkg
424 if ! command dpkg
--assert-multi-arch >/dev
/null
2>&1; then
425 echo "DPKG::options:: \"--force-architecture\";" # Added to test multiarch before dpkg is ready for it…
428 echo 'quiet::NoUpdate "true";'
429 echo 'quiet::NoStatistic "true";'
430 # too distracting for users, but helpful to detect changes
431 echo 'Acquire::Progress::Ignore::ShowErrorText "true";'
432 echo 'Acquire::Progress::Diffpercent "true";'
433 # in testcases, it can appear as if localhost has a rotation setup,
434 # hide this as we can't really deal with it properly
435 echo 'Acquire::Failure::ShowIP "false";'
436 # fakeroot can't fake everything, so disabled in production but good for tests
437 echo 'APT::Sandbox::Verify "true";'
440 cp "${TESTDIRECTORY}/apt.pem" "${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem"
441 if [ "$(id -u)" = '0' ]; then
442 chown _apt
:root
"${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem"
444 echo "Acquire::https::CaInfo \"${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem\";" > rootdir
/etc
/apt
/apt.conf.d
/99https
445 echo "Apt::Cmd::Disable-Script-Warning \"1\";" > rootdir
/etc
/apt
/apt.conf.d
/apt
-binary
446 export APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE
=no
447 echo 'Acquire::Connect::AddrConfig "false";' > rootdir
/etc
/apt
/apt.conf.d
/connect
-addrconfig
449 configcompression
'.' 'gz' #'bz2' 'lzma' 'xz'
450 confighashes
'SHA256' # these are tests, not security best-practices
452 # create some files in /tmp and look at user/group to get what this means
453 TEST_DEFAULT_USER
="$(id -un)"
454 touch "${TMPWORKINGDIRECTORY}/test-file"
455 TEST_DEFAULT_GROUP
=$(stat --format '%G' "${TMPWORKINGDIRECTORY}/test-file")
457 # cleanup the environment a bit
458 # prefer our apt binaries over the system apt binaries
459 export PATH
="${BUILDDIRECTORY}:${PATH}:/usr/local/sbin:/usr/sbin:/sbin"
461 unset LANGUAGE APT_CONFIG
462 unset GREP_OPTIONS DEB_BUILD_PROFILES
463 unset http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy
465 # If gpgv supports --weak-digest, pass it to make sure we can disable SHA1
466 if aptkey verify
--weak-digest SHA1
--help 2>/dev
/null
>/dev
/null
; then
467 echo 'Acquire::gpgv::Options { "--weak-digest"; "sha1"; };' > rootdir
/etc
/apt
/apt.conf.d
/no
-sha1
470 # most tests just need one signed Release file, not both
471 export APT_DONT_SIGN
='Release.gpg'
473 if [ -r "${TESTDIRECTORY}/extra-environment" ]; then
474 .
"${TESTDIRECTORY}/extra-environment"
481 if [ "$1" = "native" -o -z "$1" ]; then
482 eval `aptconfig shell ARCH APT::Architecture`
483 if [ -n "$ARCH" ]; then
486 dpkg
--print-architecture
494 aptconfig dump
--no-empty --format '%v%n' APT
::Architecture APT
::Architectures
| sort -u | tr '\n' ' '
497 getarchitecturesfromcommalist
() {
498 echo "$1" | sed -e 's#,#\n#g' | sed -e "s/^native\$/$(getarchitecture 'native')/"
501 configarchitecture
() {
503 echo "APT::Architecture \"$(getarchitecture $1)\";"
504 while [ -n "$1" ]; do
505 echo "APT::Architectures:: \"$(getarchitecture $1)\";"
508 } >rootdir
/etc
/apt
/apt.conf.d
/01multiarch.conf
513 if [ ! -e rootdir
/var
/lib
/dpkg
/status
]; then
514 local BASENAME
="${0##*/}"
515 local STATUSFILE
="status-${BASENAME#*-}"
516 if [ -f "${TESTDIRECTORY}/${STATUSFILE}" ]; then
517 cp "${TESTDIRECTORY}/${STATUSFILE}" rootdir
/var
/lib
/dpkg
/status
519 echo -n > rootdir
/var
/lib
/dpkg
/status
522 rm -f rootdir
/etc
/apt
/apt.conf.d
/00foreigndpkg
523 # if multi-arch make sure dpkg can detect itself as capable of it
524 if getarchitectures
| grep -E -q '[^ ]+ [^ ]+'; then
525 if [ "0" = "$(dpkg -l dpkg 2> /dev/null | grep '^i' | wc -l)" ]; then
526 # dpkg doesn't really check the version as long as it is fully installed,
527 # but just to be sure we choose one above the required version
528 insertinstalledpackage
'dpkg' "all" '1.16.2+fake'
531 if command dpkg
--assert-multi-arch >/dev
/null
2>&1 ; then
532 local ARCHS
="$(getarchitectures)"
533 local DPKGARCH
="$(dpkg --print-architecture)"
534 # this ensures that even if multi-arch isn't active in the view
535 # of apt, given that dpkg can't be told which arch is native
536 # the arch apt treats as native might be foreign for dpkg
537 for ARCH
in ${ARCHS}; do
538 if [ "${ARCH}" != "${DPKGARCH}" ]; then
539 if ! dpkg
--add-architecture ${ARCH} >/dev
/null
2>&1; then
540 # old-style used e.g. in Ubuntu-P – and as it seems travis
541 echo "DPKG::options:: \"--foreign-architecture\";" >> rootdir
/etc
/apt
/apt.conf.d
/00foreigndpkg
542 echo "DPKG::options:: \"${ARCH}\";" >> rootdir
/etc
/apt
/apt.conf.d
/00foreigndpkg
549 configdpkgnoopchroot
() {
550 # create a library to noop chroot() and rewrite maintainer script executions
551 # via execvp() as used by dpkg as we don't want our rootdir to be a fullblown
552 # chroot directory dpkg could chroot into to execute the maintainer scripts
553 msgtest
'Building library to preload to make maintainerscript work in' 'dpkg'
554 cat > noopchroot.c
<< EOF
561 static char * chrootdir = NULL;
563 int chroot(const char *path) {
564 printf("WARNING: CHROOTing to %s was ignored!\n", path);
566 chrootdir = strdup(path);
569 int execvp(const char *file, char *const argv[]) {
570 static int (*func_execvp) (const char *, char * const []) = NULL;
571 if (func_execvp == NULL)
572 func_execvp = (int (*) (const char *, char * const [])) dlsym(RTLD_NEXT, "execvp");
573 if (chrootdir == NULL || strncmp(file, "/var/lib/dpkg/", strlen("/var/lib/dpkg/")) != 0)
574 return func_execvp(file, argv);
575 printf("REWRITE execvp call %s into %s\n", file, chrootdir);
577 if (asprintf(&newfile, "%s%s", chrootdir, file) == -1) {
581 char const * const baseadmindir = "/var/lib/dpkg";
583 if (asprintf(&admindir, "%s%s", chrootdir, baseadmindir) == -1) {
587 setenv("DPKG_ADMINDIR", admindir, 1);
588 return func_execvp(newfile, argv);
591 if cc
-ldl 2>&1 | grep -q dl
; then
592 testempty
--nomsg cc
-Wall -Wextra -fPIC -shared -o noopchroot.so noopchroot.c
594 testempty
--nomsg cc
-Wall -Wextra -fPIC -shared -o noopchroot.so noopchroot.c
-ldl
597 configcompression
() {
598 if [ "$1" = 'ALL' ]; then
599 configcompression
'.' $(aptconfig dump APT::Compressor --format '%t %v%n' | sed -n 's#^Extension \.\(.*\)$#\
1#p')
602 local CMD
='apthelper cat-file -C'
603 while [ -n "$1" ]; do
605 '.') printf ".\t.\tcat\n";;
606 'gz') printf "gzip\tgz\t$CMD $1\n";;
607 'bz2') printf "bzip2\tbz2\t$CMD $1\n";;
608 *) printf "$1\t$1\t$CMD $1\n";;
611 done > "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf"
615 echo 'APT::FTPArchive {'
617 while [ -n "$1" ]; do
618 printf "$1" | tr 'a-z' 'A-Z'
619 printf "\t\"true\";\n"
622 for h
in 'MD5' 'SHA1' 'SHA256' 'SHA512'; do
623 printf "$h\t\"false\";\n"
627 } >> "${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/ftparchive-hashes.conf"
632 COMPRESSOR_CMD
="apthelper cat-file -C $1"
634 gzip) COMPRESS
='gz';;
635 bzip2) COMPRESS
='bz2';;
637 local CONFFILE
="${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/00force-compressor"
638 echo "Acquire::CompressionTypes::Order { \"${COMPRESS}\"; };
639 Dir::Bin::uncompressed \"/does/not/exist\";" > "$CONFFILE"
640 for COMP
in $(aptconfig dump 'APT::Compressor' --format '%f%n' | cut -d':' -f 5 | uniq); do
641 if [ -z "$COMP" -o "$COMP" = '.' -o "$COMP" = "$COMPRESSOR" ]; then continue; fi
642 echo "Dir::Bin::${COMP} \"/does/not/exist\";" >> "$CONFFILE"
643 echo "APT::Compressor::${COMP}::Name \"${COMP}-disabled\";" >> "$CONFFILE"
647 _setupsimplenativepackage
() {
651 local RELEASE
="${4:-unstable}"
652 local DEPENDENCIES
="$5"
653 local DESCRIPTION
="${6:-an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
654 If you find such a package installed on your system,
655 something went horribly wrong! They are autogenerated
656 und used only by testcases and serve no other purpose…}"
658 local SECTION
="${7:-others}"
659 local PRIORITY
="${8:-optional}"
661 local COMPRESS_TYPE
="${10:-gzip}"
663 if [ "$SECTION" = "${SECTION#*/}" ]; then
666 DISTSECTION
="${SECTION%/*}"
668 local BUILDDIR
="${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}"
670 mkdir -p "$BUILDDIR/debian/source"
671 echo "* most suckless software product ever" > "${BUILDDIR}/FEATURES"
673 echo '$NAME says \"Hello!\"'" > "${BUILDDIR}/${NAME}"
675 echo "Copyleft by Joe Sixpack $(date -u +%Y)" > "${BUILDDIR}/debian/copyright"
676 echo "$NAME ($VERSION) $RELEASE; urgency=low
680 -- Joe Sixpack <joe@example.org> $(date -u -R)" > "${BUILDDIR}/debian/changelog"
684 Maintainer: Joe Sixpack <joe@example.org>
685 Standards-Version: 3.9.3"
686 if [ "$SECTION" != '<none>' ]; then
687 echo "Section: $SECTION"
689 local BUILDDEPS
="$(printf "%b\n" "$DEPENDENCIES" | grep '^Build-')"
690 test -z "$BUILDDEPS" || echo "$BUILDDEPS"
694 if [ "$ARCH" = 'all' ]; then
695 echo "Architecture: all"
697 echo "Architecture: any"
699 local DEPS
="$(printf "%b\n" "$DEPENDENCIES" | grep -v '^Build-')"
700 test -z "$DEPS" || echo "$DEPS"
701 printf "%b\n" "Description: $DESCRIPTION"
702 } > "${BUILDDIR}/debian/control"
704 echo '3.0 (native)' > "${BUILDDIR}/debian/source/format"
709 if command -v gmake
>/dev
/null
2>&1; then
710 [ -e ${TMPWORKINGDIRECTORY}/bin
/make ] || ln -s $(command -v gmake) ${TMPWORKINGDIRECTORY}/bin
/make
711 echo "#!${TMPWORKINGDIRECTORY}/bin/make -f" > "$OUT"
713 echo '#!/usr/bin/make -f' > "$OUT"
716 echo ' dh $@' >> "$OUT"
719 setupsimplenativepackage
() {
720 _setupsimplenativepackage
"$@"
723 local BUILDDIR
="${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}"
724 test -e "${BUILDDIR}/debian/compat" || echo '7' > "${BUILDDIR}/debian/compat"
725 test -e "${BUILDDIR}/debian/rules" || make_tiny_rules
"${BUILDDIR}/debian/rules"
728 buildsimplenativepackage
() {
732 local RELEASE
="${4:-unstable}"
733 local DEPENDENCIES
="$5"
734 local DESCRIPTION
="$6"
735 local SECTION
="${7:-others}"
736 local PRIORITY
="${8:-optional}"
738 local COMPRESS_TYPE
="${10:-gzip}"
740 if [ "$SECTION" = "${SECTION#*/}" ]; then
743 DISTSECTION
="${SECTION%/*}"
745 local BUILDDIR
="${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}"
746 msgtest
"Build source package in version ${VERSION} for ${RELEASE} in ${DISTSECTION}" "$NAME"
747 _setupsimplenativepackage
"$@"
749 testsuccess
--nomsg dpkg
-source -b ${NAME}-${VERSION}
751 sed -n 's#^dpkg-source: info: building [^ ]\+ in ##p' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testsuccess.output" \
753 echo "pool/${SRC}" >> "${BUILDDIR}/../${RELEASE}.${DISTSECTION}.srclist"
754 # if expr match "${SRC}" '.*\.dsc' >/dev/null 2>&1; then
755 # aptkey --keyring ./keys/joesixpack.pub --secret-keyring ./keys/joesixpack.sec --quiet --readonly \
756 # adv --yes --default-key 'Joe Sixpack' \
757 # --clearsign -o "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC"
758 # mv "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC"
762 for arch
in $(getarchitecturesfromcommalist "$ARCH"); do
763 msgtest
"Build binary package for ${RELEASE} in ${SECTION}" "$NAME"
764 rm -rf "${BUILDDIR}/debian/tmp"
765 mkdir -p "${BUILDDIR}/debian/tmp/DEBIAN" "${BUILDDIR}/debian/tmp/usr/share/doc/${NAME}" "${BUILDDIR}/debian/tmp/usr/bin"
766 cp "${BUILDDIR}/debian/copyright" "${BUILDDIR}/debian/changelog" "${BUILDDIR}/FEATURES" "${BUILDDIR}/debian/tmp/usr/share/doc/${NAME}"
767 cp "${BUILDDIR}/${NAME}" "${BUILDDIR}/debian/tmp/usr/bin/${NAME}-${arch}"
768 if [ -n "$FILE_TREE" ]; then
769 cp -ar "$FILE_TREE" "${BUILDDIR}/debian/tmp"
772 (cd "${BUILDDIR}"; dpkg
-gencontrol -DArchitecture=$arch)
773 (cd "${BUILDDIR}/debian/tmp"; md5sum $(find usr/ -type f) > DEBIAN
/md5sums
)
774 local LOG
="${BUILDDIR}/../${NAME}_${VERSION}_${arch}.dpkg-deb.log"
775 # ensure the right permissions as dpkg-deb insists
776 chmod 755 "${BUILDDIR}/debian/tmp/DEBIAN"
777 testsuccess
--nomsg dpkg
-deb -Z${COMPRESS_TYPE} --build "${BUILDDIR}/debian/tmp" "${BUILDDIR}/.."
778 echo "pool/${NAME}_${VERSION}_${arch}.deb" >> "${BUILDDIR}/../${RELEASE}.${DISTSECTION}.pkglist"
782 if [ "$(echo "$NAME" | cut -c 1-3)" = 'lib' ]; then
783 NM
="$(echo "$NAME" | cut -c 1-4)"
785 NM
="$(echo "$NAME" | cut -c 1)"
787 local CHANGEPATH
="${BUILDDIR}/../${DISTSECTION}/${NM}/${NAME}/${NAME}_${VERSION}"
788 mkdir -p "$CHANGEPATH"
789 cp "${BUILDDIR}/debian/changelog" "$CHANGEPATH"
798 local ARCH
=$(getarchitecture $4)
799 local PKGNAME
="$(echo "$BUILDDIR" | grep -o '[^/]*$')"
800 local BUILDLOG
="$(readlink -f "${BUILDDIR}/../${PKGNAME}_${RELEASE}_${SECTION}.dpkg-bp.log")"
801 msgtest
"Build package for ${RELEASE} in ${SECTION}" "$PKGNAME"
803 if [ "$ARCH" = "all" ]; then
804 ARCH
="$(dpkg-architecture -qDEB_HOST_ARCH 2> /dev/null)"
806 testsuccess
--nomsg dpkg
-buildpackage -uc -us -a$ARCH
807 cp "${TMPWORKINGDIRECTORY}/rootdir/tmp/testsuccess.output" "$BUILDLOG"
808 local PKGS
="$(grep '^dpkg-deb: building package' "$BUILDLOG" | cut -d'/' -f 2 | sed -e "s#'\.##")"
809 local SRCS
="$(grep '^dpkg-source: info: building' "$BUILDLOG" | grep -o '[a-z0-9._+~-]*$')"
812 echo "pool/${PKG}" >> "${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.pkglist"
815 echo "pool/${SRC}" >> "${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.srclist"
820 if [ -d incoming
]; then
821 buildaptarchivefromincoming
"$@"
823 buildaptarchivefromfiles
"$@"
827 createaptftparchiveconfig
() {
828 local COMPRESSORS
="$(cut -d' ' -f 1 "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf" | tr '\n' ' ')"
829 local COMPRESSORS
="${COMPRESSORS%* }"
830 local ARCHS
="$(getarchitectures)"
831 cat > ftparchive.conf
<<EOF
833 ArchiveDir "$(readlink -f .)";
834 CacheDir "$(readlink -f ..)";
835 FileListDir "$(readlink -f pool/)";
838 Packages::Compress "$COMPRESSORS";
839 Sources::Compress "$COMPRESSORS";
840 Contents::Compress "$COMPRESSORS";
841 Translation::Compress "$COMPRESSORS";
842 LongDescription "false";
846 SrcDirectory "pool/";
849 for DIST
in $(find ./pool/ -maxdepth 1 -name '*.pkglist' -type f | cut -d'/' -f 3 | cut -d'.' -f 1 | sort | uniq); do
852 Architectures "$ARCHS all source";
853 FileList "${DIST}.\$(SECTION).pkglist";
854 SourceFileList "${DIST}.\$(SECTION).srclist";
855 Sections "$(find ./pool/ -maxdepth 1 -name "${DIST}.*.pkglist" -type f | cut -d'/' -f 3 | cut -d'.' -f 2 | sort | uniq | tr '\n' ' ')";
858 done >> ftparchive.conf
861 buildaptftparchivedirectorystructure
() {
862 local DISTS
="$(grep -i '^tree ' ftparchive.conf | cut -d'/' -f 2 | sed -e 's#".*##')"
863 for DIST
in $DISTS; do
864 local SECTIONS
="$(grep -i -A 5 "dists/$DIST" ftparchive.conf | grep -i 'Sections' | cut -d'"' -f 2)"
865 for SECTION
in $SECTIONS; do
866 local ARCHS
="$(grep -A 5 "dists/$DIST" ftparchive.conf | grep Architectures | cut -d'"' -f 2 | sed -e 's#source##')"
867 for ARCH
in $ARCHS; do
868 mkdir -p "dists/${DIST}/${SECTION}/binary-${ARCH}"
870 mkdir -p "dists/${DIST}/${SECTION}/source"
871 mkdir -p "dists/${DIST}/${SECTION}/i18n"
881 local DEPENDENCIES
="$5"
882 local PRIORITY
="${6:-optional}"
883 local DESCRIPTION
="${7:-an autogenerated dummy ${NAME}=${VERSION}/${RELEASES}
884 If you find such a package installed on your system,
885 something went horribly wrong! They are autogenerated
886 und used only by testcases and serve no other purpose…}"
888 for RELEASE
in $(printf '%s' "$RELEASES" | tr ',' '\n'); do
889 if [ "$RELEASE" = 'installed' ]; then
890 insertinstalledpackage
"$2" "$3" "$4" "$5" "$6" "$7"
893 for arch
in $(getarchitecturesfromcommalist "$ARCH"); do
894 if [ "$arch" = 'none' ]; then
895 ARCHS
="$(getarchitectures)"
899 for BUILDARCH
in $ARCHS; do
900 local PPATH
="aptarchive/dists/${RELEASE}/main/binary-${BUILDARCH}"
907 Maintainer: Joe Sixpack <joe@example.org>"
908 test "$arch" = 'none' || echo "Architecture: $arch"
909 echo "Version: $VERSION
910 Filename: pool/main/${NAME}/${NAME}_${VERSION}_${arch}.deb"
911 test -z "$DEPENDENCIES" || printf "%b\n" "$DEPENDENCIES"
912 echo "Description: $(printf '%s' "$DESCRIPTION" | head -n 1)"
913 echo "Description-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)"
915 } >> "${PPATH}/Packages"
918 mkdir -p "aptarchive/dists/${RELEASE}/main/source" "aptarchive/dists/${RELEASE}/main/i18n"
919 touch "aptarchive/dists/${RELEASE}/main/source/Sources"
921 Description-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)
922 Description-en: $DESCRIPTION
923 " >> "aptarchive/dists/${RELEASE}/main/i18n/Translation-en"
932 local DEPENDENCIES
="$5"
933 local BINARY
="${6:-$NAME}"
935 for RELEASE
in $(printf '%s' "$RELEASES" | tr ',' '\n'); do
936 local SPATH
="aptarchive/dists/${RELEASE}/main/source"
938 local FILE
="${SPATH}/Sources"
939 local DSCFILE
="${NAME}_${VERSION}.dsc"
940 local TARFILE
="${NAME}_${VERSION}.tar.gz"
944 Maintainer: Joe Sixpack <joe@example.org>
945 Architecture: $ARCH" >> $FILE
946 test -z "$DEPENDENCIES" || printf "%b\n" "$DEPENDENCIES" >> "$FILE"
948 $(echo -n "$DSCFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
949 $(echo -n "$TARFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
951 $(echo -n "$DSCFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
952 $(echo -n "$TARFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
957 insertinstalledpackage
() {
961 local DEPENDENCIES
="$4"
962 local PRIORITY
="${5:-optional}"
963 local STATUS
="${6:-install ok installed}"
964 local DESCRIPTION
="${7:-an autogenerated dummy ${NAME}=${VERSION}/installed
965 If you find such a package installed on your system,
966 something went horribly wrong! They are autogenerated
967 und used only by testcases and serve no other purpose…}"
969 local FILE
='rootdir/var/lib/dpkg/status'
970 local INFO
='rootdir/var/lib/dpkg/info'
971 for arch
in $(getarchitecturesfromcommalist "$ARCH"); do
977 Maintainer: Joe Sixpack <joe@example.org>
978 Version: $VERSION" >> "$FILE"
979 test "$arch" = 'none' || echo "Architecture: $arch" >> "$FILE"
980 test -z "$DEPENDENCIES" || printf "%b\n" "$DEPENDENCIES" >> "$FILE"
981 printf "%b\n" "Description: $DESCRIPTION" >> "$FILE"
983 if [ "$(dpkg-query -W --showformat='${Multi-Arch}')" = 'same' ]; then
984 echo -n > "${INFO}/${NAME}:${arch}.list"
986 echo -n > "${INFO}/${NAME}.list"
992 buildaptarchivefromincoming
() {
993 msginfo
"Build APT archive for ${CCMD}${0##*/}${CINFO} based on incoming packages…"
995 [ -e pool
] || ln -s ..
/incoming pool
996 [ -e ftparchive.conf
] || createaptftparchiveconfig
997 [ -e dists
] || buildaptftparchivedirectorystructure
998 msgninfo
"\tGenerate Packages, Sources and Contents files… "
999 testsuccess aptftparchive generate ftparchive.conf
1002 generatereleasefiles
"$@"
1005 buildaptarchivefromfiles
() {
1006 msginfo
"Build APT archive for ${CCMD}${0##*/}${CINFO} based on prebuild files…"
1007 local DIR
='aptarchive'
1008 if [ -d "${DIR}/dists" ]; then DIR
="${DIR}/dists"; fi
1009 find "$DIR" -name 'Packages' -o -name 'Sources' -o -name 'Translation-*' | while read line
; do
1010 msgninfo
"\t${line} file… "
1011 compressfile
"$line" "$1"
1014 generatereleasefiles
"$@"
1018 while read compressor extension
command; do
1019 if [ "$compressor" = '.' ]; then
1020 if [ -n "$2" ]; then
1025 cat "$1" | $command > "${1}.${extension}"
1026 if [ -n "$2" ]; then
1027 touch -d "$2" "${1}.${extension}"
1029 done < "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf"
1032 # can be overridden by testcases for their pleasure
1033 getcodenamefromsuite
() {
1035 unstable
) echo 'sid';;
1039 getreleaseversionfromsuite
() { true
; }
1040 getlabelfromsuite
() { true
; }
1041 getoriginfromsuite
() { true
; }
1042 getarchitecturesfromreleasefile
() { echo "all $(getarchitectures)"; }
1044 aptftparchiverelease
() {
1045 aptftparchive
-qq release
"$@" | sed -e '/0 Release$/ d' # remove the self reference
1047 generatereleasefiles
() {
1048 # $1 is the Date header and $2 is the ValidUntil header to be set
1049 # both should be given in notation date/touch can understand
1051 local VALIDUNTIL
="$2"
1052 if [ -e aptarchive
/dists
]; then
1053 msgninfo
"\tGenerate Release files for dists… "
1054 for dir
in $(find ./aptarchive/dists -mindepth 1 -maxdepth 1 -type d); do
1055 local ARCHITECTURES
="$(getarchitecturesfromreleasefile "$dir")"
1056 local SUITE
="$(echo "$dir" | cut -d'/' -f 4)"
1057 local CODENAME
="$(getcodenamefromsuite $SUITE)"
1058 local VERSION
="$(getreleaseversionfromsuite $SUITE)"
1059 local LABEL
="$(getlabelfromsuite $SUITE)"
1060 local ORIGIN
="$(getoriginfromsuite $SUITE)"
1061 aptftparchiverelease
"$dir" \
1062 -o APT
::FTPArchive
::Release
::Suite
="${SUITE}" \
1063 -o APT
::FTPArchive
::Release
::Codename
="${CODENAME}" \
1064 -o APT
::FTPArchive
::Release
::Architectures
="${ARCHITECTURES}" \
1065 -o APT
::FTPArchive
::Release
::Label
="${LABEL}" \
1066 -o APT
::FTPArchive
::Release
::Origin
="${ORIGIN}" \
1067 -o APT
::FTPArchive
::Release
::Version
="${VERSION}" \
1069 if [ "$SUITE" = "experimental" -o "$SUITE" = "experimental2" ]; then
1070 sed -i '/^Date: / a\
1071 NotAutomatic: yes' "$dir/Release"
1075 msgninfo
"\tGenerate Release files for flat… "
1076 aptftparchiverelease .
/aptarchive
> aptarchive
/Release
1078 if [ -n "$DATE" -a "$DATE" != "now" ]; then
1079 for release
in $(find ./aptarchive -name 'Release'); do
1080 sed -i "s/^Date: .*$/Date: $(date -u -d "$DATE" -R)/" "$release"
1081 touch -d "$DATE" "$release"
1084 if [ -n "$VALIDUNTIL" ]; then
1085 sed -i "/^Date: / a\
1086 Valid-Until: $(date -u -d "$VALIDUNTIL" -R)" $(find ./aptarchive -name 'Release')
1091 setupdistsaptarchive
() {
1092 local APTARCHIVE
="$(readlink -f ./aptarchive | sed 's# #%20#g')"
1093 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb.list
1094 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb-src.list
1095 for DISTS
in $(find ./aptarchive/dists/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 4); do
1096 SECTIONS
=$(find "./aptarchive/dists/${DISTS}/" -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 5 | tr '\n' ' ')
1097 msgninfo
"\tadd deb and deb-src sources.list lines for ${CCMD}${DISTS} ${SECTIONS}${CINFO}… "
1098 echo "deb file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb.list"
1099 echo "deb-src file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb-src.list"
1104 setupflataptarchive
() {
1105 local APTARCHIVE
="$(readlink -f ./aptarchive)"
1106 local APTARCHIVEURI
="$(readlink -f ./aptarchive | sed 's# #%20#g')"
1107 if [ -f "${APTARCHIVE}/Packages" ]; then
1108 msgninfo
"\tadd deb sources.list line… "
1109 echo "deb file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
1112 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
1114 if [ -f "${APTARCHIVE}/Sources" ]; then
1115 msgninfo
"\tadd deb-src sources.list line… "
1116 echo "deb-src file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
1119 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
1125 if [ "$1" = '--no-update' ]; then
1129 buildaptarchive
"$@"
1130 if [ -e aptarchive
/dists
]; then
1131 setupdistsaptarchive
1135 signreleasefiles
'Joe Sixpack'
1136 if [ "1" != "$NOUPDATE" ]; then
1137 testsuccess aptget update
-o Debug
::pkgAcquire
::Worker
=true
-o Debug
::Acquire
::gpgv
=true
1141 signreleasefiles
() {
1142 local SIGNERS
="${1:-Joe Sixpack}"
1143 local REPODIR
="${2:-aptarchive}"
1144 if [ -n "$1" ]; then shift; fi
1145 if [ -n "$1" ]; then shift; fi
1146 local KEY
="keys/$(echo "$SIGNERS" | tr 'A-Z' 'a-z' | tr -d ' ,')"
1147 msgninfo
"\tSign archive with $SIGNERS key $KEY… "
1148 local REXKEY
='keys/rexexpired'
1149 local SECEXPIREBAK
="${REXKEY}.sec.bak"
1150 local PUBEXPIREBAK
="${REXKEY}.pub.bak"
1152 while [ -n "${SIGNERS%%,*}" ]; do
1153 local SIGNER
="${SIGNERS%%,*}"
1154 if [ "${SIGNERS}" = "${SIGNER}" ]; then
1157 SIGNERS
="${SIGNERS#*,}"
1158 # FIXME: This should be the full name, but we can't encode the space properly currently
1159 SIGUSERS
="${SIGUSERS} -u ${SIGNER#* }"
1160 if [ "${SIGNER}" = 'Rex Expired' ]; then
1161 # the key is expired, so gpg doesn't allow to sign with and the --faked-system-time
1162 # option doesn't exist anymore (and using faketime would add a new obscure dependency)
1163 # therefore we 'temporary' make the key not expired and restore a backup after signing
1164 cp "${REXKEY}.sec" "$SECEXPIREBAK"
1165 cp "${REXKEY}.pub" "$PUBEXPIREBAK"
1166 local SECUNEXPIRED
="${REXKEY}.sec.unexpired"
1167 local PUBUNEXPIRED
="${REXKEY}.pub.unexpired"
1168 if [ -f "$SECUNEXPIRED" ] && [ -f "$PUBUNEXPIRED" ]; then
1169 cp "$SECUNEXPIRED" "${REXKEY}.sec"
1170 cp "$PUBUNEXPIRED" "${REXKEY}.pub"
1172 if ! printf "expire\n1w\nsave\n" | aptkey
--quiet --keyring "${REXKEY}.pub" --secret-keyring "${REXKEY}.sec" \
1173 --readonly adv
--batch --yes --digest-algo "${APT_TESTS_DIGEST_ALGO:-SHA512}" \
1174 --default-key "$SIGNER" --command-fd 0 --edit-key "${SIGNER}" >setexpire.gpg
2>&1; then
1178 cp "${REXKEY}.sec" "$SECUNEXPIRED"
1179 cp "${REXKEY}.pub" "$PUBUNEXPIRED"
1182 if [ ! -e "${KEY}.pub" ]; then
1183 local K
="keys/$(echo "$SIGNER" | tr 'A-Z' 'a-z' | tr -d ' ,')"
1184 cat "${K}.pub" >> "${KEY}.new.pub"
1185 cat "${K}.sec" >> "${KEY}.new.sec"
1188 if [ ! -e "${KEY}.pub" ]; then
1189 mv "${KEY}.new.pub" "${KEY}.pub"
1190 mv "${KEY}.new.sec" "${KEY}.sec"
1192 local GPG
="aptkey --quiet --keyring ${KEY}.pub --secret-keyring ${KEY}.sec --readonly adv --batch --yes --digest-algo ${APT_TESTS_DIGEST_ALGO:-SHA512}"
1193 for RELEASE
in $(find "${REPODIR}/" -name Release); do
1194 # we might have set a specific date for the Release file, so copy it
1195 local DATE
="$(stat --format "%y" "${RELEASE}")"
1196 if [ "$APT_DONT_SIGN" = 'Release.gpg' ]; then
1197 rm -f "${RELEASE}.gpg"
1199 testsuccess
$GPG "$@" $SIGUSERS --armor --detach-sign --sign --output "${RELEASE}.gpg" "${RELEASE}"
1200 touch -d "$DATE" "${RELEASE}.gpg"
1202 local INRELEASE
="${RELEASE%/*}/InRelease"
1203 if [ "$APT_DONT_SIGN" = 'InRelease' ]; then
1206 testsuccess
$GPG "$@" $SIGUSERS --clearsign --output "$INRELEASE" "$RELEASE"
1207 touch -d "$DATE" "${INRELEASE}"
1210 if [ -f "$SECEXPIREBAK" ] && [ -f "$PUBEXPIREBAK" ]; then
1211 mv -f "$SECEXPIREBAK" "${REXKEY}.sec"
1212 mv -f "$PUBEXPIREBAK" "${REXKEY}.pub"
1217 redatereleasefiles
() {
1218 local DATE
="$(date -u -d "$1" -R)"
1219 for release
in $(find aptarchive/ -name 'Release'); do
1220 sed -i "s/^Date: .*$/Date: ${DATE}/" "$release"
1221 touch -d "$DATE" "$release"
1223 signreleasefiles
"${2:-Joe Sixpack}"
1227 local WEBSERVER
="${3:-http://localhost:${APTHTTPPORT}}"
1229 if [ "$1" = '--no-check' ]; then
1233 local DOWNLOG
='rootdir/tmp/download-testfile.log'
1234 local STATUS
='downloaded/webserverconfig.status'
1235 rm -f "$STATUS" "$DOWNLOG"
1236 # very very basic URI encoding
1238 if [ -n "$2" ]; then
1239 msgtest
"Set webserver config option '${1}' to" "$2"
1240 URI
="${WEBSERVER}/_config/set/$(echo "${1}" | sed -e 's/\//%2f/g')/$(echo "${2}" | sed -e 's/\//%2f/g')"
1242 msgtest
'Clear webserver config option' "${1}"
1243 URI
="${WEBSERVER}/_config/clear/$(echo "${1}" | sed -e 's/\//%2f/g')"
1245 if downloadfile
"$URI" "$STATUS" > "$DOWNLOG"; then
1248 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/webserverconfig.output"
1249 cat "$DOWNLOG" "$STATUS" >"$OUTPUT" 2>&1 || true
1250 msgfailoutput
'' "$OUTPUT"
1252 $NOCHECK || testwebserverlaststatuscode
'200'
1255 rewritesourceslist
() {
1256 local APTARCHIVE
="file://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
1257 local APTARCHIVE2
="copy://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
1258 for LIST
in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
1259 sed -i $LIST -e "s#$APTARCHIVE#${1}#" -e "s#$APTARCHIVE2#${1}#" \
1260 -e "s#http://[^@]*@\?localhost:${APTHTTPPORT}/\?#${1}#" \
1261 -e "s#https://[^@]*@\?localhost:${APTHTTPSPORT}/\?#${1}#"
1265 # wait for up to 10s for a pid file to appear to avoid possible race
1266 # when a helper is started and dosn't write the PID quick enough
1269 for i
in $(seq 10); do
1270 if test -s "$PIDFILE"; then
1275 msgdie
"waiting for $PIDFILE failed"
1279 changetowebserver
() {
1281 if [ "$1" != '--no-rewrite' ]; then
1286 if test -x "${APTWEBSERVERBINDIR}/aptwebserver"; then
1288 local LOG
="webserver.log"
1289 if ! aptwebserver
--port 0 -o aptwebserver
::fork
=1 -o aptwebserver
::portfile
='aptwebserver.port' "$@" >$LOG 2>&1 ; then
1293 waitforpidfile aptwebserver.pid
1294 local PID
="$(cat aptwebserver.pid)"
1295 if [ -z "$PID" ]; then
1296 msgdie
'Could not fork aptwebserver successfully'
1298 addtrap
"kill $PID;"
1299 waitforpidfile aptwebserver.port
1300 APTHTTPPORT
="$(cat aptwebserver.port)"
1301 if [ -z "$APTHTTPPORT" ]; then
1302 msgdie
'Could not get port for aptwebserver successfully'
1306 msgdie
'You have to build apt from source to have test/interactive-helper/aptwebserver available for tests requiring a webserver'
1308 if [ "$REWRTE" != 'yes' ]; then
1309 rewritesourceslist
"http://localhost:${APTHTTPPORT}/"
1313 changetohttpswebserver
() {
1315 if command -v stunnel4
>/dev
/null
2>&1; then
1317 elif command -v stunnel
>/dev
/null
2>&1; then
1320 msgdie
'You need to install stunnel4 for https testcases'
1322 if [ ! -e "${TMPWORKINGDIRECTORY}/aptarchive/aptwebserver.pid" ]; then
1323 changetowebserver
--no-rewrite "$@"
1325 echo "pid = ${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid
1326 cert = ${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem
1331 connect = $APTHTTPPORT
1332 " > "${TMPWORKINGDIRECTORY}/stunnel.conf"
1333 $stunnel4 "${TMPWORKINGDIRECTORY}/stunnel.conf"
1334 waitforpidfile
"${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid"
1335 local PID
="$(cat "${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid")"
1336 if [ -z "$PID" ]; then
1337 msgdie
'Could not fork $stunnel4 successfully'
1339 addtrap
'prefix' "kill ${PID};"
1340 APTHTTPSPORT
="$(lsof -i -n | awk "/^$stunnel4 / && \$2 == \"${PID}\" {print \$9; exit; }" | cut -d':' -f 2)"
1341 webserverconfig
'aptwebserver::port::https' "$APTHTTPSPORT" "https://localhost:${APTHTTPSPORT}"
1342 rewritesourceslist
"https://localhost:${APTHTTPSPORT}/"
1346 mkdir -p rootdir
/media
/cdrom
/.disk
1347 local CD
="$(readlink -f rootdir/media/cdrom)"
1348 cat > rootdir
/etc
/apt
/apt.conf.d
/00cdrom
<<EOF
1349 acquire::cdrom::mount "${CD}";
1350 acquire::cdrom::"${CD}/"::mount "mv ${CD}-unmounted ${CD}";
1351 acquire::cdrom::"${CD}/"::umount "mv ${CD} ${CD}-unmounted";
1352 acquire::cdrom::autodetect 0;
1354 echo -n "$1" > "${CD}/.disk/info"
1355 if [ ! -d aptarchive
/dists
]; then
1356 msgdie
'Flat file archive cdroms can not be created currently'
1359 mv aptarchive
/dists
"$CD"
1360 ln -s "$(readlink -f ./incoming)" "$CD/pool"
1361 find rootdir
/etc
/apt
/sources.list.d
/ -name 'apt-test-*.list' -delete
1362 # start with an unmounted disk
1363 mv "${CD}" "${CD}-unmounted"
1364 # we don't want the disk to be modifiable
1365 addtrap
'prefix' "chmod -f -R +w '$(escape_shell "$PWD/rootdir/media/cdrom/dists/")' '$(escape_shell "$PWD/rootdir/media/cdrom-unmounted/dists/")' || true;"
1366 chmod -R 555 rootdir
/media
/cdrom
-unmounted/dists
1370 local PROTO
="${1%%:*}"
1371 if ! apthelper
-o Debug
::Acquire
::${PROTO}=1 -o Debug
::pkgAcquire
::Worker
=1 \
1372 download
-file "$1" "$2" "$3" 2>&1 ; then
1375 # only if the file exists the download was successful
1376 if [ -r "$2" ]; then
1384 local DIFFTEXT
="$(command diff -u "$@" 2>&1 | sed -e '/^---/ d' -e '/^+++/ d' -e '/^@@/ d')"
1385 if [ -n "$DIFFTEXT" ]; then
1387 echo >&2 "$DIFFTEXT"
1395 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testoutputequal.output"
1396 local COMPAREFILE
="$1"
1398 if "$@" 2>&1 | checkdiff
"$COMPAREFILE" - >"$OUTPUT" 2>&1; then
1401 echo "=== content of file we compared with (${COMPAREFILE}) ===" >>"${OUTPUT}"
1402 cat "$COMPAREFILE" >>"${OUTPUT}"
1403 msgfailoutput
'' "$OUTPUT" "$@"
1408 msggroup
'testfileequal'
1409 local MSG
='Test for correctness of file'
1410 if [ "$1" = '--nomsg' ]; then
1416 if [ -n "$MSG" ]; then
1417 msgtest
"$MSG" "$FILE"
1419 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfileequal.output"
1420 if [ -z "$*" ]; then
1421 testoutputequal
"$FILE" echo -n ''
1423 testoutputequal
"$FILE" echo "$*"
1429 msggroup
'testempty'
1430 if [ "$1" = '--nomsg' ]; then
1433 msgtest
"Test for no output of" "$*"
1435 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testempty.comparefile"
1436 if "$@" >"$COMPAREFILE" 2>&1 && test ! -s "$COMPAREFILE"; then
1439 msgfailoutput
'' "$COMPAREFILE" "$@"
1441 aptautotest
'testempty' "$@"
1445 msggroup
'testnotempty'
1446 msgtest
"Test for some output of" "$*"
1447 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnotempty.comparefile"
1448 if ("$@" >"$COMPAREFILE" 2>&1 || true
) && test -s "$COMPAREFILE"; then
1451 msgfailoutput
'' "$COMPAREFILE" "$@"
1453 aptautotest
'testnotempty' "$@"
1458 msggroup
'testequal'
1459 local MSG
='Test of equality of'
1460 if [ "$1" = '--nomsg' ]; then
1465 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.comparefile"
1466 echo "$1" > "$COMPAREFILE"
1469 if [ -n "$MSG" ]; then
1472 testoutputequal
"$COMPAREFILE" "$@"
1473 aptautotest
'testequal' "$@"
1478 msggroup
'testequalor2'
1479 local COMPAREFILE1
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile1"
1480 local COMPAREFILE2
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile2"
1481 local COMPAREAGAINST
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.compareagainst"
1482 echo "$1" > "$COMPAREFILE1"
1483 echo "$2" > "$COMPAREFILE2"
1485 msgtest
"Test for equality OR of" "$*"
1486 "$@" >"$COMPAREAGAINST" 2>&1 || true
1487 if checkdiff
"$COMPAREFILE1" "$COMPAREAGAINST" >/dev
/null
2>&1 || \
1488 checkdiff
"$COMPAREFILE2" "$COMPAREAGAINST" >/dev
/null
2>&1
1492 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.output"
1493 echo -n "\n${CINFO}Diff against OR 1${CNORMAL}" >"$OUTPUT" 2>&1
1494 checkdiff
"$COMPAREFILE1" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1495 echo -n "${CINFO}Diff against OR 2${CNORMAL}" >"$OUTPUT" 2>&1
1496 checkdiff
"$COMPAREFILE2" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1497 msgfailoutput
'' "$OUTPUT"
1499 aptautotest
'testequalor2' "$@"
1504 msggroup
'testshowvirtual'
1505 local VIRTUAL
="N: Can't select versions from package '$1' as it is purely virtual"
1508 while [ -n "$1" ]; do
1510 N: Can't select versions from package '$1' as it is purely virtual"
1511 PACKAGE
="${PACKAGE} $1"
1514 msgtest
"Test for virtual packages" "apt-cache show $PACKAGE"
1516 N: No packages found"
1517 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.comparefile"
1518 local ARCH
="$(getarchitecture 'native')"
1519 echo "$VIRTUAL" | sed -e "s/:$ARCH//" -e 's/:all//' >"$COMPAREFILE"
1520 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.output"
1521 testoutputequal
"$COMPAREFILE" aptcache show
"$PACKAGE"
1526 msggroup
'testnopackage'
1527 msgtest
"Test for non-existent packages" "apt-cache show $*"
1528 local SHOWPKG
="$(aptcache show "$@" 2>&1 | grep '^Package: ')"
1529 if [ -n "$SHOWPKG" ]; then
1530 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1531 echo "$SHOWPKG" >"$OUTPUT"
1532 msgfailoutput
'' "$OUTPUT"
1538 testnosrcpackage
() {
1539 msggroup
'testnosrcpackage'
1540 msgtest
"Test for non-existent source packages" "apt-cache showsrc $*"
1541 local SHOWPKG
="$(aptcache showsrc "$@" 2>&1 | grep '^Package: ')"
1542 if [ -n "$SHOWPKG" ]; then
1543 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnosrcpackage.output"
1544 echo "$SHOWPKG" >"$OUTPUT"
1545 msgfailoutput
'' "$OUTPUT"
1553 msggroup
'testdpkgstatus'
1557 msgtest
"Test that $NR package(s) are in state $STATE with" "dpkg -l $*"
1558 local PKGS
="$(dpkg -l "$@" 2>/dev/null | grep "^${STATE}" | wc -l)"
1559 if [ "$PKGS" != $NR ]; then
1560 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1561 echo "$PKGS" >"$OUTPUT"
1562 dpkg
-l "$@" | grep '^[a-z]' >"$OUTPUT" >&2 || true
1563 msgfailoutput
'' "$OUTPUT"
1570 testdpkginstalled
() {
1571 msggroup
'testdpkginstalled'
1572 testdpkgstatus
'ii' "$#" "$@"
1576 testdpkgnotinstalled
() {
1577 msggroup
'testdpkgnotinstalled'
1578 testdpkgstatus
'ii' '0' "$@"
1583 msggroup
'testmarkedauto'
1584 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedauto.comparefile"
1585 if [ -n "$1" ]; then
1586 msgtest
'Test for correctly marked as auto-installed' "$*"
1587 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
1589 msgtest
'Test for correctly marked as auto-installed' 'no package'
1590 echo -n > "$COMPAREFILE"
1592 testoutputequal
"$COMPAREFILE" aptmark showauto
1595 testmarkedmanual
() {
1596 msggroup
'testmarkedmanual'
1597 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedmanual.comparefile"
1598 if [ -n "$1" ]; then
1599 msgtest
'Test for correctly marked as manually installed' "$*"
1600 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
1602 msgtest
'Test for correctly marked as manually installed' 'no package'
1603 echo -n > "$COMPAREFILE"
1605 testoutputequal
"$COMPAREFILE" aptmark showmanual
1610 if [ "${1##*.}" = 'deb' ]; then
1611 stat
>&2 "$1" || true
1612 file >&2 "$1" || true
1614 cat >&2 "$1" || true
1618 msgreportheader
'msgfailoutput'
1623 if [ "$1" = 'grep' -o "$1" = 'tail' -o "$1" = 'head' ]; then
1625 while [ -n "$2" ]; do shift; done
1626 echo "#### Complete file: $1 ####"
1628 echo "#### $CMD output ####"
1629 elif [ "$1" = 'test' ]; then
1631 # doesn't support ! or non-file flags
1632 msgfailoutputstatfile
() {
1633 local FILEFLAGS
='^-[bcdefgGhkLOprsStuwx]$'
1634 if expr match
"$1" "$FILEFLAGS" >/dev
/null
; then
1635 echo "#### stat(2) of file: $2 ####"
1637 if test -d "$2"; then
1638 echo "#### The directory contains: $2 ####"
1640 elif test -e "$2"; then
1641 echo "#### Complete file: $2 ####"
1646 msgfailoutputstatfile
"$2" "$3"
1647 while [ -n "$5" ] && [ "$4" = '-o' -o "$4" = '-a' ]; do
1649 msgfailoutputstatfile
"$2" "$3"
1651 echo '#### test output ####'
1652 elif [ "$1" = 'cmp' ]; then
1654 while [ -n "$2" ]; do
1655 echo "#### Complete file: $2 ####"
1659 echo '#### cmp output ####'
1665 testsuccesswithglobalerror
() {
1670 if [ "$1" = '--nomsg' ]; then
1673 msgtest
'Test for successful execution of' "$*"
1675 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/${TYPE}.output"
1676 if "$@" >"${OUTPUT}" 2>&1; then
1677 if expr match
"$1" '^apt.*' >/dev
/null
; then
1678 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1679 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1680 elif grep -E "^[${ERRORS}]: " "$OUTPUT" > "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" 2>&1; then
1681 if [ "$IGNORE_PTY_NOT_MOUNTED" = '1' ]; then
1682 if echo 'E: Can not write log (Is /dev/pts mounted?) - posix_openpt (2: No such file or directory)' \
1683 | cmp - "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" >/dev
/null
2>&1; then
1686 msgfailoutput
'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1689 msgfailoutput
'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1691 elif [ "$TYPE" = 'testsuccesswithnotice' ]; then
1692 if grep -q -E "^N: " "$OUTPUT"; then
1695 msgfailoutput
'successful run, but output had no notices' "$OUTPUT" "$@"
1705 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1707 aptautotest
"$TYPE" "$@"
1710 testsuccesswithnotice
() {
1711 testsuccesswithglobalerror
'testsuccesswithnotice' 'WE' "$@"
1714 testsuccesswithglobalerror
'testsuccess' 'NWE' "$@"
1717 msggroup
'testwarning'
1718 if [ "$1" = '--nomsg' ]; then
1721 msgtest
'Test for successful execution with warnings of' "$*"
1723 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output"
1724 if "$@" >"${OUTPUT}" 2>&1; then
1725 if expr match
"$1" '^apt.*' >/dev
/null
; then
1726 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1727 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1728 elif grep -q -E '^E: ' "$OUTPUT"; then
1729 msgfailoutput
'successful run, but output contains errors' "$OUTPUT" "$@"
1730 elif ! grep -q -E '^W: ' "$OUTPUT"; then
1731 msgfailoutput
'successful run, but output contains no warnings' "$OUTPUT" "$@"
1740 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1742 aptautotest
'testwarning' "$@"
1746 msggroup
'testfailure'
1747 if [ "$1" = '--nomsg' ]; then
1750 msgtest
'Test for failure in execution of' "$*"
1752 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output"
1753 if "$@" >"${OUTPUT}" 2>&1; then
1755 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1758 if expr match
"$1" '^apt.*' >/dev
/null
; then
1759 if [ "$1" = 'aptkey' ]; then
1760 if grep -q " Can't check signature:
1762 signature could not be verified" "$OUTPUT"; then
1765 msgfailoutput
"run failed with exitcode ${EXITCODE}, but no signature error" "$OUTPUT" "$@"
1768 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1769 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1770 elif grep -q -E '==ERROR' "$OUTPUT"; then
1771 msgfailoutput
'compiler sanitizers reported errors' "$OUTPUT" "$@"
1772 elif ! grep -q -E '^E: ' "$OUTPUT"; then
1773 msgfailoutput
"run failed with exitcode ${EXITCODE}, but with no errors" "$OUTPUT" "$@"
1782 aptautotest
'testfailure' "$@"
1786 testreturnstateequal
() {
1788 if [ "$STATE" = 'testsuccesswithglobalerror' ]; then
1792 msggroup
"${STATE}equal"
1793 if [ "$1" != '--nomsg' ]; then
1796 testsuccesswithglobalerror
"$STATE" "$TYPE" "$@"
1797 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1801 testsuccesswithglobalerror
"$STATE" "$TYPE" "$@"
1802 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1805 msggroup
"${STATE}equal"
1806 if [ "$2" != '--nomsg' ]; then
1810 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1814 "$STATE" --nomsg "$@"
1815 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1820 testsuccessequal
() {
1821 # we compare output, so we know perfectly well about N:
1822 testreturnstateequal
'testsuccesswithglobalerror' 'testsuccess' 'WE' "$@"
1824 testwarningequal
() {
1825 testreturnstateequal
'testwarning' "$@"
1827 testfailureequal
() {
1828 testreturnstateequal
'testfailure' "$@"
1832 msggroup
'testfailuremsg'
1836 msgtest
'Check that the output of the previous failed command has expected' 'failures and warnings'
1837 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailuremsg.comparefile"
1838 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output" > "$COMPAREFILE" 2>&1 || true
1839 testoutputequal
"$COMPAREFILE" echo "$CMP"
1843 msggroup
'testwarningmsg'
1847 msgtest
'Check that the output of the previous warned command has expected' 'warnings'
1848 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarningmsg.comparefile"
1849 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output" > "$COMPAREFILE" 2>&1 || true
1850 testoutputequal
"$COMPAREFILE" echo "$CMP"
1855 msggroup
'testfilestats'
1856 msgtest
"Test that file $1 has $2 $3" "$4"
1857 if [ "$4" "$3" "$(stat --format "$2" "$1")" ]; then
1860 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfilestats.output"
1863 echo -n "stat(1) reports for $2: "
1864 stat
--format "$2" "$1" || true
1866 msgfailoutput
'' "$OUTPUT"
1870 testaccessrights
() {
1871 msggroup
'testaccessrights'
1872 testfilestats
"$1" '%a' '=' "$2"
1876 testwebserverlaststatuscode
() {
1877 msggroup
'testwebserverlaststatuscode'
1878 local DOWNLOG
='rootdir/tmp/webserverstatus-testfile.log'
1879 local STATUS
='downloaded/webserverstatus-statusfile.log'
1880 rm -f "$DOWNLOG" "$STATUS"
1881 msgtest
'Test last status code from the webserver was' "$1"
1882 if downloadfile
"http://localhost:${APTHTTPPORT}/_config/find/aptwebserver::last-status-code" "$STATUS" > "$DOWNLOG" && [ "$(cat "$STATUS")" = "$1" ]; then
1885 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwebserverlaststatuscode.output"
1887 if [ -n "$2" ]; then
1889 echo >&2 '#### Additionally provided output files contain:'
1892 echo >&2 '#### Download log of the status code:'
1895 msgfailoutput
"Status was $(cat "$STATUS")" "$OUTPUT"
1900 mapkeynametokeyid
() {
1901 while [ -n "$1" ]; do
1903 *Joe
*|*Sixpack
*|newarchive
) echo '5A90D141DBAC8DAE';;
1904 *Rex
*|*Expired
*) echo '4BC0A39C27CE74F9';;
1905 *Marvin
*|*Paranoid
*) echo 'E8525D47528144E2';;
1906 oldarchive
) echo 'FDD2DB85F68C85A3';;
1907 *) echo 'UNKNOWN KEY';;
1913 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/aptkeylist.output"
1914 if ! aptkey list
--with-colon | grep '^pub' | cut
-d':' -f 5 > "$OUTPUT"; then
1917 testfileequal
"$OUTPUT" "$(mapkeynametokeyid "$@")"
1921 echo "STOPPED execution. Press enter to continue"
1926 logcurrentarchivedirectory
() {
1927 find "${TMPWORKINGDIRECTORY}/aptarchive/dists" -type f
| while read line
; do
1928 stat
--format '%U:%G:%a:%n' "$line"
1929 done | sort > "${TMPWORKINGDIRECTORY}/rootdir/var/log/aptgetupdate.before.lst"
1931 listcurrentlistsdirectory
() {
1933 find rootdir
/var
/lib
/apt
/lists
-maxdepth 1 -type d
| while read line
; do
1934 stat
--format '%U:%G:%a:%n' "$line"
1936 find rootdir
/var
/lib
/apt
/lists
-maxdepth 1 \
! -type d
| while read line
; do
1937 stat
--format '%U:%G:%a:%s:%y:%n' "$line"
1941 forallsupportedcompressors
() {
1942 rm -f "${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/00force-compressor"
1943 for COMP
in $(aptconfig dump 'APT::Compressor' --format '%f%n' | cut -d':' -f 5 | uniq); do
1944 if [ -z "$COMP" -o "$COMP" = '.' ]; then continue; fi
1949 ### convenience hacks ###
1951 # creating some directories by hand is a tedious task, so make it look simple
1953 if [ "$PARAMS" != "${PARAMS#*rootdir/var/lib/apt/lists}" ]; then
1954 # only the last directory created by mkdir is effected by the -m !
1955 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt"
1956 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"
1957 command mkdir -m 700 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1958 touch "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/lock"
1959 if [ "$(id -u)" = '0' ]; then
1960 chown _apt
:root
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1967 ### The following tests are run by most test methods automatically to check
1968 ### general things about commands executed without writing the test every time.
1971 if [ $# -lt 3 ]; then return; fi
1977 if ! expr match
"$i" '^-' >/dev
/null
2>&1; then
1983 local AUTOTEST
="aptautotest_$(echo "${CMD##*/}_${FIRSTOPT}" | tr -d -c 'A-za-z0-9')"
1984 if command -v $AUTOTEST >/dev
/null
; then
1985 # save and restore the *.output files from other tests
1986 # as we might otherwise override them in these automatic tests
1987 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1988 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1989 mkdir "${TMPWORKINGDIRECTORY}/rootdir/tmp"
1990 $AUTOTEST "$TESTCALL" "$@"
1991 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1992 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1993 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp-before" "${TMPWORKINGDIRECTORY}/rootdir/tmp"
1997 aptautotest_aptget_update
() {
1999 while [ -n "$2" ]; do
2000 if [ "$2" = '--print-uris' ]; then return; fi # simulation mode
2003 if ! test -d "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"; then return; fi
2004 testfilestats
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
2005 testfilestats
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
2006 # all copied files are properly chmodded
2007 local backupIFS
="$IFS"
2008 IFS
="$(printf "\n\b")"
2009 for file in $(find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" -type f ! -name 'lock'); do
2010 testfilestats
"$file" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:644"
2013 if [ "$TESTCALL" = 'testsuccess' ]; then
2014 # failure cases can retain partial files and such
2015 testempty
find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial" -mindepth 1 ! \
( -name 'lock' -o -name '*.FAILED' \
)
2017 if [ -s "${TMPWORKINGDIRECTORY}/rootdir/var/log/aptgetupdate.before.lst" ]; then
2018 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/var/log/aptgetupdate.before.lst" \
2019 "$(find "${TMPWORKINGDIRECTORY}/aptarchive/dists" -type f | while read line; do stat --format '%U:%G:%a:%n' "$line"; done | sort)"
2022 aptautotest_apt_update
() { aptautotest_aptget_update
"$@"; }
2023 aptautotest_aptcdrom_add
() { aptautotest_aptget_update
"$@"; }
2025 testaptautotestnodpkgwarning
() {
2027 while [ -n "$2" ]; do
2028 if expr match
"$2" '^-[a-z]*s' >/dev
/null
2>&1; then return; fi # simulation mode
2029 if expr match
"$2" '^-dy\?' >/dev
/null
2>&1; then return; fi # download-only mode
2032 testfailure
grep '^dpkg: warning:.*ignor.*' "${TMPWORKINGDIRECTORY}/rootdir/tmp-before/${TESTCALL}.output"
2035 aptautotest_aptget_install
() { testaptautotestnodpkgwarning
"$@"; }
2036 aptautotest_aptget_remove
() { testaptautotestnodpkgwarning
"$@"; }
2037 aptautotest_aptget_purge
() { testaptautotestnodpkgwarning
"$@"; }
2038 aptautotest_apt_install
() { testaptautotestnodpkgwarning
"$@"; }
2039 aptautotest_apt_remove
() { testaptautotestnodpkgwarning
"$@"; }
2040 aptautotest_apt_purge
() { testaptautotestnodpkgwarning
"$@"; }
2042 testaptmarknodefaultsections
() {
2043 testfailure
grep '^Auto-Installed: 0$' "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/extended_states"
2045 aptautotest_aptmark_auto
() { testaptmarknodefaultsections
"$@"; }
2046 aptautotest_aptmark_manual
() { testaptmarknodefaultsections
"$@"; }
2047 aptautotest_aptget_markauto
() { testaptmarknodefaultsections
"$@"; }
2048 aptautotest_aptget_markmanual
() { testaptmarknodefaultsections
"$@"; }