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 --log='${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log' \\
411 --force-not-root --force-bad-path "\$@"
413 cat >> "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg" <<EOF
414 exec fakeroot gdb --quiet -ex run '${DPKG:-dpkg}' --args '${DPKG:-dpkg}' --root='${TMPWORKINGDIRECTORY}/rootdir' \\
415 --log='${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log' \\
416 --force-not-root --force-bad-path "\$@"
418 chmod +x
"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg"
419 echo "Dir::Bin::dpkg \"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg\";" > rootdir
/etc
/apt
/apt.conf.d
/99dpkg
422 if ! command dpkg
--assert-multi-arch >/dev
/null
2>&1; then
423 echo "DPKG::options:: \"--force-architecture\";" # Added to test multiarch before dpkg is ready for it…
426 echo 'quiet::NoUpdate "true";'
427 echo 'quiet::NoStatistic "true";'
428 # too distracting for users, but helpful to detect changes
429 echo 'Acquire::Progress::Ignore::ShowErrorText "true";'
430 echo 'Acquire::Progress::Diffpercent "true";'
431 # in testcases, it can appear as if localhost has a rotation setup,
432 # hide this as we can't really deal with it properly
433 echo 'Acquire::Failure::ShowIP "false";'
434 # fakeroot can't fake everything, so disabled in production but good for tests
435 echo 'APT::Sandbox::Verify "true";'
438 cp "${TESTDIRECTORY}/apt.pem" "${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem"
439 if [ "$(id -u)" = '0' ]; then
440 chown _apt
:root
"${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem"
442 echo "Acquire::https::CaInfo \"${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem\";" > rootdir
/etc
/apt
/apt.conf.d
/99https
443 echo "Apt::Cmd::Disable-Script-Warning \"1\";" > rootdir
/etc
/apt
/apt.conf.d
/apt
-binary
444 export APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE
=no
445 echo 'Acquire::Connect::AddrConfig "false";' > rootdir
/etc
/apt
/apt.conf.d
/connect
-addrconfig
447 configcompression
'.' 'gz' #'bz2' 'lzma' 'xz'
448 confighashes
'SHA256' # these are tests, not security best-practices
450 # create some files in /tmp and look at user/group to get what this means
451 TEST_DEFAULT_USER
="$(id -un)"
452 if [ "$(uname)" = 'GNU/kFreeBSD' ]; then
453 TEST_DEFAULT_GROUP
='root'
455 TEST_DEFAULT_GROUP
="$(id -gn)"
458 # cleanup the environment a bit
459 # prefer our apt binaries over the system apt binaries
460 export PATH
="${BUILDDIRECTORY}:${PATH}:/usr/local/sbin:/usr/sbin:/sbin"
462 unset LANGUAGE APT_CONFIG
463 unset GREP_OPTIONS DEB_BUILD_PROFILES
464 unset http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy
466 # If gpgv supports --weak-digest, pass it to make sure we can disable SHA1
467 if aptkey verify
--weak-digest SHA1
--help 2>/dev
/null
>/dev
/null
; then
468 echo 'Acquire::gpgv::Options { "--weak-digest"; "sha1"; };' > rootdir
/etc
/apt
/apt.conf.d
/no
-sha1
471 # most tests just need one signed Release file, not both
472 export APT_DONT_SIGN
='Release.gpg'
474 if [ -r "${TESTDIRECTORY}/extra-environment" ]; then
475 .
"${TESTDIRECTORY}/extra-environment"
482 if [ "$1" = "native" -o -z "$1" ]; then
483 eval `aptconfig shell ARCH APT::Architecture`
484 if [ -n "$ARCH" ]; then
487 dpkg
--print-architecture
495 aptconfig dump
--no-empty --format '%v%n' APT
::Architecture APT
::Architectures
| sort -u | tr '\n' ' '
498 getarchitecturesfromcommalist
() {
499 echo "$1" | sed -e 's#,#\n#g' | sed -e "s/^native\$/$(getarchitecture 'native')/"
502 configarchitecture
() {
504 echo "APT::Architecture \"$(getarchitecture $1)\";"
505 while [ -n "$1" ]; do
506 echo "APT::Architectures:: \"$(getarchitecture $1)\";"
509 } >rootdir
/etc
/apt
/apt.conf.d
/01multiarch.conf
514 if [ ! -e rootdir
/var
/lib
/dpkg
/status
]; then
515 local BASENAME
="${0##*/}"
516 local STATUSFILE
="status-${BASENAME#*-}"
517 if [ -f "${TESTDIRECTORY}/${STATUSFILE}" ]; then
518 cp "${TESTDIRECTORY}/${STATUSFILE}" rootdir
/var
/lib
/dpkg
/status
520 echo -n > rootdir
/var
/lib
/dpkg
/status
523 rm -f rootdir
/etc
/apt
/apt.conf.d
/00foreigndpkg
524 if command dpkg
--assert-multi-arch >/dev
/null
2>&1 ; then
525 local ARCHS
="$(getarchitectures)"
526 local DPKGARCH
="$(dpkg --print-architecture)"
527 # this ensures that even if multi-arch isn't active in the view
528 # of apt, given that dpkg can't be told which arch is native
529 # the arch apt treats as native might be foreign for dpkg
530 for ARCH
in ${ARCHS}; do
531 if [ "${ARCH}" != "${DPKGARCH}" ]; then
532 if ! dpkg
--add-architecture ${ARCH} >/dev
/null
2>&1; then
533 # old-style used e.g. in Ubuntu-P – and as it seems travis
534 echo "DPKG::options:: \"--foreign-architecture\";" >> rootdir
/etc
/apt
/apt.conf.d
/00foreigndpkg
535 echo "DPKG::options:: \"${ARCH}\";" >> rootdir
/etc
/apt
/apt.conf.d
/00foreigndpkg
539 # if multi-arch make sure dpkg can detect itself as capable of it
540 if echo "$ARCHS" | grep -E -q '[^ ]+ [^ ]+'; then
541 if [ "0" = "$(dpkg -l dpkg 2> /dev/null | grep '^i' | wc -l)" ]; then
542 # dpkg doesn't really check the version as long as it is fully installed,
543 # but just to be sure we choose one above the required version
544 insertinstalledpackage
'dpkg' "all" '1.16.2+fake'
550 configdpkgnoopchroot
() {
551 # create a library to noop chroot() and rewrite maintainer script executions
552 # via execvp() as used by dpkg as we don't want our rootdir to be a fullblown
553 # chroot directory dpkg could chroot into to execute the maintainer scripts
554 msgtest
'Building library to preload to make maintainerscript work in' 'dpkg'
555 cat > noopchroot.c
<< EOF
562 static char * chrootdir = NULL;
564 int chroot(const char *path) {
565 printf("WARNING: CHROOTing to %s was ignored!\n", path);
567 chrootdir = strdup(path);
570 int execvp(const char *file, char *const argv[]) {
571 static int (*func_execvp) (const char *, char * const []) = NULL;
572 if (func_execvp == NULL)
573 func_execvp = (int (*) (const char *, char * const [])) dlsym(RTLD_NEXT, "execvp");
574 if (chrootdir == NULL || strncmp(file, "/var/lib/dpkg/", strlen("/var/lib/dpkg/")) != 0)
575 return func_execvp(file, argv);
576 printf("REWRITE execvp call %s into %s\n", file, chrootdir);
578 if (asprintf(&newfile, "%s%s", chrootdir, file) == -1) {
582 char const * const baseadmindir = "/var/lib/dpkg";
584 if (asprintf(&admindir, "%s%s", chrootdir, baseadmindir) == -1) {
588 setenv("DPKG_ADMINDIR", admindir, 1);
589 return func_execvp(newfile, argv);
592 testempty
--nomsg gcc
-Wall -Wextra -fPIC -shared -o noopchroot.so noopchroot.c
-ldl
594 configcompression
() {
595 if [ "$1" = 'ALL' ]; then
596 configcompression
'.' $(aptconfig dump APT::Compressor --format '%t %v%n' | sed -n 's#^Extension \.\(.*\)$#\
1#p')
599 local CMD
='apthelper cat-file -C'
600 while [ -n "$1" ]; do
602 '.') printf ".\t.\tcat\n";;
603 'gz') printf "gzip\tgz\t$CMD $1\n";;
604 'bz2') printf "bzip2\tbz2\t$CMD $1\n";;
605 *) printf "$1\t$1\t$CMD $1\n";;
608 done > "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf"
612 echo 'APT::FTPArchive {'
614 while [ -n "$1" ]; do
615 printf "$1" | tr 'a-z' 'A-Z'
616 printf "\t\"true\";\n"
619 for h
in 'MD5' 'SHA1' 'SHA256' 'SHA512'; do
620 printf "$h\t\"false\";\n"
624 } >> "${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/ftparchive-hashes.conf"
629 COMPRESSOR_CMD
="apthelper cat-file -C $1"
631 gzip) COMPRESS
='gz';;
632 bzip2) COMPRESS
='bz2';;
634 local CONFFILE
="${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/00force-compressor"
635 echo "Acquire::CompressionTypes::Order { \"${COMPRESS}\"; };
636 Dir::Bin::uncompressed \"/does/not/exist\";" > "$CONFFILE"
637 for COMP
in $(aptconfig dump 'APT::Compressor' --format '%f%n' | cut -d':' -f 5 | uniq); do
638 if [ -z "$COMP" -o "$COMP" = '.' -o "$COMP" = "$COMPRESSOR" ]; then continue; fi
639 echo "Dir::Bin::${COMP} \"/does/not/exist\";" >> "$CONFFILE"
640 echo "APT::Compressor::${COMP}::Name \"${COMP}-disabled\";" >> "$CONFFILE"
644 _setupsimplenativepackage
() {
648 local RELEASE
="${4:-unstable}"
649 local DEPENDENCIES
="$5"
650 local DESCRIPTION
="${6:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
651 If you find such a package installed on your system,
652 something went horribly wrong! They are autogenerated
653 und used only by testcases and serve no other purpose…"}"
655 local SECTION="${7:-others}"
656 local PRIORITY="${8:-optional}"
658 local COMPRESS_TYPE="${10:-gzip}"
660 if [ "$SECTION" = "${SECTION#*/}" ]; then
663 DISTSECTION="${SECTION%/*}"
665 local BUILDDIR="${TMPWORKINGDIRECTORY}/incoming
/${NAME}-${VERSION}"
667 mkdir -p "$BUILDDIR/debian
/source"
668 echo "* most suckless software product ever
" > "${BUILDDIR}/FEATURES
"
670 echo '$NAME says \"Hello!\"'" > "${BUILDDIR}/${NAME}"
672 echo "Copyleft by Joe Sixpack
$(date -u +%Y)" > "${BUILDDIR}/debian
/copyright
"
673 echo "$NAME ($VERSION) $RELEASE; urgency
=low
677 -- Joe Sixpack
<joe@example.org
> $(date -u -R)" > "${BUILDDIR}/debian
/changelog
"
681 Maintainer
: Joe Sixpack
<joe@example.org
>
682 Standards
-Version: 3.9.3"
683 if [ "$SECTION" != '<none>' ]; then
684 echo "Section
: $SECTION"
686 local BUILDDEPS="$(echo "$DEPENDENCIES" | grep '^Build-')"
687 test -z "$BUILDDEPS" || echo "$BUILDDEPS"
691 if [ "$ARCH" = 'all' ]; then
692 echo "Architecture
: all
"
694 echo "Architecture
: any
"
696 local DEPS="$(echo "$DEPENDENCIES" | grep -v '^Build-')"
697 test -z "$DEPS" || echo "$DEPS"
698 echo "Description
: $DESCRIPTION"
699 } > "${BUILDDIR}/debian
/control
"
701 echo '3.0 (native)' > "${BUILDDIR}/debian
/source
/format
"
704 setupsimplenativepackage() {
705 _setupsimplenativepackage "$@
"
708 local BUILDDIR="${TMPWORKINGDIRECTORY}/incoming
/${NAME}-${VERSION}"
709 test -e "${BUILDDIR}/debian
/compat
" || echo '7' > "${BUILDDIR}/debian
/compat
"
710 test -e "${BUILDDIR}/debian
/rules
" || cp /usr/share/doc/debhelper/examples/rules.tiny "${BUILDDIR}/debian
/rules
"
713 buildsimplenativepackage() {
717 local RELEASE="${4:-unstable}"
718 local DEPENDENCIES="$5"
719 local DESCRIPTION="$6"
720 local SECTION="${7:-others}"
721 local PRIORITY="${8:-optional}"
723 local COMPRESS_TYPE="${10:-gzip}"
725 if [ "$SECTION" = "${SECTION#*/}" ]; then
728 DISTSECTION="${SECTION%/*}"
730 local BUILDDIR="${TMPWORKINGDIRECTORY}/incoming
/${NAME}-${VERSION}"
731 msgtest "Build
source package
in version
${VERSION} for ${RELEASE} in ${DISTSECTION}" "$NAME"
732 _setupsimplenativepackage "$@
"
734 testsuccess --nomsg dpkg-source -b ${NAME}-${VERSION}
736 sed -n 's#^dpkg-source: info: building [^ ]\+ in ##p' "${TMPWORKINGDIRECTORY}/rootdir
/tmp
/testsuccess.output
" \
738 echo "pool
/${SRC}" >> "${BUILDDIR}/..
/${RELEASE}.
${DISTSECTION}.srclist
"
739 # if expr match "${SRC}" '.*\.dsc' >/dev/null 2>&1; then
740 # aptkey --keyring ./keys/joesixpack.pub --secret-keyring ./keys/joesixpack.sec --quiet --readonly \
741 # adv --yes --default-key 'Joe Sixpack' \
742 # --clearsign -o "${BUILDDIR}/..
/${SRC}.sign
" "${BUILDDIR}/..
/$SRC"
743 # mv "${BUILDDIR}/..
/${SRC}.sign
" "${BUILDDIR}/..
/$SRC"
747 for arch in $(getarchitecturesfromcommalist "$ARCH"); do
748 msgtest "Build binary package
for ${RELEASE} in ${SECTION}" "$NAME"
749 rm -rf "${BUILDDIR}/debian
/tmp
"
750 mkdir -p "${BUILDDIR}/debian
/tmp
/DEBIAN
" "${BUILDDIR}/debian
/tmp
/usr
/share
/doc
/${NAME}" "${BUILDDIR}/debian
/tmp
/usr
/bin
"
751 cp "${BUILDDIR}/debian
/copyright
" "${BUILDDIR}/debian
/changelog
" "${BUILDDIR}/FEATURES
" "${BUILDDIR}/debian
/tmp
/usr
/share
/doc
/${NAME}"
752 cp "${BUILDDIR}/${NAME}" "${BUILDDIR}/debian
/tmp
/usr
/bin
/${NAME}-${arch}"
753 if [ -n "$FILE_TREE" ]; then
754 cp -ar "$FILE_TREE" "${BUILDDIR}/debian
/tmp
"
757 (cd "${BUILDDIR}"; dpkg-gencontrol -DArchitecture=$arch)
758 (cd "${BUILDDIR}/debian
/tmp
"; md5sum $(find usr/ -type f) > DEBIAN/md5sums)
759 local LOG="${BUILDDIR}/..
/${NAME}_
${VERSION}_
${arch}.dpkg
-deb.log
"
760 # ensure the right permissions as dpkg-deb insists
761 chmod 755 "${BUILDDIR}/debian
/tmp
/DEBIAN
"
762 testsuccess --nomsg dpkg-deb -Z${COMPRESS_TYPE} --build "${BUILDDIR}/debian
/tmp
" "${BUILDDIR}/..
"
763 echo "pool
/${NAME}_
${VERSION}_
${arch}.deb
" >> "${BUILDDIR}/..
/${RELEASE}.
${DISTSECTION}.pkglist
"
767 if [ "$(echo "$NAME" | cut -c 1-3)" = 'lib' ]; then
768 NM="$(echo "$NAME" | cut -c 1-4)"
770 NM="$(echo "$NAME" | cut -c 1)"
772 local CHANGEPATH="${BUILDDIR}/..
/${DISTSECTION}/${NM}/${NAME}/${NAME}_
${VERSION}"
773 mkdir -p "$CHANGEPATH"
774 cp "${BUILDDIR}/debian
/changelog
" "$CHANGEPATH"
783 local ARCH=$(getarchitecture $4)
784 local PKGNAME="$(echo "$BUILDDIR" | grep -o '[^/]*$')"
785 local BUILDLOG="$(readlink -f "${BUILDDIR}/../${PKGNAME}_${RELEASE}_${SECTION}.dpkg-bp.log")"
786 msgtest "Build package
for ${RELEASE} in ${SECTION}" "$PKGNAME"
788 if [ "$ARCH" = "all
" ]; then
789 ARCH="$(dpkg-architecture -qDEB_HOST_ARCH 2> /dev/null)"
791 testsuccess --nomsg dpkg-buildpackage -uc -us -a$ARCH
792 cp "${TMPWORKINGDIRECTORY}/rootdir
/tmp
/testsuccess.output
" "$BUILDLOG"
793 local PKGS="$(grep '^dpkg-deb: building package' "$BUILDLOG" | cut -d'/' -f 2 | sed -e "s#'\.##")"
794 local SRCS="$(grep '^dpkg-source: info: building' "$BUILDLOG" | grep -o '[a-z0-9._+~-]*$')"
797 echo "pool
/${PKG}" >> "${TMPWORKINGDIRECTORY}/incoming
/${RELEASE}.
${SECTION}.pkglist
"
800 echo "pool
/${SRC}" >> "${TMPWORKINGDIRECTORY}/incoming
/${RELEASE}.
${SECTION}.srclist
"
805 if [ -d incoming ]; then
806 buildaptarchivefromincoming "$@
"
808 buildaptarchivefromfiles "$@
"
812 createaptftparchiveconfig() {
813 local COMPRESSORS="$(cut -d' ' -f 1 "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf" | tr '\n' ' ')"
814 local COMPRESSORS="${COMPRESSORS%* }"
815 local ARCHS="$(getarchitectures)"
816 cat > ftparchive.conf <<EOF
818 ArchiveDir "$(readlink -f .)";
819 CacheDir "$(readlink -f ..)";
820 FileListDir "$(readlink -f pool/)";
823 Packages::Compress "$COMPRESSORS";
824 Sources::Compress "$COMPRESSORS";
825 Contents::Compress "$COMPRESSORS";
826 Translation::Compress "$COMPRESSORS";
827 LongDescription "false
";
831 SrcDirectory "pool
/";
834 for DIST in $(find ./pool/ -maxdepth 1 -name '*.pkglist' -type f | cut -d'/' -f 3 | cut -d'.' -f 1 | sort | uniq); do
837 Architectures "$ARCHS all
source";
838 FileList "${DIST}.\
$(SECTION).pkglist
";
839 SourceFileList "${DIST}.\
$(SECTION).srclist
";
840 Sections "$(find ./pool/ -maxdepth 1 -name "${DIST}.*.pkglist" -type f | cut -d'/' -f 3 | cut -d'.' -f 2 | sort | uniq | tr '\n' ' ')";
843 done >> ftparchive.conf
846 buildaptftparchivedirectorystructure() {
847 local DISTS="$(grep -i '^tree ' ftparchive.conf | cut -d'/' -f 2 | sed -e 's#".*##')"
848 for DIST in $DISTS; do
849 local SECTIONS="$(grep -i -A 5 "dists/$DIST" ftparchive.conf | grep -i 'Sections' | cut -d'"' -f 2)"
850 for SECTION in $SECTIONS; do
851 local ARCHS="$(grep -A 5 "dists/$DIST" ftparchive.conf | grep Architectures | cut -d'"' -f 2 | sed -e 's#source##')"
852 for ARCH in $ARCHS; do
853 mkdir -p "dists
/${DIST}/${SECTION}/binary
-${ARCH}"
855 mkdir -p "dists
/${DIST}/${SECTION}/source"
856 mkdir -p "dists
/${DIST}/${SECTION}/i18n
"
866 local DEPENDENCIES="$5"
867 local PRIORITY="${6:-optional}"
868 local DESCRIPTION="${7:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASES}
869 If you
find such a package installed on your system
,
870 something went horribly wrong
! They are autogenerated
871 und used only by testcases and serve no other purpose…
"}"
873 for RELEASE
in $(printf '%s' "$RELEASES" | tr ',' '\n'); do
874 if [ "$RELEASE" = 'installed' ]; then
875 insertinstalledpackage
"$2" "$3" "$4" "$5" "$6" "$7"
878 for arch
in $(getarchitecturesfromcommalist "$ARCH"); do
879 if [ "$arch" = 'none' ]; then
880 ARCHS
="$(getarchitectures)"
884 for BUILDARCH
in $ARCHS; do
885 local PPATH
="aptarchive/dists/${RELEASE}/main/binary-${BUILDARCH}"
892 Maintainer: Joe Sixpack <joe@example.org>"
893 test "$arch" = 'none' || echo "Architecture: $arch"
894 echo "Version: $VERSION
895 Filename: pool/main/${NAME}/${NAME}_${VERSION}_${arch}.deb"
896 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES"
897 echo "Description: $(printf '%s' "$DESCRIPTION" | head -n 1)"
898 echo "Description-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)"
900 } >> "${PPATH}/Packages"
903 mkdir -p "aptarchive/dists/${RELEASE}/main/source" "aptarchive/dists/${RELEASE}/main/i18n"
904 touch "aptarchive/dists/${RELEASE}/main/source/Sources"
906 Description-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)
907 Description-en: $DESCRIPTION
908 " >> "aptarchive/dists/${RELEASE}/main/i18n/Translation-en"
917 local DEPENDENCIES
="$5"
918 local BINARY
="${6:-$NAME}"
920 for RELEASE
in $(printf '%s' "$RELEASES" | tr ',' '\n'); do
921 local SPATH
="aptarchive/dists/${RELEASE}/main/source"
923 local FILE
="${SPATH}/Sources"
924 local DSCFILE
="${NAME}_${VERSION}.dsc"
925 local TARFILE
="${NAME}_${VERSION}.tar.gz"
929 Maintainer: Joe Sixpack <joe@example.org>
930 Architecture: $ARCH" >> $FILE
931 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> "$FILE"
933 $(echo -n "$DSCFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
934 $(echo -n "$TARFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
936 $(echo -n "$DSCFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
937 $(echo -n "$TARFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
942 insertinstalledpackage
() {
946 local DEPENDENCIES
="$4"
947 local PRIORITY
="${5:-optional}"
948 local STATUS
="${6:-install ok installed}"
949 local DESCRIPTION
="${7:-"an autogenerated dummy ${NAME}=${VERSION}/installed
950 If you find such a package installed on your system,
951 something went horribly wrong! They are autogenerated
952 und used only by testcases and serve no other purpose…"}"
954 local FILE='rootdir/var/lib/dpkg/status'
955 local INFO='rootdir/var/lib/dpkg/info'
956 for arch in $(getarchitecturesfromcommalist "$ARCH"); do
962 Maintainer
: Joe Sixpack
<joe@example.org
>
963 Version
: $VERSION" >> "$FILE"
964 test "$arch" = 'none' || echo "Architecture
: $arch" >> "$FILE"
965 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> "$FILE"
966 echo "Description
: $DESCRIPTION" >> "$FILE"
968 if [ "$(dpkg-query -W --showformat='${Multi-Arch}')" = 'same' ]; then
969 echo -n > "${INFO}/${NAME}:${arch}.list
"
971 echo -n > "${INFO}/${NAME}.list
"
977 buildaptarchivefromincoming() {
978 msginfo "Build APT archive
for ${CCMD}${0##*/}${CINFO} based on incoming packages…
"
980 [ -e pool ] || ln -s ../incoming pool
981 [ -e ftparchive.conf ] || createaptftparchiveconfig
982 [ -e dists ] || buildaptftparchivedirectorystructure
983 msgninfo "\tGenerate Packages
, Sources and Contents files…
"
984 testsuccess aptftparchive generate ftparchive.conf
987 generatereleasefiles "$@
"
990 buildaptarchivefromfiles() {
991 msginfo "Build APT archive
for ${CCMD}${0##*/}${CINFO} based on prebuild files…
"
992 local DIR='aptarchive'
993 if [ -d "${DIR}/dists
" ]; then DIR="${DIR}/dists
"; fi
994 find "$DIR" -name 'Packages' -o -name 'Sources' -o -name 'Translation-*' | while read line; do
995 msgninfo "\t${line} file…
"
996 compressfile "$line" "$1"
999 generatereleasefiles "$@
"
1003 while read compressor extension command; do
1004 if [ "$compressor" = '.' ]; then
1005 if [ -n "$2" ]; then
1010 cat "$1" | $command > "${1}.
${extension}"
1011 if [ -n "$2" ]; then
1012 touch -d "$2" "${1}.
${extension}"
1014 done < "${TMPWORKINGDIRECTORY}/rootdir
/etc
/testcase
-compressor.conf
"
1017 # can be overridden by testcases for their pleasure
1018 getcodenamefromsuite() {
1020 unstable) echo 'sid';;
1024 getreleaseversionfromsuite() { true; }
1025 getlabelfromsuite() { true; }
1026 getoriginfromsuite() { true; }
1027 getarchitecturesfromreleasefile() { echo "all
$(getarchitectures)"; }
1029 aptftparchiverelease() {
1030 aptftparchive -qq release "$@
" | sed -e '/0 Release$/ d' # remove the self reference
1032 generatereleasefiles() {
1033 # $1 is the Date header and $2 is the ValidUntil header to be set
1034 # both should be given in notation date/touch can understand
1036 local VALIDUNTIL="$2"
1037 if [ -e aptarchive/dists ]; then
1038 msgninfo "\tGenerate Release files
for dists…
"
1039 for dir in $(find ./aptarchive/dists -mindepth 1 -maxdepth 1 -type d); do
1040 local ARCHITECTURES="$(getarchitecturesfromreleasefile "$dir")"
1041 local SUITE="$(echo "$dir" | cut -d'/' -f 4)"
1042 local CODENAME="$(getcodenamefromsuite $SUITE)"
1043 local VERSION="$(getreleaseversionfromsuite $SUITE)"
1044 local LABEL="$(getlabelfromsuite $SUITE)"
1045 local ORIGIN="$(getoriginfromsuite $SUITE)"
1046 aptftparchiverelease "$dir" \
1047 -o APT::FTPArchive::Release::Suite="${SUITE}" \
1048 -o APT::FTPArchive::Release::Codename="${CODENAME}" \
1049 -o APT::FTPArchive::Release::Architectures="${ARCHITECTURES}" \
1050 -o APT::FTPArchive::Release::Label="${LABEL}" \
1051 -o APT::FTPArchive::Release::Origin="${ORIGIN}" \
1052 -o APT::FTPArchive::Release::Version="${VERSION}" \
1054 if [ "$SUITE" = "experimental
" -o "$SUITE" = "experimental2
" ]; then
1055 sed -i '/^Date: / a\
1056 NotAutomatic: yes' "$dir/Release
"
1060 msgninfo "\tGenerate Release files
for flat…
"
1061 aptftparchiverelease ./aptarchive > aptarchive/Release
1063 if [ -n "$DATE" -a "$DATE" != "now
" ]; then
1064 for release in $(find ./aptarchive -name 'Release'); do
1065 sed -i "s
/^Date
: .
*$
/Date
: $(date -u -d "$DATE" -R)/" "$release"
1066 touch -d "$DATE" "$release"
1069 if [ -n "$VALIDUNTIL" ]; then
1070 sed -i "/^Date
: / a\
1071 Valid
-Until: $(date -u -d "$VALIDUNTIL" -R)" $(find ./aptarchive -name 'Release')
1076 setupdistsaptarchive() {
1077 local APTARCHIVE="$(readlink -f ./aptarchive | sed 's# #%20#g')"
1078 rm -f root/etc/apt/sources.list.d/apt-test-*-deb.list
1079 rm -f root/etc/apt/sources.list.d/apt-test-*-deb-src.list
1080 for DISTS in $(find ./aptarchive/dists/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 4); do
1081 SECTIONS=$(find "./aptarchive/dists/${DISTS}/" -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 5 | tr '\n' ' ')
1082 msgninfo "\tadd deb and deb
-src sources.list lines
for ${CCMD}${DISTS} ${SECTIONS}${CINFO}…
"
1083 echo "deb
file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir
/etc
/apt
/sources.list.d
/apt
-test-${DISTS}-deb.list
"
1084 echo "deb
-src file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir
/etc
/apt
/sources.list.d
/apt
-test-${DISTS}-deb-src.list
"
1089 setupflataptarchive() {
1090 local APTARCHIVE="$(readlink -f ./aptarchive)"
1091 local APTARCHIVEURI="$(readlink -f ./aptarchive | sed 's# #%20#g')"
1092 if [ -f "${APTARCHIVE}/Packages
" ]; then
1093 msgninfo "\tadd deb sources.list line…
"
1094 echo "deb
file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
1097 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
1099 if [ -f "${APTARCHIVE}/Sources
" ]; then
1100 msgninfo "\tadd deb
-src sources.list line…
"
1101 echo "deb
-src file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
1104 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
1110 if [ "$1" = '--no-update' ]; then
1114 buildaptarchive "$@
"
1115 if [ -e aptarchive/dists ]; then
1116 setupdistsaptarchive
1120 signreleasefiles 'Joe Sixpack'
1121 if [ "1" != "$NOUPDATE" ]; then
1122 testsuccess aptget update -o Debug::pkgAcquire::Worker=true -o Debug::Acquire::gpgv=true
1126 signreleasefiles() {
1127 local SIGNERS="${1:-Joe Sixpack}"
1128 local REPODIR="${2:-aptarchive}"
1129 if [ -n "$1" ]; then shift; fi
1130 if [ -n "$1" ]; then shift; fi
1131 local KEY="keys
/$(echo "$SIGNERS" | tr 'A-Z' 'a-z' | tr -d ' ,')"
1132 msgninfo "\tSign archive with
$SIGNERS key
$KEY…
"
1133 local REXKEY='keys/rexexpired'
1134 local SECEXPIREBAK="${REXKEY}.sec.bak
"
1135 local PUBEXPIREBAK="${REXKEY}.pub.bak
"
1137 while [ -n "${SIGNERS%%,*}" ]; do
1138 local SIGNER="${SIGNERS%%,*}"
1139 if [ "${SIGNERS}" = "${SIGNER}" ]; then
1142 SIGNERS="${SIGNERS#*,}"
1143 # FIXME: This should be the full name, but we can't encode the space properly currently
1144 SIGUSERS="${SIGUSERS} -u ${SIGNER#* }"
1145 if [ "${SIGNER}" = 'Rex Expired' ]; then
1146 # the key is expired, so gpg doesn't allow to sign with and the --faked-system-time
1147 # option doesn't exist anymore (and using faketime would add a new obscure dependency)
1148 # therefore we 'temporary' make the key not expired and restore a backup after signing
1149 cp "${REXKEY}.sec
" "$SECEXPIREBAK"
1150 cp "${REXKEY}.pub
" "$PUBEXPIREBAK"
1151 local SECUNEXPIRED="${REXKEY}.sec.unexpired
"
1152 local PUBUNEXPIRED="${REXKEY}.pub.unexpired
"
1153 if [ -f "$SECUNEXPIRED" ] && [ -f "$PUBUNEXPIRED" ]; then
1154 cp "$SECUNEXPIRED" "${REXKEY}.sec
"
1155 cp "$PUBUNEXPIRED" "${REXKEY}.pub
"
1157 if ! printf "expire
\n1w
\nsave
\n" | aptkey --quiet --keyring "${REXKEY}.pub
" --secret-keyring "${REXKEY}.sec
" \
1158 --readonly adv --batch --yes --digest-algo "${APT_TESTS_DIGEST_ALGO:-SHA512}" \
1159 --default-key "$SIGNER" --command-fd 0 --edit-key "${SIGNER}" >setexpire.gpg 2>&1; then
1163 cp "${REXKEY}.sec
" "$SECUNEXPIRED"
1164 cp "${REXKEY}.pub
" "$PUBUNEXPIRED"
1167 if [ ! -e "${KEY}.pub
" ]; then
1168 local K="keys
/$(echo "$SIGNER" | tr 'A-Z' 'a-z' | tr -d ' ,')"
1169 cat "${K}.pub
" >> "${KEY}.new.pub
"
1170 cat "${K}.sec
" >> "${KEY}.new.sec
"
1173 if [ ! -e "${KEY}.pub
" ]; then
1174 mv "${KEY}.new.pub
" "${KEY}.pub
"
1175 mv "${KEY}.new.sec
" "${KEY}.sec
"
1177 local GPG="aptkey
--quiet --keyring ${KEY}.pub
--secret-keyring ${KEY}.sec
--readonly adv
--batch --yes --digest-algo ${APT_TESTS_DIGEST_ALGO:-SHA512}"
1178 for RELEASE in $(find "${REPODIR}/" -name Release); do
1179 # we might have set a specific date for the Release file, so copy it
1180 local DATE="$(stat --format "%y" "${RELEASE}")"
1181 if [ "$APT_DONT_SIGN" = 'Release.gpg' ]; then
1182 rm -f "${RELEASE}.gpg
"
1184 testsuccess $GPG "$@
" $SIGUSERS --armor --detach-sign --sign --output "${RELEASE}.gpg
" "${RELEASE}"
1185 touch -d "$DATE" "${RELEASE}.gpg
"
1187 local INRELEASE="${RELEASE%/*}/InRelease
"
1188 if [ "$APT_DONT_SIGN" = 'InRelease' ]; then
1191 testsuccess $GPG "$@
" $SIGUSERS --clearsign --output "$INRELEASE" "$RELEASE"
1192 touch -d "$DATE" "${INRELEASE}"
1195 if [ -f "$SECEXPIREBAK" ] && [ -f "$PUBEXPIREBAK" ]; then
1196 mv -f "$SECEXPIREBAK" "${REXKEY}.sec
"
1197 mv -f "$PUBEXPIREBAK" "${REXKEY}.pub
"
1202 redatereleasefiles() {
1203 local DATE="$(date -u -d "$1" -R)"
1204 for release in $(find aptarchive/ -name 'Release'); do
1205 sed -i "s
/^Date
: .
*$
/Date
: ${DATE}/" "$release"
1206 touch -d "$DATE" "$release"
1208 signreleasefiles "${2:-Joe Sixpack}"
1212 local WEBSERVER="${3:-http://localhost:${APTHTTPPORT}}"
1214 if [ "$1" = '--no-check' ]; then
1218 local DOWNLOG='rootdir/tmp/download-testfile.log'
1219 local STATUS='downloaded/webserverconfig.status'
1220 rm -f "$STATUS" "$DOWNLOG"
1221 # very very basic URI encoding
1223 if [ -n "$2" ]; then
1224 msgtest "Set webserver config option
'${1}' to
" "$2"
1225 URI="${WEBSERVER}/_config
/set
/$(echo "${1}" | sed -e 's/\//%2f/g')/$(echo "${2}" | sed -e 's/\//%2f/g')"
1227 msgtest 'Clear webserver config option' "${1}"
1228 URI="${WEBSERVER}/_config
/clear
/$(echo "${1}" | sed -e 's/\//%2f/g')"
1230 if downloadfile "$URI" "$STATUS" > "$DOWNLOG"; then
1233 local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir
/tmp
/webserverconfig.output
"
1234 cat "$DOWNLOG" "$STATUS" >"$OUTPUT" 2>&1 || true
1235 msgfailoutput '' "$OUTPUT"
1237 $NOCHECK || testwebserverlaststatuscode '200'
1240 rewritesourceslist() {
1241 local APTARCHIVE="file://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
1242 local APTARCHIVE2="copy
://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
1243 for LIST in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
1244 sed -i $LIST -e "s
#$APTARCHIVE#${1}#" -e "s#$APTARCHIVE2#${1}#" \
1245 -e "s#http://[^@]*@\?localhost:${APTHTTPPORT}/\?#${1}#" \
1246 -e "s#https://[^@]*@\?localhost:${APTHTTPSPORT}/\?#${1}#"
1250 # wait for up to 10s for a pid file to appear to avoid possible race
1251 # when a helper is started and dosn't write the PID quick enough
1254 for i
in $(seq 10); do
1255 if test -s "$PIDFILE"; then
1260 msgdie
"waiting for $PIDFILE failed"
1264 changetowebserver
() {
1266 if [ "$1" != '--no-rewrite' ]; then
1271 if test -x "${APTWEBSERVERBINDIR}/aptwebserver"; then
1273 local LOG
="webserver.log"
1274 if ! aptwebserver
--port 0 -o aptwebserver
::fork
=1 -o aptwebserver
::portfile
='aptwebserver.port' "$@" >$LOG 2>&1 ; then
1278 waitforpidfile aptwebserver.pid
1279 local PID
="$(cat aptwebserver.pid)"
1280 if [ -z "$PID" ]; then
1281 msgdie
'Could not fork aptwebserver successfully'
1283 addtrap
"kill $PID;"
1284 waitforpidfile aptwebserver.port
1285 APTHTTPPORT
="$(cat aptwebserver.port)"
1286 if [ -z "$APTHTTPPORT" ]; then
1287 msgdie
'Could not get port for aptwebserver successfully'
1291 msgdie
'You have to build apt from source to have test/interactive-helper/aptwebserver available for tests requiring a webserver'
1293 if [ "$REWRTE" != 'yes' ]; then
1294 rewritesourceslist
"http://localhost:${APTHTTPPORT}/"
1298 changetohttpswebserver
() {
1300 if command -v stunnel4
>/dev
/null
2>&1; then
1302 elif command -v stunnel
>/dev
/null
2>&1; then
1305 msgdie
'You need to install stunnel4 for https testcases'
1307 if [ ! -e "${TMPWORKINGDIRECTORY}/aptarchive/aptwebserver.pid" ]; then
1308 changetowebserver
--no-rewrite "$@"
1310 echo "pid = ${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid
1311 cert = ${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem
1316 connect = $APTHTTPPORT
1317 " > "${TMPWORKINGDIRECTORY}/stunnel.conf"
1318 $stunnel4 "${TMPWORKINGDIRECTORY}/stunnel.conf"
1319 waitforpidfile
"${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid"
1320 local PID
="$(cat "${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid")"
1321 if [ -z "$PID" ]; then
1322 msgdie
'Could not fork $stunnel4 successfully'
1324 addtrap
'prefix' "kill ${PID};"
1325 APTHTTPSPORT
="$(lsof -i -n | awk "/^$stunnel4 / && \$2 == \"${PID}\" {print \$9; exit; }" | cut -d':' -f 2)"
1326 webserverconfig
'aptwebserver::port::https' "$APTHTTPSPORT" "https://localhost:${APTHTTPSPORT}"
1327 rewritesourceslist
"https://localhost:${APTHTTPSPORT}/"
1331 mkdir -p rootdir
/media
/cdrom
/.disk
1332 local CD
="$(readlink -f rootdir/media/cdrom)"
1333 cat > rootdir
/etc
/apt
/apt.conf.d
/00cdrom
<<EOF
1334 acquire::cdrom::mount "${CD}";
1335 acquire::cdrom::"${CD}/"::mount "mv ${CD}-unmounted ${CD}";
1336 acquire::cdrom::"${CD}/"::umount "mv ${CD} ${CD}-unmounted";
1337 acquire::cdrom::autodetect 0;
1339 echo -n "$1" > "${CD}/.disk/info"
1340 if [ ! -d aptarchive
/dists
]; then
1341 msgdie
'Flat file archive cdroms can not be created currently'
1344 mv aptarchive
/dists
"$CD"
1345 ln -s "$(readlink -f ./incoming)" "$CD/pool"
1346 find rootdir
/etc
/apt
/sources.list.d
/ -name 'apt-test-*.list' -delete
1347 # start with an unmounted disk
1348 mv "${CD}" "${CD}-unmounted"
1349 # we don't want the disk to be modifiable
1350 addtrap
'prefix' "chmod -f -R +w '$(escape_shell "$PWD/rootdir/media/cdrom/dists/")' '$(escape_shell "$PWD/rootdir/media/cdrom-unmounted/dists/")' || true;"
1351 chmod -R 555 rootdir
/media
/cdrom
-unmounted/dists
1355 local PROTO
="${1%%:*}"
1356 if ! apthelper
-o Debug
::Acquire
::${PROTO}=1 -o Debug
::pkgAcquire
::Worker
=1 \
1357 download
-file "$1" "$2" "$3" 2>&1 ; then
1360 # only if the file exists the download was successful
1361 if [ -r "$2" ]; then
1369 local DIFFTEXT
="$(command diff -u "$@" 2>&1 | sed -e '/^---/ d' -e '/^+++/ d' -e '/^@@/ d')"
1370 if [ -n "$DIFFTEXT" ]; then
1372 echo >&2 "$DIFFTEXT"
1380 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testoutputequal.output"
1381 local COMPAREFILE
="$1"
1383 if "$@" 2>&1 | checkdiff
"$COMPAREFILE" - >"$OUTPUT" 2>&1; then
1386 echo "=== content of file we compared with (${COMPAREFILE}) ===" >>"${OUTPUT}"
1387 cat "$COMPAREFILE" >>"${OUTPUT}"
1388 msgfailoutput
'' "$OUTPUT" "$@"
1393 msggroup
'testfileequal'
1394 local MSG
='Test for correctness of file'
1395 if [ "$1" = '--nomsg' ]; then
1401 if [ -n "$MSG" ]; then
1402 msgtest
"$MSG" "$FILE"
1404 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfileequal.output"
1405 if [ -z "$*" ]; then
1406 testoutputequal
"$FILE" echo -n ''
1408 testoutputequal
"$FILE" echo "$*"
1414 msggroup
'testempty'
1415 if [ "$1" = '--nomsg' ]; then
1418 msgtest
"Test for no output of" "$*"
1420 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testempty.comparefile"
1421 if "$@" >"$COMPAREFILE" 2>&1 && test ! -s "$COMPAREFILE"; then
1424 msgfailoutput
'' "$COMPAREFILE" "$@"
1426 aptautotest
'testempty' "$@"
1430 msggroup
'testnotempty'
1431 msgtest
"Test for some output of" "$*"
1432 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnotempty.comparefile"
1433 if ("$@" >"$COMPAREFILE" 2>&1 || true
) && test -s "$COMPAREFILE"; then
1436 msgfailoutput
'' "$COMPAREFILE" "$@"
1438 aptautotest
'testnotempty' "$@"
1443 msggroup
'testequal'
1444 local MSG
='Test of equality of'
1445 if [ "$1" = '--nomsg' ]; then
1450 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.comparefile"
1451 echo "$1" > "$COMPAREFILE"
1454 if [ -n "$MSG" ]; then
1457 testoutputequal
"$COMPAREFILE" "$@"
1458 aptautotest
'testequal' "$@"
1463 msggroup
'testequalor2'
1464 local COMPAREFILE1
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile1"
1465 local COMPAREFILE2
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile2"
1466 local COMPAREAGAINST
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.compareagainst"
1467 echo "$1" > "$COMPAREFILE1"
1468 echo "$2" > "$COMPAREFILE2"
1470 msgtest
"Test for equality OR of" "$*"
1471 "$@" >"$COMPAREAGAINST" 2>&1 || true
1472 if checkdiff
"$COMPAREFILE1" "$COMPAREAGAINST" >/dev
/null
2>&1 || \
1473 checkdiff
"$COMPAREFILE2" "$COMPAREAGAINST" >/dev
/null
2>&1
1477 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.output"
1478 echo -n "\n${CINFO}Diff against OR 1${CNORMAL}" >"$OUTPUT" 2>&1
1479 checkdiff
"$COMPAREFILE1" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1480 echo -n "${CINFO}Diff against OR 2${CNORMAL}" >"$OUTPUT" 2>&1
1481 checkdiff
"$COMPAREFILE2" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1482 msgfailoutput
'' "$OUTPUT"
1484 aptautotest
'testequalor2' "$@"
1489 msggroup
'testshowvirtual'
1490 local VIRTUAL
="N: Can't select versions from package '$1' as it is purely virtual"
1493 while [ -n "$1" ]; do
1495 N: Can't select versions from package '$1' as it is purely virtual"
1496 PACKAGE
="${PACKAGE} $1"
1499 msgtest
"Test for virtual packages" "apt-cache show $PACKAGE"
1501 N: No packages found"
1502 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.comparefile"
1503 local ARCH
="$(getarchitecture 'native')"
1504 echo "$VIRTUAL" | sed -e "s/:$ARCH//" -e 's/:all//' >"$COMPAREFILE"
1505 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.output"
1506 testoutputequal
"$COMPAREFILE" aptcache show
"$PACKAGE"
1511 msggroup
'testnopackage'
1512 msgtest
"Test for non-existent packages" "apt-cache show $*"
1513 local SHOWPKG
="$(aptcache show "$@" 2>&1 | grep '^Package: ')"
1514 if [ -n "$SHOWPKG" ]; then
1515 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1516 echo "$SHOWPKG" >"$OUTPUT"
1517 msgfailoutput
'' "$OUTPUT"
1523 testnosrcpackage
() {
1524 msggroup
'testnosrcpackage'
1525 msgtest
"Test for non-existent source packages" "apt-cache showsrc $*"
1526 local SHOWPKG
="$(aptcache showsrc "$@" 2>&1 | grep '^Package: ')"
1527 if [ -n "$SHOWPKG" ]; then
1528 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnosrcpackage.output"
1529 echo "$SHOWPKG" >"$OUTPUT"
1530 msgfailoutput
'' "$OUTPUT"
1538 msggroup
'testdpkgstatus'
1542 msgtest
"Test that $NR package(s) are in state $STATE with" "dpkg -l $*"
1543 local PKGS
="$(dpkg -l "$@" 2>/dev/null | grep "^${STATE}" | wc -l)"
1544 if [ "$PKGS" != $NR ]; then
1545 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1546 echo "$PKGS" >"$OUTPUT"
1547 dpkg
-l "$@" | grep '^[a-z]' >"$OUTPUT" >&2 || true
1548 msgfailoutput
'' "$OUTPUT"
1555 testdpkginstalled
() {
1556 msggroup
'testdpkginstalled'
1557 testdpkgstatus
'ii' "$#" "$@"
1561 testdpkgnotinstalled
() {
1562 msggroup
'testdpkgnotinstalled'
1563 testdpkgstatus
'ii' '0' "$@"
1568 msggroup
'testmarkedauto'
1569 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedauto.comparefile"
1570 if [ -n "$1" ]; then
1571 msgtest
'Test for correctly marked as auto-installed' "$*"
1572 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
1574 msgtest
'Test for correctly marked as auto-installed' 'no package'
1575 echo -n > "$COMPAREFILE"
1577 testoutputequal
"$COMPAREFILE" aptmark showauto
1580 testmarkedmanual
() {
1581 msggroup
'testmarkedmanual'
1582 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedmanual.comparefile"
1583 if [ -n "$1" ]; then
1584 msgtest
'Test for correctly marked as manually installed' "$*"
1585 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
1587 msgtest
'Test for correctly marked as manually installed' 'no package'
1588 echo -n > "$COMPAREFILE"
1590 testoutputequal
"$COMPAREFILE" aptmark showmanual
1595 if [ "${1##*.}" = 'deb' ]; then
1596 stat
>&2 "$1" || true
1597 file >&2 "$1" || true
1599 cat >&2 "$1" || true
1603 msgreportheader
'msgfailoutput'
1608 if [ "$1" = 'grep' -o "$1" = 'tail' -o "$1" = 'head' ]; then
1610 while [ -n "$2" ]; do shift; done
1611 echo "#### Complete file: $1 ####"
1613 echo "#### $CMD output ####"
1614 elif [ "$1" = 'test' ]; then
1616 # doesn't support ! or non-file flags
1617 msgfailoutputstatfile
() {
1618 local FILEFLAGS
='^-[bcdefgGhkLOprsStuwx]$'
1619 if expr match
"$1" "$FILEFLAGS" >/dev
/null
; then
1620 echo "#### stat(2) of file: $2 ####"
1622 if test -d "$2"; then
1623 echo "#### The directory contains: $2 ####"
1625 elif test -e "$2"; then
1626 echo "#### Complete file: $2 ####"
1631 msgfailoutputstatfile
"$2" "$3"
1632 while [ -n "$5" ] && [ "$4" = '-o' -o "$4" = '-a' ]; do
1634 msgfailoutputstatfile
"$2" "$3"
1636 echo '#### test output ####'
1637 elif [ "$1" = 'cmp' ]; then
1639 while [ -n "$2" ]; do
1640 echo "#### Complete file: $2 ####"
1644 echo '#### cmp output ####'
1650 testsuccesswithglobalerror
() {
1655 if [ "$1" = '--nomsg' ]; then
1658 msgtest
'Test for successful execution of' "$*"
1660 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/${TYPE}.output"
1661 if "$@" >"${OUTPUT}" 2>&1; then
1662 if expr match
"$1" '^apt.*' >/dev
/null
; then
1663 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1664 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1665 elif grep -E "^[${ERRORS}]: " "$OUTPUT" > "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" 2>&1; then
1666 if [ "$IGNORE_PTY_NOT_MOUNTED" = '1' ]; then
1667 if echo 'E: Can not write log (Is /dev/pts mounted?) - posix_openpt (2: No such file or directory)' \
1668 | cmp - "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" >/dev
/null
2>&1; then
1671 msgfailoutput
'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1674 msgfailoutput
'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1676 elif [ "$TYPE" = 'testsuccesswithnotice' ]; then
1677 if grep -q -E "^N: " "$OUTPUT"; then
1680 msgfailoutput
'successful run, but output had no notices' "$OUTPUT" "$@"
1690 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1692 aptautotest
"$TYPE" "$@"
1695 testsuccesswithnotice
() {
1696 testsuccesswithglobalerror
'testsuccesswithnotice' 'WE' "$@"
1699 testsuccesswithglobalerror
'testsuccess' 'NWE' "$@"
1702 msggroup
'testwarning'
1703 if [ "$1" = '--nomsg' ]; then
1706 msgtest
'Test for successful execution with warnings of' "$*"
1708 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output"
1709 if "$@" >"${OUTPUT}" 2>&1; then
1710 if expr match
"$1" '^apt.*' >/dev
/null
; then
1711 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1712 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1713 elif grep -q -E '^E: ' "$OUTPUT"; then
1714 msgfailoutput
'successful run, but output contains errors' "$OUTPUT" "$@"
1715 elif ! grep -q -E '^W: ' "$OUTPUT"; then
1716 msgfailoutput
'successful run, but output contains no warnings' "$OUTPUT" "$@"
1725 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1727 aptautotest
'testwarning' "$@"
1731 msggroup
'testfailure'
1732 if [ "$1" = '--nomsg' ]; then
1735 msgtest
'Test for failure in execution of' "$*"
1737 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output"
1738 if "$@" >"${OUTPUT}" 2>&1; then
1740 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1743 if expr match
"$1" '^apt.*' >/dev
/null
; then
1744 if [ "$1" = 'aptkey' ]; then
1745 if grep -q " Can't check signature:
1747 signature could not be verified" "$OUTPUT"; then
1750 msgfailoutput
"run failed with exitcode ${EXITCODE}, but no signature error" "$OUTPUT" "$@"
1753 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1754 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1755 elif grep -q -E '==ERROR' "$OUTPUT"; then
1756 msgfailoutput
'compiler sanitizers reported errors' "$OUTPUT" "$@"
1757 elif ! grep -q -E '^E: ' "$OUTPUT"; then
1758 msgfailoutput
"run failed with exitcode ${EXITCODE}, but with no errors" "$OUTPUT" "$@"
1767 aptautotest
'testfailure' "$@"
1771 testreturnstateequal
() {
1773 if [ "$STATE" = 'testsuccesswithglobalerror' ]; then
1777 msggroup
"${STATE}equal"
1778 if [ "$1" != '--nomsg' ]; then
1781 testsuccesswithglobalerror
"$STATE" "$TYPE" "$@"
1782 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1786 testsuccesswithglobalerror
"$STATE" "$TYPE" "$@"
1787 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1790 msggroup
"${STATE}equal"
1791 if [ "$2" != '--nomsg' ]; then
1795 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1799 "$STATE" --nomsg "$@"
1800 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1805 testsuccessequal
() {
1806 # we compare output, so we know perfectly well about N:
1807 testreturnstateequal
'testsuccesswithglobalerror' 'testsuccess' 'WE' "$@"
1809 testwarningequal
() {
1810 testreturnstateequal
'testwarning' "$@"
1812 testfailureequal
() {
1813 testreturnstateequal
'testfailure' "$@"
1817 msggroup
'testfailuremsg'
1821 msgtest
'Check that the output of the previous failed command has expected' 'failures and warnings'
1822 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailuremsg.comparefile"
1823 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output" > "$COMPAREFILE" 2>&1 || true
1824 testoutputequal
"$COMPAREFILE" echo "$CMP"
1828 msggroup
'testwarningmsg'
1832 msgtest
'Check that the output of the previous warned command has expected' 'warnings'
1833 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarningmsg.comparefile"
1834 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output" > "$COMPAREFILE" 2>&1 || true
1835 testoutputequal
"$COMPAREFILE" echo "$CMP"
1840 msggroup
'testfilestats'
1841 msgtest
"Test that file $1 has $2 $3" "$4"
1842 if [ "$4" "$3" "$(stat --format "$2" "$1")" ]; then
1845 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfilestats.output"
1848 echo -n "stat(1) reports for $2: "
1849 stat
--format "$2" "$1" || true
1851 msgfailoutput
'' "$OUTPUT"
1855 testaccessrights
() {
1856 msggroup
'testaccessrights'
1857 testfilestats
"$1" '%a' '=' "$2"
1861 testwebserverlaststatuscode
() {
1862 msggroup
'testwebserverlaststatuscode'
1863 local DOWNLOG
='rootdir/tmp/webserverstatus-testfile.log'
1864 local STATUS
='downloaded/webserverstatus-statusfile.log'
1865 rm -f "$DOWNLOG" "$STATUS"
1866 msgtest
'Test last status code from the webserver was' "$1"
1867 if downloadfile
"http://localhost:${APTHTTPPORT}/_config/find/aptwebserver::last-status-code" "$STATUS" > "$DOWNLOG" && [ "$(cat "$STATUS")" = "$1" ]; then
1870 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwebserverlaststatuscode.output"
1872 if [ -n "$2" ]; then
1874 echo >&2 '#### Additionally provided output files contain:'
1877 echo >&2 '#### Download log of the status code:'
1880 msgfailoutput
"Status was $(cat "$STATUS")" "$OUTPUT"
1885 mapkeynametokeyid
() {
1886 while [ -n "$1" ]; do
1888 *Joe
*|*Sixpack
*|newarchive
) echo '5A90D141DBAC8DAE';;
1889 *Rex
*|*Expired
*) echo '4BC0A39C27CE74F9';;
1890 *Marvin
*|*Paranoid
*) echo 'E8525D47528144E2';;
1891 oldarchive
) echo 'FDD2DB85F68C85A3';;
1892 *) echo 'UNKNOWN KEY';;
1898 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/aptkeylist.output"
1899 if ! aptkey list
--with-colon | grep '^pub' | cut
-d':' -f 5 > "$OUTPUT"; then
1902 testfileequal
"$OUTPUT" "$(mapkeynametokeyid "$@")"
1906 echo "STOPPED execution. Press enter to continue"
1911 logcurrentarchivedirectory
() {
1912 find "${TMPWORKINGDIRECTORY}/aptarchive/dists" -type f
| while read line
; do
1913 stat
--format '%U:%G:%a:%n' "$line"
1914 done | sort > "${TMPWORKINGDIRECTORY}/rootdir/var/log/aptgetupdate.before.lst"
1916 listcurrentlistsdirectory
() {
1918 find rootdir
/var
/lib
/apt
/lists
-maxdepth 1 -type d
| while read line
; do
1919 stat
--format '%U:%G:%a:%n' "$line"
1921 find rootdir
/var
/lib
/apt
/lists
-maxdepth 1 \
! -type d
| while read line
; do
1922 stat
--format '%U:%G:%a:%s:%y:%n' "$line"
1926 forallsupportedcompressors
() {
1927 rm -f "${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/00force-compressor"
1928 for COMP
in $(aptconfig dump 'APT::Compressor' --format '%f%n' | cut -d':' -f 5 | uniq); do
1929 if [ -z "$COMP" -o "$COMP" = '.' ]; then continue; fi
1934 ### convenience hacks ###
1936 # creating some directories by hand is a tedious task, so make it look simple
1938 if [ "$PARAMS" != "${PARAMS#*rootdir/var/lib/apt/lists}" ]; then
1939 # only the last directory created by mkdir is effected by the -m !
1940 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt"
1941 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"
1942 command mkdir -m 700 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1943 touch "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/lock"
1944 if [ "$(id -u)" = '0' ]; then
1945 chown _apt
:root
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1952 ### The following tests are run by most test methods automatically to check
1953 ### general things about commands executed without writing the test every time.
1956 if [ $# -lt 3 ]; then return; fi
1962 if ! expr match
"$i" '^-' >/dev
/null
2>&1; then
1968 local AUTOTEST
="aptautotest_$(echo "${CMD##*/}_${FIRSTOPT}" | tr -d -c 'A-za-z0-9')"
1969 if command -v $AUTOTEST >/dev
/null
; then
1970 # save and restore the *.output files from other tests
1971 # as we might otherwise override them in these automatic tests
1972 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1973 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1974 mkdir "${TMPWORKINGDIRECTORY}/rootdir/tmp"
1975 $AUTOTEST "$TESTCALL" "$@"
1976 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1977 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1978 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp-before" "${TMPWORKINGDIRECTORY}/rootdir/tmp"
1982 aptautotest_aptget_update
() {
1984 while [ -n "$2" ]; do
1985 if [ "$2" = '--print-uris' ]; then return; fi # simulation mode
1988 if ! test -d "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"; then return; fi
1989 testfilestats
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
1990 testfilestats
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
1991 # all copied files are properly chmodded
1992 local backupIFS
="$IFS"
1993 IFS
="$(printf "\n\b")"
1994 for file in $(find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" -type f ! -name 'lock'); do
1995 testfilestats
"$file" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:644"
1998 if [ "$TESTCALL" = 'testsuccess' ]; then
1999 # failure cases can retain partial files and such
2000 testempty
find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial" -mindepth 1 ! \
( -name 'lock' -o -name '*.FAILED' \
)
2002 if [ -s "${TMPWORKINGDIRECTORY}/rootdir/var/log/aptgetupdate.before.lst" ]; then
2003 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/var/log/aptgetupdate.before.lst" \
2004 "$(find "${TMPWORKINGDIRECTORY}/aptarchive/dists" -type f | while read line; do stat --format '%U:%G:%a:%n' "$line"; done | sort)"
2007 aptautotest_apt_update
() { aptautotest_aptget_update
"$@"; }
2008 aptautotest_aptcdrom_add
() { aptautotest_aptget_update
"$@"; }
2010 testaptautotestnodpkgwarning
() {
2012 while [ -n "$2" ]; do
2013 if expr match
"$2" '^-[a-z]*s' >/dev
/null
2>&1; then return; fi # simulation mode
2014 if expr match
"$2" '^-dy\?' >/dev
/null
2>&1; then return; fi # download-only mode
2017 testfailure
grep '^dpkg: warning:.*ignor.*' "${TMPWORKINGDIRECTORY}/rootdir/tmp-before/${TESTCALL}.output"
2020 aptautotest_aptget_install
() { testaptautotestnodpkgwarning
"$@"; }
2021 aptautotest_aptget_remove
() { testaptautotestnodpkgwarning
"$@"; }
2022 aptautotest_aptget_purge
() { testaptautotestnodpkgwarning
"$@"; }
2023 aptautotest_apt_install
() { testaptautotestnodpkgwarning
"$@"; }
2024 aptautotest_apt_remove
() { testaptautotestnodpkgwarning
"$@"; }
2025 aptautotest_apt_purge
() { testaptautotestnodpkgwarning
"$@"; }
2027 testaptmarknodefaultsections
() {
2028 testfailure
grep '^Auto-Installed: 0$' "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/extended_states"
2030 aptautotest_aptmark_auto
() { testaptmarknodefaultsections
"$@"; }
2031 aptautotest_aptmark_manual
() { testaptmarknodefaultsections
"$@"; }
2032 aptautotest_aptget_markauto
() { testaptmarknodefaultsections
"$@"; }
2033 aptautotest_aptget_markmanual
() { testaptmarknodefaultsections
"$@"; }