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
35 if [ "$MSGCOLOR" != 'NO' ]; then
36 CERROR
="\033[1;31m" # red
37 CWARNING
="\033[1;33m" # yellow
38 CMSG
="\033[1;32m" # green
39 CINFO
="\033[1;96m" # light blue
40 CDEBUG
="\033[1;94m" # blue
41 CNORMAL
="\033[0;39m" # default system console color
42 CDONE
="\033[1;32m" # green
43 CPASS
="\033[1;32m" # green
44 CFAIL
="\033[1;31m" # red
45 CCMD
="\033[1;35m" # pink
57 printf "$MIDDLE " "$(echo "$1" | sed -e 's#^apt\([cfghks]\)#apt-\1#')"
63 msgdie
() { msgprintf
"${CERROR}E: %s" '%s' "${CNORMAL}\n" "$@" >&2; exit 1; }
64 msgwarn
() { msgprintf
"${CWARNING}W: %s" '%s' "${CNORMAL}\n" "$@" >&2; }
65 msgmsg
() { msgprintf
"${CMSG}%s" '%s' "${CNORMAL}\n" "$@"; }
66 msginfo
() { msgprintf
"${CINFO}I: %s" '%s' "${CNORMAL}\n" "$@"; }
67 msgdebug
() { msgprintf
"${CDEBUG}D: %s" '%s' "${CNORMAL}\n" "$@"; }
68 msgdone
() { msgprintf
"${CDONE}DONE" '%s' "${CNORMAL}\n" "$@"; }
69 msgnwarn
() { msgprintf
"${CWARNING}W: %s" '%s' "${CNORMAL}" "$@" >&2; }
70 msgnmsg
() { msgprintf
"${CMSG}%s" '%s' "${CNORMAL}" "$@"; }
71 msgninfo
() { msgprintf
"${CINFO}I: %s" '%s' "${CNORMAL}" "$@"; }
72 msgndebug
() { msgprintf
"${CDEBUG}D: %s" '%s' "${CNORMAL}" "$@"; }
73 msgtest
() { msgprintf
"${CINFO}%s" "${CCMD}%s${CINFO}" "…${CNORMAL} " "$@"; }
74 msgpass
() { printf "${CPASS}PASS${CNORMAL}\n"; }
76 if [ -n "$MSGTEST_MSG" ]; then
77 test "$1" != 'msgfailoutput' || echo
78 if [ -n "$MSGTEST_MSGMSG" ]; then
79 echo "$MSGTEST_MSGMSG"
81 if [ -n "$MSGTEST_GRP" ] && [ "$MSGTEST_GRP" != 'NEXT' ] && [ "$MSGTEST_GRP" != "$MSGTEST_MSG" ]; then
82 echo "${CFAIL}Part of the test group: $MSGTEST_GRP"
84 echo -n "$MSGTEST_MSG"
89 msgreportheader
'msgskip'
90 if [ $# -gt 0 ]; then printf "${CWARNING}SKIP: $*${CNORMAL}\n" >&2;
91 else printf "${CWARNING}SKIP${CNORMAL}\n" >&2; fi
94 msgreportheader
'msgfail'
95 if [ $# -gt 0 ] && [ -n "$1" ]; then printf "${CFAIL}FAIL: $*${CNORMAL}\n" >&2;
96 else printf "${CFAIL}FAIL${CNORMAL}\n" >&2; fi
97 if [ -n "$APT_DEBUG_TESTS" ]; then
100 EXIT_CODE
=$((EXIT_CODE+1));
105 if [ $MSGGROUP_LEVEL = 0 ]; then
108 MSGGROUP_LEVEL
=$((MSGGROUP_LEVEL+1));
110 MSGGROUP_LEVEL
=$((MSGGROUP_LEVEL-1));
111 if [ $MSGGROUP_LEVEL = 0 ]; then
117 # enable / disable Debugging
118 if [ $MSGLEVEL -le 0 ]; then
121 if [ $MSGLEVEL -le 1 ]; then
125 if [ $MSGLEVEL -le 2 ]; then
127 MSGTEST_MSGMSG
="$(msgprintf "${CMSG}%s" '%s' "${CNORMAL}" "$@")"
131 MSGTEST_MSG
="$(msgprintf "${CINFO}%s" "${CCMD}%s${CINFO}" "…${CNORMAL} " "$@")"
132 if [ "$MSGTEST_GRP" = 'NEXT' ]; then
133 MSGTEST_GRP
="$MSGTEST_MSG"
136 msgpass
() { printf " ${CPASS}P${CNORMAL}"; }
138 if [ $MSGLEVEL -le 3 ]; then
142 if [ $MSGLEVEL -le 4 ]; then
144 msgndebug
() { true
; }
147 if [ "$1" = "debug" -a $MSGLEVEL -le 4 ] ||
148 [ "$1" = "info" -a $MSGLEVEL -le 3 ] ||
149 [ "$1" = "msg" -a $MSGLEVEL -le 2 ] ||
150 [ "$1" = "warn" -a $MSGLEVEL -le 1 ] ||
151 [ "$1" = "die" -a $MSGLEVEL -le 0 ]; then
154 printf "${CDONE}DONE${CNORMAL}\n";
158 if [ -f .
/aptconfig.conf
]; then
159 echo "$(readlink -f ./aptconfig.conf)"
160 elif [ -f ..
/aptconfig.conf
]; then
161 echo "$(readlink -f ../aptconfig.conf)"
162 elif [ -f ..
/..
/aptconfig.conf
]; then
163 echo "$(readlink -f ../../aptconfig.conf)"
164 elif [ -f "${TMPWORKINGDIRECTORY}/aptconfig.conf" ]; then
165 echo "$(readlink -f "${TMPWORKINGDIRECTORY}/aptconfig.conf")"
169 msgdebug
"Executing: ${CCMD}$*${CDEBUG} "
173 sh
|aptitude
|*/*|command) ;;
174 *) CMD
="${BUILDDIRECTORY}/$CMD";;
176 MALLOC_PERTURB_
=21 MALLOC_CHECK_
=2 APT_CONFIG
="$(getaptconfig)" LD_LIBRARY_PATH
="${LIBRARYPATH}:${LD_LIBRARY_PATH}" "$CMD" "$@"
178 runpython3
() { runapt
command python3
"$@"; }
179 aptconfig
() { runapt apt
-config "$@"; }
180 aptcache
() { runapt apt
-cache "$@"; }
181 aptcdrom
() { runapt apt
-cdrom "$@"; }
182 aptget
() { runapt apt
-get "$@"; }
183 aptftparchive
() { runapt apt
-ftparchive "$@"; }
184 aptkey
() { runapt apt
-key "$@"; }
185 aptmark
() { runapt apt
-mark "$@"; }
186 aptsortpkgs
() { runapt apt
-sortpkgs "$@"; }
187 apt
() { runapt apt
"$@"; }
188 apthelper
() { runapt
"${APTHELPERBINDIR}/apt-helper" "$@"; }
189 aptwebserver
() { runapt
"${APTWEBSERVERBINDIR}/aptwebserver" "$@"; }
190 aptitude
() { runapt aptitude
"$@"; }
191 aptextracttemplates
() { runapt apt
-extracttemplates "$@"; }
192 aptinternalsolver
() { runapt
"${APTINTERNALSOLVER}" "$@"; }
193 aptdumpsolver
() { runapt
"${APTDUMPSOLVER}" "$@"; }
194 aptinternalplanner
() { runapt
"${APTINTERNALPLANNER}" "$@"; }
197 "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" "$@"
199 dpkgcheckbuilddeps
() {
200 command dpkg
-checkbuilddeps --admindir="${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg" "$@"
205 aptget
) CMD
="apt-get";;
206 aptcache
) CMD
="apt-cache";;
207 aptcdrom
) CMD
="apt-cdrom";;
208 aptconfig
) CMD
="apt-config";;
209 aptmark
) CMD
="apt-mark";;
210 apthelper
) CMD
="apt-helper";;
211 aptftparchive
) CMD
="apt-ftparchive";;
212 dpkg
) shift; runapt
"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg" "$@"; return;;
216 if [ "${CMD##*/}" = "$CMD" ]; then
217 CMD
="${BUILDDIRECTORY}/${CMD}"
219 runapt
command gdb
--quiet -ex run
"$CMD" --args "$CMD" "$@"
222 date -u -d "@$(stat -c '%Y' "${TMPWORKINGDIRECTORY}/$1")" -R
225 grep "^${2:-Date}:" "$1" | cut
-d' ' -f 2-
229 # error if we about to overflow, but ...
230 # "255 failures ought to be enough for everybody"
231 if [ $EXIT_CODE -gt 255 ]; then
232 msgdie
"Total failure count $EXIT_CODE too big"
234 exit $((EXIT_CODE <= 255 ? EXIT_CODE : 255));
237 shellsetedetector
() {
239 if [ "$exit_status" != '0' ]; then
240 printf >&2 "${CERROR}E: Looks like the testcases ended prematurely with exitcode: ${exit_status}${CNORMAL}\n"
241 if [ "$EXIT_CODE" = '0' ]; then
242 EXIT_CODE
="$exit_status"
248 if [ "$1" = 'prefix' ]; then
249 CURRENTTRAP
="$2 $CURRENTTRAP"
251 CURRENTTRAP
="$CURRENTTRAP $1"
253 trap "shellsetedetector; $CURRENTTRAP exitwithstatus;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
257 echo "$@" | sed -e "s#'#'\"'\"'#g"
261 # privilege dropping and testing doesn't work if /tmp isn't world-writeable (as e.g. with libpam-tmpdir)
262 if [ -n "$TMPDIR" ] && [ "$(id -u)" = '0' ] && [ "$(stat --format '%a' "$TMPDIR")" != '1777' ]; then
265 TMPWORKINGDIRECTORY
="$(mktemp -d)"
266 addtrap
"cd /; rm -rf '$(escape_shell "$TMPWORKINGDIRECTORY")';"
267 if [ -n "$TMPDIR_ADD" ]; then
268 TMPWORKINGDIRECTORY
="${TMPWORKINGDIRECTORY}/${TMPDIR_ADD}"
269 mkdir -p "$TMPWORKINGDIRECTORY"
271 export TMPDIR
="$TMPWORKINGDIRECTORY"
273 msgninfo
"Preparing environment for ${0##*/} in ${TMPWORKINGDIRECTORY}…"
275 mkdir -m 700 "${TMPWORKINGDIRECTORY}/downloaded"
276 if [ "$(id -u)" = '0' ]; then
277 # relax permissions so that running as root with user switching works
279 chmod 711 "$TMPWORKINGDIRECTORY"
280 chown _apt
:root
"${TMPWORKINGDIRECTORY}/downloaded"
283 TESTDIRECTORY
="$(readlink -f "$(dirname $0)")"
284 # allow overriding the default BUILDDIR location
285 SOURCEDIRECTORY="${APT_INTEGRATION_TESTS_SOURCE_DIR:-"${TESTDIRECTORY}/../../"}"
286 BUILDDIRECTORY="${APT_INTEGRATION_TESTS_BUILD_DIR:-"${TESTDIRECTORY}/../../build/bin"}"
287 LIBRARYPATH="${APT_INTEGRATION_TESTS_LIBRARY_PATH:-"${BUILDDIRECTORY}"}"
288 METHODSDIR="${APT_INTEGRATION_TESTS_METHODS_DIR:-"${BUILDDIRECTORY}/methods"}"
289 APTHELPERBINDIR="${APT_INTEGRATION_TESTS_LIBEXEC_DIR:-"${BUILDDIRECTORY}"}"
290 APTWEBSERVERBINDIR="${APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR:-"${BUILDDIRECTORY}"}"
291 APTINTERNALSOLVER="${APT_INTEGRATION_TESTS_INTERNAL_SOLVER:-"${BUILDDIRECTORY}/apt-internal-solver"}"
292 APTDUMPSOLVER="${APT_INTEGRATION_TESTS_DUMP_SOLVER:-"${BUILDDIRECTORY}/apt-dump-solver"}"
293 APTINTERNALPLANNER="${APT_INTEGRATION_TESTS_INTERNAL_PLANNER:-"${BUILDDIRECTORY}/apt-internal-planner"}"
294 test -x "${BUILDDIRECTORY}/apt
-get" || msgdie "You need to build tree first
"
297 cd "$TMPWORKINGDIRECTORY"
298 mkdir rootdir aptarchive keys
300 mkdir -p etc/apt/apt.conf.d etc/apt/sources.list.d etc/apt/trusted.gpg.d etc/apt/preferences.d
301 mkdir -p usr/bin var/cache var/lib var/log tmp
302 mkdir -p var/lib/dpkg/info var/lib/dpkg/updates var/lib/dpkg/triggers
303 touch var/lib/dpkg/available
305 ln -s "${METHODSDIR}" usr/lib/apt/methods
306 if [ "$BUILDDIRECTORY" = "$LIBRARYPATH" ]; then
307 mkdir -p usr/lib/apt/solvers usr/lib/apt/planners
308 ln -s "${BUILDDIRECTORY}/apt
-dump-solver" usr/lib/apt/solvers/dump
309 ln -s "${BUILDDIRECTORY}/apt
-dump-solver" usr/lib/apt/planners/dump
310 ln -s "${BUILDDIRECTORY}/apt
-internal-solver" usr/lib/apt/solvers/apt
311 ln -s "${BUILDDIRECTORY}/apt
-internal-planner" usr/lib/apt/planners/apt
312 echo "Dir
::Bin
::Solvers
\"${TMPWORKINGDIRECTORY}/rootdir
/usr
/lib
/apt
/solvers
\";" >> ../aptconfig.conf
313 echo "Dir
::Bin
::Planners
\"${TMPWORKINGDIRECTORY}/rootdir
/usr
/lib
/apt
/planners
\";" >> ../aptconfig.conf
315 # use the autoremove from the BUILDDIRECTORY if its there, otherwise
317 if [ -e "${BUILDDIRECTORY}/..
/..
/debian
/apt.conf.autoremove
" ]; then
318 ln -s "${BUILDDIRECTORY}/..
/..
/debian
/apt.conf.autoremove
" etc/apt/apt.conf.d/01autoremove
320 ln -s /etc/apt/apt.conf.d/01autoremove etc/apt/apt.conf.d/01autoremove
323 local BASENAME="${0##*/}"
324 local PACKAGESFILE="Packages
-${BASENAME#*-}"
325 if [ -f "${TESTDIRECTORY}/${PACKAGESFILE}" ]; then
326 cp "${TESTDIRECTORY}/${PACKAGESFILE}" aptarchive/Packages
328 local SOURCESSFILE="Sources
-${BASENAME#*-}"
329 if [ -f "${TESTDIRECTORY}/${SOURCESSFILE}" ]; then
330 cp "${TESTDIRECTORY}/${SOURCESSFILE}" aptarchive/Sources
332 find "$TESTDIRECTORY" \( -name '*.pub' -o -name '*.sec' \) -exec cp '{}' keys/ \;
334 ln -s "${TMPWORKINGDIRECTORY}/keys
/joesixpack.pub
" rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
336 echo "Dir
\"${TMPWORKINGDIRECTORY}/rootdir
\";" >> aptconfig.conf
337 echo "Dir
::state
::status
\"${TMPWORKINGDIRECTORY}/rootdir
/var
/lib
/dpkg
/status
\";" >> aptconfig.conf
338 echo "APT
::Get
::Show
-User-Simulation-Note \"false
\";" >> aptconfig.conf
339 echo "Dir
::Bin
::Methods
\"${TMPWORKINGDIRECTORY}/rootdir
/usr
/lib
/apt
/methods
\";" >> aptconfig.conf
340 # either store apt-key were we can access it, even if we run it as a different user
341 #cp "${BUILDDIRECTORY}/apt
-key" "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/"
342 #chmod o+rx "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/apt
-key"
343 #echo "Dir
::Bin
::apt
-key \"${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/apt
-key\";" >> aptconfig.conf
344 # destroys coverage reporting though, so we disable changing user for the calling gpgv
345 echo "Dir
::Bin
::apt
-key \"${BUILDDIRECTORY}/apt
-key\";" >> aptconfig.conf
346 if [ "$(id -u)" = '0' ]; then
347 echo 'Binary::gpgv::APT::Sandbox::User "root
";' >> aptconfig.conf
348 # same for the solver executables
349 echo 'APT::Solver::RunAsUser "root
";' >> aptconfig.conf
350 echo 'APT::Planner::RunAsUser "root
";' >> aptconfig.conf
353 cat > "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
" <<EOF
356 if [ -r '${TMPWORKINGDIRECTORY}/noopchroot.so' ]; then
357 if [ -n "\
$LD_LIBRARY_PATH" ]; then
358 export LD_LIBRARY_PATH='${TMPWORKINGDIRECTORY}:'"\
${LD_LIBRARY_PATH}"
360 export LD_LIBRARY_PATH='${TMPWORKINGDIRECTORY}'
362 if [ -n "\
$LD_PRELOAD" ]; then
363 export LD_PRELOAD="noopchroot.so \
${LD_PRELOAD}"
365 export LD_PRELOAD="noopchroot.so
"
369 cp "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
" "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/gdb
-dpkg"
370 cat >> "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
" <<EOF
371 exec fakeroot '${DPKG:-dpkg}' --root='${TMPWORKINGDIRECTORY}/rootdir' \\
372 --log='${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log' \\
373 --force-not-root --force-bad-path "\$@
"
375 cat >> "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/gdb
-dpkg" <<EOF
376 exec fakeroot gdb --quiet -ex run '${DPKG:-dpkg}' --args '${DPKG:-dpkg}' --root='${TMPWORKINGDIRECTORY}/rootdir' \\
377 --log='${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log' \\
378 --force-not-root --force-bad-path "\$@
"
380 chmod +x "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
" "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/gdb
-dpkg"
381 echo "Dir
::Bin
::dpkg
\"${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
\";" > rootdir/etc/apt/apt.conf.d/99dpkg
384 if ! command dpkg --assert-multi-arch >/dev/null 2>&1; then
385 echo "DPKG
::options
:: \"--force-architecture\";" # Added to test multiarch before dpkg is ready for it…
388 echo 'quiet::NoUpdate "true
";'
389 echo 'quiet::NoStatistic "true
";'
390 # too distracting for users, but helpful to detect changes
391 echo 'Acquire::Progress::Ignore::ShowErrorText "true
";'
392 echo 'Acquire::Progress::Diffpercent "true
";'
393 # in testcases, it can appear as if localhost has a rotation setup,
394 # hide this as we can't really deal with it properly
395 echo 'Acquire::Failure::ShowIP "false
";'
396 # fakeroot can't fake everything, so disabled in production but good for tests
397 echo 'APT::Sandbox::Verify "true
";'
400 cp "${TESTDIRECTORY}/apt.pem
" "${TMPWORKINGDIRECTORY}/rootdir
/etc
/webserver.pem
"
401 if [ "$(id -u)" = '0' ]; then
402 chown _apt:root "${TMPWORKINGDIRECTORY}/rootdir
/etc
/webserver.pem
"
404 echo "Acquire
::https
::CaInfo
\"${TMPWORKINGDIRECTORY}/rootdir
/etc
/webserver.pem
\";" > rootdir/etc/apt/apt.conf.d/99https
405 echo "Apt
::Cmd
::Disable
-Script-Warning \"1\";" > rootdir/etc/apt/apt.conf.d/apt-binary
406 export APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=no
407 echo 'Acquire::Connect::AddrConfig "false
";' > rootdir/etc/apt/apt.conf.d/connect-addrconfig
409 configcompression '.' 'gz' #'bz2' 'lzma' 'xz'
410 confighashes 'SHA256' # these are tests, not security best-practices
412 # create some files in /tmp and look at user/group to get what this means
413 TEST_DEFAULT_USER="$(id -un)"
414 if [ "$(uname)" = 'GNU/kFreeBSD' ]; then
415 TEST_DEFAULT_GROUP='root'
417 TEST_DEFAULT_GROUP="$(id -gn)"
420 # cleanup the environment a bit
421 # prefer our apt binaries over the system apt binaries
422 export PATH="${BUILDDIRECTORY}:${PATH}:/usr
/local
/sbin
:/usr
/sbin
:/sbin
"
423 export LC_ALL=C.UTF-8
424 unset LANGUAGE APT_CONFIG
425 unset GREP_OPTIONS DEB_BUILD_PROFILES
426 unset http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy
428 # If gpgv supports --weak-digest, pass it to make sure we can disable SHA1
429 if aptkey verify --weak-digest SHA1 --help 2>/dev/null >/dev/null; then
430 echo 'Acquire::gpgv::Options { "--weak-digest"; "sha1
"; };' > rootdir/etc/apt/apt.conf.d/no-sha1
433 # most tests just need one signed Release file, not both
434 export APT_DONT_SIGN='Release.gpg'
440 if [ "$1" = "native
" -o -z "$1" ]; then
441 eval `aptconfig shell ARCH APT::Architecture`
442 if [ -n "$ARCH" ]; then
445 dpkg --print-architecture
453 aptconfig dump --no-empty --format '%v%n' APT::Architecture APT::Architectures | sort -u | tr '\n' ' '
456 getarchitecturesfromcommalist() {
457 echo "$1" | sed -e 's#,#\n#g' | sed -e "s
/^native\$
/$(getarchitecture 'native')/"
460 configarchitecture() {
462 echo "APT
::Architecture
\"$(getarchitecture $1)\";"
463 while [ -n "$1" ]; do
464 echo "APT
::Architectures
:: \"$(getarchitecture $1)\";"
467 } >rootdir/etc/apt/apt.conf.d/01multiarch.conf
472 if [ ! -e rootdir/var/lib/dpkg/status ]; then
473 local BASENAME="${0##*/}"
474 local STATUSFILE="status
-${BASENAME#*-}"
475 if [ -f "${TESTDIRECTORY}/${STATUSFILE}" ]; then
476 cp "${TESTDIRECTORY}/${STATUSFILE}" rootdir/var/lib/dpkg/status
478 echo -n > rootdir/var/lib/dpkg/status
481 rm -f rootdir/etc/apt/apt.conf.d/00foreigndpkg
482 if command dpkg --assert-multi-arch >/dev/null 2>&1 ; then
483 local ARCHS="$(getarchitectures)"
484 if echo "$ARCHS" | grep -E -q '[^ ]+ [^ ]+'; then
485 DPKGARCH="$(dpkg --print-architecture)"
486 for ARCH in ${ARCHS}; do
487 if [ "${ARCH}" != "${DPKGARCH}" ]; then
488 if ! dpkg --add-architecture ${ARCH} >/dev/null 2>&1; then
489 # old-style used e.g. in Ubuntu-P – and as it seems travis
490 echo "DPKG
::options
:: \"--foreign-architecture\";" >> rootdir/etc/apt/apt.conf.d/00foreigndpkg
491 echo "DPKG
::options
:: \"${ARCH}\";" >> rootdir/etc/apt/apt.conf.d/00foreigndpkg
495 if [ "0" = "$(dpkg -l dpkg 2> /dev/null | grep '^i' | wc -l)" ]; then
496 # dpkg doesn't really check the version as long as it is fully installed,
497 # but just to be sure we choose one above the required version
498 insertinstalledpackage 'dpkg' "all
" '1.16.2+fake'
504 configdpkgnoopchroot() {
505 # create a library to noop chroot() and rewrite maintainer script executions
506 # via execvp() as used by dpkg as we don't want our rootdir to be a fullblown
507 # chroot directory dpkg could chroot into to execute the maintainer scripts
508 msgtest 'Building library to preload to make maintainerscript work in' 'dpkg'
509 cat > noopchroot.c << EOF
516 static char * chrootdir = NULL;
518 int chroot(const char *path) {
519 printf("WARNING
: CHROOTing to
%s was ignored
!\n", path);
521 chrootdir = strdup(path);
524 int execvp(const char *file, char *const argv[]) {
525 static int (*func_execvp) (const char *, char * const []) = NULL;
526 if (func_execvp == NULL)
527 func_execvp = (int (*) (const char *, char * const [])) dlsym(RTLD_NEXT, "execvp
");
528 if (chrootdir == NULL || strncmp(file, "/var
/lib
/dpkg
/", strlen("/var
/lib
/dpkg
/")) != 0)
529 return func_execvp(file, argv);
530 printf("REWRITE execvp call
%s into
%s
\n", file, chrootdir);
532 if (asprintf(&newfile, "%s
%s
", chrootdir, file) == -1) {
536 char const * const baseadmindir = "/var
/lib
/dpkg
";
538 if (asprintf(&admindir, "%s
%s
", chrootdir, baseadmindir) == -1) {
542 setenv("DPKG_ADMINDIR
", admindir, 1);
543 return func_execvp(newfile, argv);
546 testempty --nomsg gcc -Wall -Wextra -fPIC -shared -o noopchroot.so noopchroot.c -ldl
548 configcompression() {
549 if [ "$1" = 'ALL' ]; then
550 configcompression '.' $(aptconfig dump APT::Compressor --format '%t %v%n' | sed -n 's#^Extension \.\(.*\)$#\1#p')
553 local CMD='apthelper cat-file -C'
554 while [ -n "$1" ]; do
556 '.') printf ".
\t.
\tcat
\n";;
557 'gz') printf "gzip\tgz
\t$CMD $1\n";;
558 'bz2') printf "bzip2\tbz
2\t$CMD $1\n";;
559 *) printf "$1\t$1\t$CMD $1\n";;
562 done > "${TMPWORKINGDIRECTORY}/rootdir
/etc
/testcase
-compressor.conf
"
566 echo 'APT::FTPArchive {'
568 while [ -n "$1" ]; do
569 printf "$1" | tr 'a-z' 'A-Z'
570 printf "\t\"true
\";\n"
573 for h in 'MD5' 'SHA1' 'SHA256' 'SHA512'; do
574 printf "$h\t\"false
\";\n"
578 } >> "${TMPWORKINGDIRECTORY}/rootdir
/etc
/apt
/apt.conf.d
/ftparchive
-hashes.conf
"
583 COMPRESSOR_CMD="apthelper
cat-file -C $1"
585 gzip) COMPRESS='gz';;
586 bzip2) COMPRESS='bz2';;
588 local CONFFILE="${TMPWORKINGDIRECTORY}/rootdir
/etc
/apt
/apt.conf.d
/00force
-compressor"
589 echo "Acquire
::CompressionTypes
::Order
{ \"${COMPRESS}\"; };
590 Dir
::Bin
::uncompressed
\"/does
/not
/exist
\";" > "$CONFFILE"
591 for COMP in $(aptconfig dump 'APT::Compressor' --format '%f%n' | cut -d':' -f 5 | uniq); do
592 if [ -z "$COMP" -o "$COMP" = '.' -o "$COMP" = "$COMPRESSOR" ]; then continue; fi
593 echo "Dir
::Bin
::${COMP} \"/does
/not
/exist
\";" >> "$CONFFILE"
594 echo "APT
::Compressor
::${COMP}::Name
\"${COMP}-disabled\";" >> "$CONFFILE"
598 _setupsimplenativepackage() {
602 local RELEASE="${4:-unstable}"
603 local DEPENDENCIES="$5"
604 local DESCRIPTION="${6:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
605 If you
find such a package installed on your system
,
606 something went horribly wrong
! They are autogenerated
607 und used only by testcases and serve no other purpose…
"}"
609 local SECTION
="${7:-others}"
610 local PRIORITY
="${8:-optional}"
612 local COMPRESS_TYPE
="${10:-gzip}"
614 if [ "$SECTION" = "${SECTION#*/}" ]; then
617 DISTSECTION
="${SECTION%/*}"
619 local BUILDDIR
="${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}"
621 mkdir -p "$BUILDDIR/debian/source"
622 echo "* most suckless software product ever" > "${BUILDDIR}/FEATURES"
624 echo '$NAME says \"Hello!\"'" > "${BUILDDIR}/${NAME}"
626 echo "Copyleft by Joe Sixpack $(date -u +%Y)" > "${BUILDDIR}/debian/copyright"
627 echo "$NAME ($VERSION) $RELEASE; urgency=low
631 -- Joe Sixpack <joe@example.org> $(date -u -R)" > "${BUILDDIR}/debian/changelog"
635 Maintainer: Joe Sixpack <joe@example.org>
636 Standards-Version: 3.9.3"
637 if [ "$SECTION" != '<none>' ]; then
638 echo "Section: $SECTION"
640 local BUILDDEPS
="$(echo "$DEPENDENCIES" | grep '^Build-')"
641 test -z "$BUILDDEPS" || echo "$BUILDDEPS"
645 if [ "$ARCH" = 'all' ]; then
646 echo "Architecture: all"
648 echo "Architecture: any"
650 local DEPS
="$(echo "$DEPENDENCIES" | grep -v '^Build-')"
651 test -z "$DEPS" || echo "$DEPS"
652 echo "Description: $DESCRIPTION"
653 } > "${BUILDDIR}/debian/control"
655 echo '3.0 (native)' > "${BUILDDIR}/debian/source/format"
658 setupsimplenativepackage
() {
659 _setupsimplenativepackage
"$@"
662 local BUILDDIR
="${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}"
663 test -e "${BUILDDIR}/debian/compat" || echo '7' > "${BUILDDIR}/debian/compat"
664 test -e "${BUILDDIR}/debian/rules" || cp /usr
/share
/doc
/debhelper
/examples
/rules.tiny
"${BUILDDIR}/debian/rules"
667 buildsimplenativepackage
() {
671 local RELEASE
="${4:-unstable}"
672 local DEPENDENCIES
="$5"
673 local DESCRIPTION
="$6"
674 local SECTION
="${7:-others}"
675 local PRIORITY
="${8:-optional}"
677 local COMPRESS_TYPE
="${10:-gzip}"
679 if [ "$SECTION" = "${SECTION#*/}" ]; then
682 DISTSECTION
="${SECTION%/*}"
684 local BUILDDIR
="${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}"
685 msgtest
"Build source package in version ${VERSION} for ${RELEASE} in ${DISTSECTION}" "$NAME"
686 _setupsimplenativepackage
"$@"
688 testsuccess
--nomsg dpkg
-source -b ${NAME}-${VERSION}
690 sed -n 's#^dpkg-source: info: building [^ ]\+ in ##p' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testsuccess.output" \
692 echo "pool/${SRC}" >> "${BUILDDIR}/../${RELEASE}.${DISTSECTION}.srclist"
693 # if expr match "${SRC}" '.*\.dsc' >/dev/null 2>&1; then
694 # aptkey --keyring ./keys/joesixpack.pub --secret-keyring ./keys/joesixpack.sec --quiet --readonly \
695 # adv --yes --default-key 'Joe Sixpack' \
696 # --clearsign -o "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC"
697 # mv "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC"
701 for arch
in $(getarchitecturesfromcommalist "$ARCH"); do
702 msgtest
"Build binary package for ${RELEASE} in ${SECTION}" "$NAME"
703 rm -rf "${BUILDDIR}/debian/tmp"
704 mkdir -p "${BUILDDIR}/debian/tmp/DEBIAN" "${BUILDDIR}/debian/tmp/usr/share/doc/${NAME}" "${BUILDDIR}/debian/tmp/usr/bin"
705 cp "${BUILDDIR}/debian/copyright" "${BUILDDIR}/debian/changelog" "${BUILDDIR}/FEATURES" "${BUILDDIR}/debian/tmp/usr/share/doc/${NAME}"
706 cp "${BUILDDIR}/${NAME}" "${BUILDDIR}/debian/tmp/usr/bin/${NAME}-${arch}"
707 if [ -n "$FILE_TREE" ]; then
708 cp -ar "$FILE_TREE" "${BUILDDIR}/debian/tmp"
711 (cd "${BUILDDIR}"; dpkg
-gencontrol -DArchitecture=$arch)
712 (cd "${BUILDDIR}/debian/tmp"; md5sum $(find usr/ -type f) > DEBIAN
/md5sums
)
713 local LOG
="${BUILDDIR}/../${NAME}_${VERSION}_${arch}.dpkg-deb.log"
714 # ensure the right permissions as dpkg-deb insists
715 chmod 755 "${BUILDDIR}/debian/tmp/DEBIAN"
716 testsuccess
--nomsg dpkg
-deb -Z${COMPRESS_TYPE} --build "${BUILDDIR}/debian/tmp" "${BUILDDIR}/.."
717 echo "pool/${NAME}_${VERSION}_${arch}.deb" >> "${BUILDDIR}/../${RELEASE}.${DISTSECTION}.pkglist"
721 if [ "$(echo "$NAME" | cut -c 1-3)" = 'lib' ]; then
722 NM
="$(echo "$NAME" | cut -c 1-4)"
724 NM
="$(echo "$NAME" | cut -c 1)"
726 local CHANGEPATH
="${BUILDDIR}/../${DISTSECTION}/${NM}/${NAME}/${NAME}_${VERSION}"
727 mkdir -p "$CHANGEPATH"
728 cp "${BUILDDIR}/debian/changelog" "$CHANGEPATH"
737 local ARCH
=$(getarchitecture $4)
738 local PKGNAME
="$(echo "$BUILDDIR" | grep -o '[^/]*$')"
739 local BUILDLOG
="$(readlink -f "${BUILDDIR}/../${PKGNAME}_${RELEASE}_${SECTION}.dpkg-bp.log")"
740 msgtest
"Build package for ${RELEASE} in ${SECTION}" "$PKGNAME"
742 if [ "$ARCH" = "all" ]; then
743 ARCH
="$(dpkg-architecture -qDEB_HOST_ARCH 2> /dev/null)"
745 testsuccess
--nomsg dpkg
-buildpackage -uc -us -a$ARCH
746 cp "${TMPWORKINGDIRECTORY}/rootdir/tmp/testsuccess.output" "$BUILDLOG"
747 local PKGS
="$(grep '^dpkg-deb: building package' "$BUILDLOG" | cut -d'/' -f 2 | sed -e "s#'\.##")"
748 local SRCS
="$(grep '^dpkg-source: info: building' "$BUILDLOG" | grep -o '[a-z0-9._+~-]*$')"
751 echo "pool/${PKG}" >> "${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.pkglist"
754 echo "pool/${SRC}" >> "${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.srclist"
759 if [ -d incoming
]; then
760 buildaptarchivefromincoming
"$@"
762 buildaptarchivefromfiles
"$@"
766 createaptftparchiveconfig
() {
767 local COMPRESSORS
="$(cut -d' ' -f 1 "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf" | tr '\n' ' ')"
768 local COMPRESSORS
="${COMPRESSORS%* }"
769 local ARCHS
="$(getarchitectures)"
770 cat > ftparchive.conf
<<EOF
772 ArchiveDir "$(readlink -f .)";
773 CacheDir "$(readlink -f ..)";
774 FileListDir "$(readlink -f pool/)";
777 Packages::Compress "$COMPRESSORS";
778 Sources::Compress "$COMPRESSORS";
779 Contents::Compress "$COMPRESSORS";
780 Translation::Compress "$COMPRESSORS";
781 LongDescription "false";
785 SrcDirectory "pool/";
788 for DIST
in $(find ./pool/ -maxdepth 1 -name '*.pkglist' -type f | cut -d'/' -f 3 | cut -d'.' -f 1 | sort | uniq); do
791 Architectures "$ARCHS all source";
792 FileList "${DIST}.\$(SECTION).pkglist";
793 SourceFileList "${DIST}.\$(SECTION).srclist";
794 Sections "$(find ./pool/ -maxdepth 1 -name "${DIST}.*.pkglist" -type f | cut -d'/' -f 3 | cut -d'.' -f 2 | sort | uniq | tr '\n' ' ')";
797 done >> ftparchive.conf
800 buildaptftparchivedirectorystructure
() {
801 local DISTS
="$(grep -i '^tree ' ftparchive.conf | cut -d'/' -f 2 | sed -e 's#".*##')"
802 for DIST
in $DISTS; do
803 local SECTIONS
="$(grep -i -A 5 "dists/$DIST" ftparchive.conf | grep -i 'Sections' | cut -d'"' -f 2)"
804 for SECTION
in $SECTIONS; do
805 local ARCHS
="$(grep -A 5 "dists/$DIST" ftparchive.conf | grep Architectures | cut -d'"' -f 2 | sed -e 's#source##')"
806 for ARCH
in $ARCHS; do
807 mkdir -p "dists/${DIST}/${SECTION}/binary-${ARCH}"
809 mkdir -p "dists/${DIST}/${SECTION}/source"
810 mkdir -p "dists/${DIST}/${SECTION}/i18n"
820 local DEPENDENCIES
="$5"
821 local PRIORITY
="${6:-optional}"
822 local DESCRIPTION
="${7:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASES}
823 If you find such a package installed on your system,
824 something went horribly wrong! They are autogenerated
825 und used only by testcases and serve no other purpose…"}"
827 for RELEASE in $(printf '%s' "$RELEASES" | tr ',' '\n'); do
828 if [ "$RELEASE" = 'installed' ]; then
829 insertinstalledpackage "$2" "$3" "$4" "$5" "$6" "$7"
832 for arch in $(getarchitecturesfromcommalist "$ARCH"); do
833 if [ "$arch" = 'none' ]; then
834 ARCHS="$(getarchitectures)"
838 for BUILDARCH in $ARCHS; do
839 local PPATH="aptarchive
/dists
/${RELEASE}/main
/binary
-${BUILDARCH}"
846 Maintainer
: Joe Sixpack
<joe@example.org
>"
847 test "$arch" = 'none' || echo "Architecture
: $arch"
848 echo "Version
: $VERSION
849 Filename
: pool
/main
/${NAME}/${NAME}_
${VERSION}_
${arch}.deb
"
850 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES"
851 echo "Description
: $(printf '%s' "$DESCRIPTION" | head -n 1)"
852 echo "Description
-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)"
854 } >> "${PPATH}/Packages
"
857 mkdir -p "aptarchive
/dists
/${RELEASE}/main
/source" "aptarchive
/dists
/${RELEASE}/main
/i18n
"
858 touch "aptarchive
/dists
/${RELEASE}/main
/source
/Sources
"
860 Description
-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)
861 Description
-en: $DESCRIPTION
862 " >> "aptarchive
/dists
/${RELEASE}/main
/i
18n
/Translation
-en"
871 local DEPENDENCIES="$5"
872 local BINARY="${6:-$NAME}"
874 for RELEASE in $(printf '%s' "$RELEASES" | tr ',' '\n'); do
875 local SPATH="aptarchive
/dists
/${RELEASE}/main
/source"
877 local FILE="${SPATH}/Sources
"
878 local DSCFILE="${NAME}_
${VERSION}.dsc
"
879 local TARFILE="${NAME}_
${VERSION}.
tar.gz
"
883 Maintainer
: Joe Sixpack
<joe@example.org
>
884 Architecture
: $ARCH" >> $FILE
885 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> "$FILE"
887 $(echo -n "$DSCFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
888 $(echo -n "$TARFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
890 $(echo -n "$DSCFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
891 $(echo -n "$TARFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
896 insertinstalledpackage() {
900 local DEPENDENCIES="$4"
901 local PRIORITY="${5:-optional}"
902 local STATUS="${6:-install ok installed}"
903 local DESCRIPTION="${7:-"an autogenerated dummy ${NAME}=${VERSION}/installed
904 If you
find such a package installed on your system
,
905 something went horribly wrong
! They are autogenerated
906 und used only by testcases and serve no other purpose…
"}"
908 local FILE
='rootdir/var/lib/dpkg/status'
909 local INFO
='rootdir/var/lib/dpkg/info'
910 for arch
in $(getarchitecturesfromcommalist "$ARCH"); do
916 Maintainer: Joe Sixpack <joe@example.org>
917 Version: $VERSION" >> "$FILE"
918 test "$arch" = 'none' || echo "Architecture: $arch" >> "$FILE"
919 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> "$FILE"
920 echo "Description: $DESCRIPTION" >> "$FILE"
922 if [ "$(dpkg-query -W --showformat='${Multi-Arch}')" = 'same' ]; then
923 echo -n > "${INFO}/${NAME}:${arch}.list"
925 echo -n > "${INFO}/${NAME}.list"
931 buildaptarchivefromincoming
() {
932 msginfo
"Build APT archive for ${CCMD}${0##*/}${CINFO} based on incoming packages…"
934 [ -e pool
] || ln -s ..
/incoming pool
935 [ -e ftparchive.conf
] || createaptftparchiveconfig
936 [ -e dists
] || buildaptftparchivedirectorystructure
937 msgninfo
"\tGenerate Packages, Sources and Contents files… "
938 testsuccess aptftparchive generate ftparchive.conf
941 generatereleasefiles
"$@"
944 buildaptarchivefromfiles
() {
945 msginfo
"Build APT archive for ${CCMD}${0##*/}${CINFO} based on prebuild files…"
946 local DIR
='aptarchive'
947 if [ -d "${DIR}/dists" ]; then DIR
="${DIR}/dists"; fi
948 find "$DIR" -name 'Packages' -o -name 'Sources' -o -name 'Translation-*' | while read line
; do
949 msgninfo
"\t${line} file… "
950 compressfile
"$line" "$1"
953 generatereleasefiles
"$@"
957 while read compressor extension
command; do
958 if [ "$compressor" = '.' ]; then
964 cat "$1" | $command > "${1}.${extension}"
966 touch -d "$2" "${1}.${extension}"
968 done < "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf"
971 # can be overridden by testcases for their pleasure
972 getcodenamefromsuite
() {
974 unstable
) echo 'sid';;
978 getreleaseversionfromsuite
() { true
; }
979 getlabelfromsuite
() { true
; }
980 getoriginfromsuite
() { true
; }
981 getarchitecturesfromreleasefile
() { echo "all $(getarchitectures)"; }
983 aptftparchiverelease
() {
984 aptftparchive
-qq release
"$@" | sed -e '/0 Release$/ d' # remove the self reference
986 generatereleasefiles
() {
987 # $1 is the Date header and $2 is the ValidUntil header to be set
988 # both should be given in notation date/touch can understand
990 local VALIDUNTIL
="$2"
991 if [ -e aptarchive
/dists
]; then
992 msgninfo
"\tGenerate Release files for dists… "
993 for dir
in $(find ./aptarchive/dists -mindepth 1 -maxdepth 1 -type d); do
994 local ARCHITECTURES
="$(getarchitecturesfromreleasefile "$dir")"
995 local SUITE
="$(echo "$dir" | cut -d'/' -f 4)"
996 local CODENAME
="$(getcodenamefromsuite $SUITE)"
997 local VERSION
="$(getreleaseversionfromsuite $SUITE)"
998 local LABEL
="$(getlabelfromsuite $SUITE)"
999 local ORIGIN
="$(getoriginfromsuite $SUITE)"
1000 aptftparchiverelease
"$dir" \
1001 -o APT
::FTPArchive
::Release
::Suite
="${SUITE}" \
1002 -o APT
::FTPArchive
::Release
::Codename
="${CODENAME}" \
1003 -o APT
::FTPArchive
::Release
::Architectures
="${ARCHITECTURES}" \
1004 -o APT
::FTPArchive
::Release
::Label
="${LABEL}" \
1005 -o APT
::FTPArchive
::Release
::Origin
="${ORIGIN}" \
1006 -o APT
::FTPArchive
::Release
::Version
="${VERSION}" \
1008 if [ "$SUITE" = "experimental" -o "$SUITE" = "experimental2" ]; then
1009 sed -i '/^Date: / a\
1010 NotAutomatic: yes' "$dir/Release"
1014 msgninfo
"\tGenerate Release files for flat… "
1015 aptftparchiverelease .
/aptarchive
> aptarchive
/Release
1017 if [ -n "$DATE" -a "$DATE" != "now" ]; then
1018 for release
in $(find ./aptarchive -name 'Release'); do
1019 sed -i "s/^Date: .*$/Date: $(date -u -d "$DATE" -R)/" "$release"
1020 touch -d "$DATE" "$release"
1023 if [ -n "$VALIDUNTIL" ]; then
1024 sed -i "/^Date: / a\
1025 Valid-Until: $(date -u -d "$VALIDUNTIL" -R)" $(find ./aptarchive -name 'Release')
1030 setupdistsaptarchive
() {
1031 local APTARCHIVE
="$(readlink -f ./aptarchive | sed 's# #%20#g')"
1032 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb.list
1033 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb-src.list
1034 for DISTS
in $(find ./aptarchive/dists/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 4); do
1035 SECTIONS
=$(find "./aptarchive/dists/${DISTS}/" -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 5 | tr '\n' ' ')
1036 msgninfo
"\tadd deb and deb-src sources.list lines for ${CCMD}${DISTS} ${SECTIONS}${CINFO}… "
1037 echo "deb file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb.list"
1038 echo "deb-src file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb-src.list"
1043 setupflataptarchive
() {
1044 local APTARCHIVE
="$(readlink -f ./aptarchive)"
1045 local APTARCHIVEURI
="$(readlink -f ./aptarchive | sed 's# #%20#g')"
1046 if [ -f "${APTARCHIVE}/Packages" ]; then
1047 msgninfo
"\tadd deb sources.list line… "
1048 echo "deb file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
1051 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
1053 if [ -f "${APTARCHIVE}/Sources" ]; then
1054 msgninfo
"\tadd deb-src sources.list line… "
1055 echo "deb-src file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
1058 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
1064 if [ "$1" = '--no-update' ]; then
1068 buildaptarchive
"$@"
1069 if [ -e aptarchive
/dists
]; then
1070 setupdistsaptarchive
1074 signreleasefiles
'Joe Sixpack'
1075 if [ "1" != "$NOUPDATE" ]; then
1076 testsuccess aptget update
-o Debug
::pkgAcquire
::Worker
=true
-o Debug
::Acquire
::gpgv
=true
1080 signreleasefiles
() {
1081 local SIGNERS
="${1:-Joe Sixpack}"
1082 local REPODIR
="${2:-aptarchive}"
1083 if [ -n "$1" ]; then shift; fi
1084 if [ -n "$1" ]; then shift; fi
1085 local KEY
="keys/$(echo "$SIGNERS" | tr 'A-Z' 'a-z' | tr -d ' ,')"
1086 msgninfo
"\tSign archive with $SIGNERS key $KEY… "
1087 local REXKEY
='keys/rexexpired'
1088 local SECEXPIREBAK
="${REXKEY}.sec.bak"
1089 local PUBEXPIREBAK
="${REXKEY}.pub.bak"
1091 while [ -n "${SIGNERS%%,*}" ]; do
1092 local SIGNER
="${SIGNERS%%,*}"
1093 if [ "${SIGNERS}" = "${SIGNER}" ]; then
1096 SIGNERS
="${SIGNERS#*,}"
1097 # FIXME: This should be the full name, but we can't encode the space properly currently
1098 SIGUSERS
="${SIGUSERS} -u ${SIGNER#* }"
1099 if [ "${SIGNER}" = 'Rex Expired' ]; then
1100 # the key is expired, so gpg doesn't allow to sign with and the --faked-system-time
1101 # option doesn't exist anymore (and using faketime would add a new obscure dependency)
1102 # therefore we 'temporary' make the key not expired and restore a backup after signing
1103 cp "${REXKEY}.sec" "$SECEXPIREBAK"
1104 cp "${REXKEY}.pub" "$PUBEXPIREBAK"
1105 local SECUNEXPIRED
="${REXKEY}.sec.unexpired"
1106 local PUBUNEXPIRED
="${REXKEY}.pub.unexpired"
1107 if [ -f "$SECUNEXPIRED" ] && [ -f "$PUBUNEXPIRED" ]; then
1108 cp "$SECUNEXPIRED" "${REXKEY}.sec"
1109 cp "$PUBUNEXPIRED" "${REXKEY}.pub"
1111 if ! printf "expire\n1w\nsave\n" | aptkey
--quiet --keyring "${REXKEY}.pub" --secret-keyring "${REXKEY}.sec" \
1112 --readonly adv
--batch --yes --digest-algo "${APT_TESTS_DIGEST_ALGO:-SHA512}" \
1113 --default-key "$SIGNER" --command-fd 0 --edit-key "${SIGNER}" >setexpire.gpg
2>&1; then
1117 cp "${REXKEY}.sec" "$SECUNEXPIRED"
1118 cp "${REXKEY}.pub" "$PUBUNEXPIRED"
1121 if [ ! -e "${KEY}.pub" ]; then
1122 local K
="keys/$(echo "$SIGNER" | tr 'A-Z' 'a-z' | tr -d ' ,')"
1123 cat "${K}.pub" >> "${KEY}.new.pub"
1124 cat "${K}.sec" >> "${KEY}.new.sec"
1127 if [ ! -e "${KEY}.pub" ]; then
1128 mv "${KEY}.new.pub" "${KEY}.pub"
1129 mv "${KEY}.new.sec" "${KEY}.sec"
1131 local GPG
="aptkey --quiet --keyring ${KEY}.pub --secret-keyring ${KEY}.sec --readonly adv --batch --yes --digest-algo ${APT_TESTS_DIGEST_ALGO:-SHA512}"
1132 for RELEASE
in $(find "${REPODIR}/" -name Release); do
1133 # we might have set a specific date for the Release file, so copy it
1134 local DATE
="$(stat --format "%y" "${RELEASE}")"
1135 if [ "$APT_DONT_SIGN" = 'Release.gpg' ]; then
1136 rm -f "${RELEASE}.gpg"
1138 testsuccess
$GPG "$@" $SIGUSERS --armor --detach-sign --sign --output "${RELEASE}.gpg" "${RELEASE}"
1139 touch -d "$DATE" "${RELEASE}.gpg"
1141 local INRELEASE
="${RELEASE%/*}/InRelease"
1142 if [ "$APT_DONT_SIGN" = 'InRelease' ]; then
1145 testsuccess
$GPG "$@" $SIGUSERS --clearsign --output "$INRELEASE" "$RELEASE"
1146 touch -d "$DATE" "${INRELEASE}"
1149 if [ -f "$SECEXPIREBAK" ] && [ -f "$PUBEXPIREBAK" ]; then
1150 mv -f "$SECEXPIREBAK" "${REXKEY}.sec"
1151 mv -f "$PUBEXPIREBAK" "${REXKEY}.pub"
1156 redatereleasefiles
() {
1157 local DATE
="$(date -u -d "$1" -R)"
1158 for release
in $(find aptarchive/ -name 'Release'); do
1159 sed -i "s/^Date: .*$/Date: ${DATE}/" "$release"
1160 touch -d "$DATE" "$release"
1162 signreleasefiles
"${2:-Joe Sixpack}"
1166 local WEBSERVER
="${3:-http://localhost:${APTHTTPPORT}}"
1168 if [ "$1" = '--no-check' ]; then
1172 local DOWNLOG
='rootdir/tmp/download-testfile.log'
1173 local STATUS
='downloaded/webserverconfig.status'
1174 rm -f "$STATUS" "$DOWNLOG"
1175 # very very basic URI encoding
1177 if [ -n "$2" ]; then
1178 msgtest
"Set webserver config option '${1}' to" "$2"
1179 URI
="${WEBSERVER}/_config/set/$(echo "${1}" | sed -e 's/\//%2f/g')/$(echo "${2}" | sed -e 's/\//%2f/g')"
1181 msgtest
'Clear webserver config option' "${1}"
1182 URI
="${WEBSERVER}/_config/clear/$(echo "${1}" | sed -e 's/\//%2f/g')"
1184 if downloadfile
"$URI" "$STATUS" > "$DOWNLOG"; then
1187 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/webserverconfig.output"
1188 cat "$DOWNLOG" "$STATUS" >"$OUTPUT" 2>&1 || true
1189 msgfailoutput
'' "$OUTPUT"
1191 $NOCHECK || testwebserverlaststatuscode
'200'
1194 rewritesourceslist
() {
1195 local APTARCHIVE
="file://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
1196 local APTARCHIVE2
="copy://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
1197 for LIST
in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
1198 sed -i $LIST -e "s#$APTARCHIVE#${1}#" -e "s#$APTARCHIVE2#${1}#" \
1199 -e "s#http://[^@]*@\?localhost:${APTHTTPPORT}/\?#${1}#" \
1200 -e "s#https://[^@]*@\?localhost:${APTHTTPSPORT}/\?#${1}#"
1204 # wait for up to 10s for a pid file to appear to avoid possible race
1205 # when a helper is started and dosn't write the PID quick enough
1208 for i
in $(seq 10); do
1209 if test -s "$PIDFILE"; then
1214 msgdie
"waiting for $PIDFILE failed"
1218 changetowebserver
() {
1220 if [ "$1" != '--no-rewrite' ]; then
1225 if test -x "${APTWEBSERVERBINDIR}/aptwebserver"; then
1227 local LOG
="webserver.log"
1228 if ! aptwebserver
--port 0 -o aptwebserver
::fork
=1 -o aptwebserver
::portfile
='aptwebserver.port' "$@" >$LOG 2>&1 ; then
1232 waitforpidfile aptwebserver.pid
1233 local PID
="$(cat aptwebserver.pid)"
1234 if [ -z "$PID" ]; then
1235 msgdie
'Could not fork aptwebserver successfully'
1237 addtrap
"kill $PID;"
1238 waitforpidfile aptwebserver.port
1239 APTHTTPPORT
="$(cat aptwebserver.port)"
1240 if [ -z "$APTHTTPPORT" ]; then
1241 msgdie
'Could not get port for aptwebserver successfully'
1245 msgdie
'You have to build apt from source to have test/interactive-helper/aptwebserver available for tests requiring a webserver'
1247 if [ "$REWRTE" != 'yes' ]; then
1248 rewritesourceslist
"http://localhost:${APTHTTPPORT}/"
1252 changetohttpswebserver
() {
1253 if ! command -v stunnel4
>/dev
/null
2>&1; then
1254 msgdie
'You need to install stunnel4 for https testcases'
1256 if [ ! -e "${TMPWORKINGDIRECTORY}/aptarchive/aptwebserver.pid" ]; then
1257 changetowebserver
--no-rewrite "$@"
1259 echo "pid = ${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid
1260 cert = ${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem
1265 connect = $APTHTTPPORT
1266 " > "${TMPWORKINGDIRECTORY}/stunnel.conf"
1267 stunnel4
"${TMPWORKINGDIRECTORY}/stunnel.conf"
1268 waitforpidfile
"${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid"
1269 local PID
="$(cat "${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid")"
1270 if [ -z "$PID" ]; then
1271 msgdie
'Could not fork stunnel4 successfully'
1273 addtrap
'prefix' "kill ${PID};"
1274 APTHTTPSPORT
="$(lsof -i -n | awk "/^stunnel4 / && \$2 == \"${PID}\" {print \$9; exit; }" | cut -d':' -f 2)"
1275 webserverconfig
'aptwebserver::port::https' "$APTHTTPSPORT" "https://localhost:${APTHTTPSPORT}"
1276 rewritesourceslist
"https://localhost:${APTHTTPSPORT}/"
1280 mkdir -p rootdir
/media
/cdrom
/.disk
1281 local CD
="$(readlink -f rootdir/media/cdrom)"
1282 cat > rootdir
/etc
/apt
/apt.conf.d
/00cdrom
<<EOF
1283 acquire::cdrom::mount "${CD}";
1284 acquire::cdrom::"${CD}/"::mount "mv ${CD}-unmounted ${CD}";
1285 acquire::cdrom::"${CD}/"::umount "mv ${CD} ${CD}-unmounted";
1286 acquire::cdrom::autodetect 0;
1288 echo -n "$1" > "${CD}/.disk/info"
1289 if [ ! -d aptarchive
/dists
]; then
1290 msgdie
'Flat file archive cdroms can not be created currently'
1293 mv aptarchive
/dists
"$CD"
1294 ln -s "$(readlink -f ./incoming)" "$CD/pool"
1295 find rootdir
/etc
/apt
/sources.list.d
/ -name 'apt-test-*.list' -delete
1296 # start with an unmounted disk
1297 mv "${CD}" "${CD}-unmounted"
1298 # we don't want the disk to be modifiable
1299 addtrap
'prefix' "chmod -f -R +w '$(escape_shell "$PWD/rootdir/media/cdrom/dists/")' '$(escape_shell "$PWD/rootdir/media/cdrom-unmounted/dists/")' || true;"
1300 chmod -R 555 rootdir
/media
/cdrom
-unmounted/dists
1304 local PROTO
="${1%%:*}"
1305 if ! apthelper
-o Debug
::Acquire
::${PROTO}=1 -o Debug
::pkgAcquire
::Worker
=1 \
1306 download
-file "$1" "$2" "$3" 2>&1 ; then
1309 # only if the file exists the download was successful
1310 if [ -r "$2" ]; then
1318 local DIFFTEXT
="$(command diff -u "$@" 2>&1 | sed -e '/^---/ d' -e '/^+++/ d' -e '/^@@/ d')"
1319 if [ -n "$DIFFTEXT" ]; then
1321 echo >&2 "$DIFFTEXT"
1329 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testoutputequal.output"
1330 local COMPAREFILE
="$1"
1332 if "$@" 2>&1 | checkdiff
"$COMPAREFILE" - >"$OUTPUT" 2>&1; then
1335 echo "=== content of file we compared with (${COMPAREFILE}) ===" >>"${OUTPUT}"
1336 cat "$COMPAREFILE" >>"${OUTPUT}"
1337 msgfailoutput
'' "$OUTPUT" "$@"
1342 msggroup
'testfileequal'
1343 local MSG
='Test for correctness of file'
1344 if [ "$1" = '--nomsg' ]; then
1350 if [ -n "$MSG" ]; then
1351 msgtest
"$MSG" "$FILE"
1353 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfileequal.output"
1354 if [ -z "$*" ]; then
1355 testoutputequal
"$FILE" echo -n ''
1357 testoutputequal
"$FILE" echo "$*"
1363 msggroup
'testempty'
1364 if [ "$1" = '--nomsg' ]; then
1367 msgtest
"Test for no output of" "$*"
1369 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testempty.comparefile"
1370 if "$@" >"$COMPAREFILE" 2>&1 && test ! -s "$COMPAREFILE"; then
1373 msgfailoutput
'' "$COMPAREFILE" "$@"
1375 aptautotest
'testempty' "$@"
1379 msggroup
'testnotempty'
1380 msgtest
"Test for some output of" "$*"
1381 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnotempty.comparefile"
1382 if ("$@" >"$COMPAREFILE" 2>&1 || true
) && test -s "$COMPAREFILE"; then
1385 msgfailoutput
'' "$COMPAREFILE" "$@"
1387 aptautotest
'testnotempty' "$@"
1392 msggroup
'testequal'
1393 local MSG
='Test of equality of'
1394 if [ "$1" = '--nomsg' ]; then
1399 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.comparefile"
1400 echo "$1" > "$COMPAREFILE"
1403 if [ -n "$MSG" ]; then
1406 testoutputequal
"$COMPAREFILE" "$@"
1407 aptautotest
'testequal' "$@"
1412 msggroup
'testequalor2'
1413 local COMPAREFILE1
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile1"
1414 local COMPAREFILE2
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile2"
1415 local COMPAREAGAINST
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.compareagainst"
1416 echo "$1" > "$COMPAREFILE1"
1417 echo "$2" > "$COMPAREFILE2"
1419 msgtest
"Test for equality OR of" "$*"
1420 "$@" >"$COMPAREAGAINST" 2>&1 || true
1421 if checkdiff
"$COMPAREFILE1" "$COMPAREAGAINST" >/dev
/null
2>&1 || \
1422 checkdiff
"$COMPAREFILE2" "$COMPAREAGAINST" >/dev
/null
2>&1
1426 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.output"
1427 echo -n "\n${CINFO}Diff against OR 1${CNORMAL}" >"$OUTPUT" 2>&1
1428 checkdiff
"$COMPAREFILE1" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1429 echo -n "${CINFO}Diff against OR 2${CNORMAL}" >"$OUTPUT" 2>&1
1430 checkdiff
"$COMPAREFILE2" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1431 msgfailoutput
'' "$OUTPUT"
1433 aptautotest
'testequalor2' "$@"
1438 msggroup
'testshowvirtual'
1439 local VIRTUAL
="N: Can't select versions from package '$1' as it is purely virtual"
1442 while [ -n "$1" ]; do
1444 N: Can't select versions from package '$1' as it is purely virtual"
1445 PACKAGE
="${PACKAGE} $1"
1448 msgtest
"Test for virtual packages" "apt-cache show $PACKAGE"
1450 N: No packages found"
1451 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.comparefile"
1452 local ARCH
="$(getarchitecture 'native')"
1453 echo "$VIRTUAL" | sed -e "s/:$ARCH//" -e 's/:all//' >"$COMPAREFILE"
1454 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.output"
1455 testoutputequal
"$COMPAREFILE" aptcache show
"$PACKAGE"
1460 msggroup
'testnopackage'
1461 msgtest
"Test for non-existent packages" "apt-cache show $*"
1462 local SHOWPKG
="$(aptcache show "$@" 2>&1 | grep '^Package: ')"
1463 if [ -n "$SHOWPKG" ]; then
1464 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1465 echo "$SHOWPKG" >"$OUTPUT"
1466 msgfailoutput
'' "$OUTPUT"
1472 testnosrcpackage
() {
1473 msggroup
'testnosrcpackage'
1474 msgtest
"Test for non-existent source packages" "apt-cache showsrc $*"
1475 local SHOWPKG
="$(aptcache showsrc "$@" 2>&1 | grep '^Package: ')"
1476 if [ -n "$SHOWPKG" ]; then
1477 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnosrcpackage.output"
1478 echo "$SHOWPKG" >"$OUTPUT"
1479 msgfailoutput
'' "$OUTPUT"
1487 msggroup
'testdpkgstatus'
1491 msgtest
"Test that $NR package(s) are in state $STATE with" "dpkg -l $*"
1492 local PKGS
="$(dpkg -l "$@" 2>/dev/null | grep "^${STATE}" | wc -l)"
1493 if [ "$PKGS" != $NR ]; then
1494 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1495 echo "$PKGS" >"$OUTPUT"
1496 dpkg
-l "$@" | grep '^[a-z]' >"$OUTPUT" >&2 || true
1497 msgfailoutput
'' "$OUTPUT"
1504 testdpkginstalled
() {
1505 msggroup
'testdpkginstalled'
1506 testdpkgstatus
'ii' "$#" "$@"
1510 testdpkgnotinstalled
() {
1511 msggroup
'testdpkgnotinstalled'
1512 testdpkgstatus
'ii' '0' "$@"
1517 msggroup
'testmarkedauto'
1518 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedauto.comparefile"
1519 if [ -n "$1" ]; then
1520 msgtest
'Test for correctly marked as auto-installed' "$*"
1521 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
1523 msgtest
'Test for correctly marked as auto-installed' 'no package'
1524 echo -n > "$COMPAREFILE"
1526 testoutputequal
"$COMPAREFILE" aptmark showauto
1529 testmarkedmanual
() {
1530 msggroup
'testmarkedmanual'
1531 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedmanual.comparefile"
1532 if [ -n "$1" ]; then
1533 msgtest
'Test for correctly marked as manually installed' "$*"
1534 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
1536 msgtest
'Test for correctly marked as manually installed' 'no package'
1537 echo -n > "$COMPAREFILE"
1539 testoutputequal
"$COMPAREFILE" aptmark showmanual
1544 if [ "${1##*.}" = 'deb' ]; then
1545 stat
>&2 "$1" || true
1546 file >&2 "$1" || true
1548 cat >&2 "$1" || true
1552 msgreportheader
'msgfailoutput'
1557 if [ "$1" = 'grep' -o "$1" = 'tail' -o "$1" = 'head' ]; then
1559 while [ -n "$2" ]; do shift; done
1560 echo "#### Complete file: $1 ####"
1562 echo "#### $CMD output ####"
1563 elif [ "$1" = 'test' ]; then
1565 # doesn't support ! or non-file flags
1566 msgfailoutputstatfile
() {
1567 local FILEFLAGS
='^-[bcdefgGhkLOprsStuwx]$'
1568 if expr match
"$1" "$FILEFLAGS" >/dev
/null
; then
1569 echo "#### stat(2) of file: $2 ####"
1571 if test -d "$2"; then
1572 echo "#### The directory contains: $2 ####"
1574 elif test -e "$2"; then
1575 echo "#### Complete file: $2 ####"
1580 msgfailoutputstatfile
"$2" "$3"
1581 while [ -n "$5" ] && [ "$4" = '-o' -o "$4" = '-a' ]; do
1583 msgfailoutputstatfile
"$2" "$3"
1585 echo '#### test output ####'
1586 elif [ "$1" = 'cmp' ]; then
1588 while [ -n "$2" ]; do
1589 echo "#### Complete file: $2 ####"
1593 echo '#### cmp output ####'
1599 testsuccesswithglobalerror
() {
1604 if [ "$1" = '--nomsg' ]; then
1607 msgtest
'Test for successful execution of' "$*"
1609 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/${TYPE}.output"
1610 if "$@" >"${OUTPUT}" 2>&1; then
1611 if expr match
"$1" '^apt.*' >/dev
/null
; then
1612 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1613 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1614 elif grep -E "^[${ERRORS}]: " "$OUTPUT" > "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" 2>&1; then
1615 if [ "$IGNORE_PTY_NOT_MOUNTED" = '1' ]; then
1616 if echo 'E: Can not write log (Is /dev/pts mounted?) - posix_openpt (2: No such file or directory)' \
1617 | cmp - "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" >/dev
/null
2>&1; then
1620 msgfailoutput
'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1623 msgfailoutput
'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1625 elif [ "$TYPE" = 'testsuccesswithnotice' ]; then
1626 if grep -q -E "^N: " "$OUTPUT"; then
1629 msgfailoutput
'successful run, but output had no notices' "$OUTPUT" "$@"
1639 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1641 aptautotest
"$TYPE" "$@"
1644 testsuccesswithnotice
() {
1645 testsuccesswithglobalerror
'testsuccesswithnotice' 'WE' "$@"
1648 testsuccesswithglobalerror
'testsuccess' 'NWE' "$@"
1651 msggroup
'testwarning'
1652 if [ "$1" = '--nomsg' ]; then
1655 msgtest
'Test for successful execution with warnings of' "$*"
1657 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output"
1658 if "$@" >"${OUTPUT}" 2>&1; then
1659 if expr match
"$1" '^apt.*' >/dev
/null
; then
1660 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1661 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1662 elif grep -q -E '^E: ' "$OUTPUT"; then
1663 msgfailoutput
'successful run, but output contains errors' "$OUTPUT" "$@"
1664 elif ! grep -q -E '^W: ' "$OUTPUT"; then
1665 msgfailoutput
'successful run, but output contains no warnings' "$OUTPUT" "$@"
1674 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1676 aptautotest
'testwarning' "$@"
1680 msggroup
'testfailure'
1681 if [ "$1" = '--nomsg' ]; then
1684 msgtest
'Test for failure in execution of' "$*"
1686 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output"
1687 if "$@" >"${OUTPUT}" 2>&1; then
1689 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1692 if expr match
"$1" '^apt.*' >/dev
/null
; then
1693 if [ "$1" = 'aptkey' ]; then
1694 if grep -q " Can't check signature:
1696 signature could not be verified" "$OUTPUT"; then
1699 msgfailoutput
"run failed with exitcode ${EXITCODE}, but no signature error" "$OUTPUT" "$@"
1702 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1703 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1704 elif grep -q -E '==ERROR' "$OUTPUT"; then
1705 msgfailoutput
'compiler sanitizers reported errors' "$OUTPUT" "$@"
1706 elif ! grep -q -E '^E: ' "$OUTPUT"; then
1707 msgfailoutput
"run failed with exitcode ${EXITCODE}, but with no errors" "$OUTPUT" "$@"
1716 aptautotest
'testfailure' "$@"
1720 testreturnstateequal
() {
1722 if [ "$STATE" = 'testsuccesswithglobalerror' ]; then
1726 msggroup
"${STATE}equal"
1727 if [ "$1" != '--nomsg' ]; then
1730 testsuccesswithglobalerror
"$STATE" "$TYPE" "$@"
1731 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1735 testsuccesswithglobalerror
"$STATE" "$TYPE" "$@"
1736 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1739 msggroup
"${STATE}equal"
1740 if [ "$2" != '--nomsg' ]; then
1744 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1748 "$STATE" --nomsg "$@"
1749 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1754 testsuccessequal
() {
1755 # we compare output, so we know perfectly well about N:
1756 testreturnstateequal
'testsuccesswithglobalerror' 'testsuccess' 'WE' "$@"
1758 testwarningequal
() {
1759 testreturnstateequal
'testwarning' "$@"
1761 testfailureequal
() {
1762 testreturnstateequal
'testfailure' "$@"
1766 msggroup
'testfailuremsg'
1770 msgtest
'Check that the output of the previous failed command has expected' 'failures and warnings'
1771 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailuremsg.comparefile"
1772 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output" > "$COMPAREFILE" 2>&1 || true
1773 testoutputequal
"$COMPAREFILE" echo "$CMP"
1777 msggroup
'testwarningmsg'
1781 msgtest
'Check that the output of the previous warned command has expected' 'warnings'
1782 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarningmsg.comparefile"
1783 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output" > "$COMPAREFILE" 2>&1 || true
1784 testoutputequal
"$COMPAREFILE" echo "$CMP"
1789 msggroup
'testfilestats'
1790 msgtest
"Test that file $1 has $2 $3" "$4"
1791 if [ "$4" "$3" "$(stat --format "$2" "$1")" ]; then
1794 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfilestats.output"
1797 echo -n "stat(1) reports for $2: "
1798 stat
--format "$2" "$1" || true
1800 msgfailoutput
'' "$OUTPUT"
1804 testaccessrights
() {
1805 msggroup
'testaccessrights'
1806 testfilestats
"$1" '%a' '=' "$2"
1810 testwebserverlaststatuscode
() {
1811 msggroup
'testwebserverlaststatuscode'
1812 local DOWNLOG
='rootdir/tmp/webserverstatus-testfile.log'
1813 local STATUS
='downloaded/webserverstatus-statusfile.log'
1814 rm -f "$DOWNLOG" "$STATUS"
1815 msgtest
'Test last status code from the webserver was' "$1"
1816 if downloadfile
"http://localhost:${APTHTTPPORT}/_config/find/aptwebserver::last-status-code" "$STATUS" > "$DOWNLOG" && [ "$(cat "$STATUS")" = "$1" ]; then
1819 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwebserverlaststatuscode.output"
1821 if [ -n "$2" ]; then
1823 echo >&2 '#### Additionally provided output files contain:'
1826 echo >&2 '#### Download log of the status code:'
1829 msgfailoutput
"Status was $(cat "$STATUS")" "$OUTPUT"
1834 createlistofkeys
() {
1837 while [ -n "$1" ]; do
1838 # gpg 2.1.something starts printing [SC] at some point
1839 if grep -q ' rsa2048/' "$OUTPUT" && grep -qF '[SC]' "$OUTPUT"; then
1841 *Joe
*|*Sixpack
*) echo 'pub rsa2048/DBAC8DAE 2010-08-18 [SC]';;
1842 *Rex
*|*Expired
*) echo 'pub rsa2048/27CE74F9 2013-07-12 [SC] [expired: 2013-07-13]';;
1843 *Marvin
*|*Paranoid
*) echo 'pub rsa2048/528144E2 2011-01-16 [SC]';;
1844 oldarchive
) echo 'pub rsa1024/F68C85A3 2013-12-19 [SC]';;
1845 newarchive
) echo 'pub rsa2048/DBAC8DAE 2010-08-18 [SC]';;
1846 *) echo 'UNKNOWN KEY';;
1848 # gpg 2.1 has a slightly different output format
1849 elif grep -q ' rsa2048/' "$OUTPUT"; then
1851 *Joe
*|*Sixpack
*) echo 'pub rsa2048/DBAC8DAE 2010-08-18';;
1852 *Rex
*|*Expired
*) echo 'pub rsa2048/27CE74F9 2013-07-12 [expired: 2013-07-13]';;
1853 *Marvin
*|*Paranoid
*) echo 'pub rsa2048/528144E2 2011-01-16';;
1854 oldarchive
) echo 'pub rsa1024/F68C85A3 2013-12-19';;
1855 newarchive
) echo 'pub rsa2048/DBAC8DAE 2010-08-18';;
1856 *) echo 'UNKNOWN KEY';;
1860 *Joe
*|*Sixpack
*) echo 'pub 2048R/DBAC8DAE 2010-08-18';;
1861 *Rex
*|*Expired
*) echo 'pub 2048R/27CE74F9 2013-07-12 [expired: 2013-07-13]';;
1862 *Marvin
*|*Paranoid
*) echo 'pub 2048R/528144E2 2011-01-16';;
1863 oldarchive
) echo 'pub 1024R/F68C85A3 2013-12-19';;
1864 newarchive
) echo 'pub 2048R/DBAC8DAE 2010-08-18';;
1865 *) echo 'UNKNOWN KEY';;
1872 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/aptkeylist.output"
1873 if ! aptkey list
| grep '^pub' > "$OUTPUT"; then
1876 testfileequal
"$OUTPUT" "$(createlistofkeys "$OUTPUT" "$@")"
1880 echo "STOPPED execution. Press enter to continue"
1885 listcurrentlistsdirectory
() {
1887 find rootdir
/var
/lib
/apt
/lists
-maxdepth 1 -type d
| while read line
; do
1888 stat
--format '%U:%G:%a:%n' "$line"
1890 find rootdir
/var
/lib
/apt
/lists
-maxdepth 1 \
! -type d
| while read line
; do
1891 stat
--format '%U:%G:%a:%s:%y:%n' "$line"
1895 forallsupportedcompressors
() {
1896 rm -f "${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/00force-compressor"
1897 for COMP
in $(aptconfig dump 'APT::Compressor' --format '%f%n' | cut -d':' -f 5 | uniq); do
1898 if [ -z "$COMP" -o "$COMP" = '.' ]; then continue; fi
1903 ### convenience hacks ###
1905 # creating some directories by hand is a tedious task, so make it look simple
1907 if [ "$PARAMS" != "${PARAMS#*rootdir/var/lib/apt/lists}" ]; then
1908 # only the last directory created by mkdir is effected by the -m !
1909 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt"
1910 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"
1911 command mkdir -m 700 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1912 touch "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/lock"
1913 if [ "$(id -u)" = '0' ]; then
1914 chown _apt
:root
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1921 ### The following tests are run by most test methods automatically to check
1922 ### general things about commands executed without writing the test every time.
1928 local AUTOTEST
="aptautotest_$(echo "${CMD##*/}_${FIRSTOPT}" | tr -d -c 'A-za-z0-9')"
1929 if command -v $AUTOTEST >/dev
/null
; then
1931 # save and restore the *.output files from other tests
1932 # as we might otherwise override them in these automatic tests
1933 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1934 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1935 mkdir "${TMPWORKINGDIRECTORY}/rootdir/tmp"
1936 $AUTOTEST "$TESTCALL" "$@"
1937 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1938 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1939 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp-before" "${TMPWORKINGDIRECTORY}/rootdir/tmp"
1943 aptautotest_aptget_update
() {
1945 while [ -n "$2" ]; do
1946 if [ "$2" = '--print-uris' ]; then return; fi # simulation mode
1949 if ! test -d "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"; then return; fi
1950 testfilestats
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
1951 testfilestats
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
1952 # all copied files are properly chmodded
1953 local backupIFS
="$IFS"
1954 IFS
="$(printf "\n\b")"
1955 for file in $(find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" -type f ! -name 'lock'); do
1956 testfilestats
"$file" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:644"
1959 if [ "$TESTCALL" = 'testsuccess' ]; then
1960 # failure cases can retain partial files and such
1961 testempty
find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial" -mindepth 1 ! \
( -name 'lock' -o -name '*.FAILED' \
)
1964 aptautotest_apt_update
() { aptautotest_aptget_update
"$@"; }
1965 aptautotest_aptcdrom_add
() { aptautotest_aptget_update
"$@"; }
1967 testaptautotestnodpkgwarning
() {
1969 while [ -n "$2" ]; do
1970 if expr match
"$2" '^-[a-z]*s' >/dev
/null
2>&1; then return; fi # simulation mode
1971 if expr match
"$2" '^-dy\?' >/dev
/null
2>&1; then return; fi # download-only mode
1974 testfailure
grep '^dpkg: warning:.*ignor.*' "${TMPWORKINGDIRECTORY}/rootdir/tmp-before/${TESTCALL}.output"
1977 aptautotest_aptget_install
() { testaptautotestnodpkgwarning
"$@"; }
1978 aptautotest_aptget_remove
() { testaptautotestnodpkgwarning
"$@"; }
1979 aptautotest_aptget_purge
() { testaptautotestnodpkgwarning
"$@"; }
1980 aptautotest_apt_install
() { testaptautotestnodpkgwarning
"$@"; }
1981 aptautotest_apt_remove
() { testaptautotestnodpkgwarning
"$@"; }
1982 aptautotest_apt_purge
() { testaptautotestnodpkgwarning
"$@"; }