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} "$CMD" "$@"
178 aptconfig
() { runapt apt
-config "$@"; }
179 aptcache
() { runapt apt
-cache "$@"; }
180 aptcdrom
() { runapt apt
-cdrom "$@"; }
181 aptget
() { runapt apt
-get "$@"; }
182 aptftparchive
() { runapt 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}" "$@"; }
195 "${TMPWORKINGDIRECTORY}/rootdir/usr/bin/dpkg" "$@"
197 dpkgcheckbuilddeps
() {
198 command dpkg
-checkbuilddeps --admindir="${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg" "$@"
203 aptget
) CMD
="apt-get";;
204 aptcache
) CMD
="apt-cache";;
205 aptcdrom
) CMD
="apt-cdrom";;
206 aptconfig
) CMD
="apt-config";;
207 aptmark
) CMD
="apt-mark";;
208 apthelper
) CMD
="apt-helper";;
209 aptftparchive
) CMD
="apt-ftparchive";;
210 dpkg
) shift; runapt
"${TMPWORKINGDIRECTORY}/rootdir/usr/bin/gdb-dpkg" "$@"; return;;
214 if [ "${CMD##*/}" = "$CMD" ]; then
215 CMD
="${BUILDDIRECTORY}/${CMD}"
217 runapt
command gdb
--quiet -ex run
"$CMD" --args "$CMD" "$@"
221 # error if we about to overflow, but ...
222 # "255 failures ought to be enough for everybody"
223 if [ $EXIT_CODE -gt 255 ]; then
224 msgdie
"Total failure count $EXIT_CODE too big"
226 exit $((EXIT_CODE <= 255 ? EXIT_CODE : 255));
229 shellsetedetector
() {
231 if [ "$exit_status" != '0' ]; then
232 printf >&2 "${CERROR}E: Looks like the testcases ended prematurely with exitcode: ${exit_status}${CNORMAL}\n"
233 if [ "$EXIT_CODE" = '0' ]; then
234 EXIT_CODE
="$exit_status"
240 if [ "$1" = 'prefix' ]; then
241 CURRENTTRAP
="$2 $CURRENTTRAP"
243 CURRENTTRAP
="$CURRENTTRAP $1"
245 trap "shellsetedetector; $CURRENTTRAP exitwithstatus;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
249 echo "$@" | sed -e "s#'#'\"'\"'#g"
253 # privilege dropping and testing doesn't work if /tmp isn't world-writeable (as e.g. with libpam-tmpdir)
254 if [ -n "$TMPDIR" ] && [ "$(id -u)" = '0' ] && [ "$(stat --format '%a' "$TMPDIR")" != '1777' ]; then
257 TMPWORKINGDIRECTORY
="$(mktemp -d)"
258 addtrap
"cd /; rm -rf '$(escape_shell "$TMPWORKINGDIRECTORY")';"
259 if [ -n "$TMPDIR_ADD" ]; then
260 TMPWORKINGDIRECTORY
="${TMPWORKINGDIRECTORY}/${TMPDIR_ADD}"
261 mkdir -p "$TMPWORKINGDIRECTORY"
263 export TMPDIR
="$TMPWORKINGDIRECTORY"
265 msgninfo
"Preparing environment for ${0##*/} in ${TMPWORKINGDIRECTORY}…"
267 mkdir -m 700 "${TMPWORKINGDIRECTORY}/downloaded"
268 if [ "$(id -u)" = '0' ]; then
269 # relax permissions so that running as root with user switching works
271 chmod 711 "$TMPWORKINGDIRECTORY"
272 chown _apt
:root
"${TMPWORKINGDIRECTORY}/downloaded"
275 TESTDIRECTORY
="$(readlink -f "$(dirname $0)")"
276 # allow overriding the default BUILDDIR location
277 SOURCEDIRECTORY="${APT_INTEGRATION_TESTS_SOURCE_DIR:-"${TESTDIRECTORY}/../../"}"
278 BUILDDIRECTORY="${APT_INTEGRATION_TESTS_BUILD_DIR:-"${TESTDIRECTORY}/../../build/bin"}"
279 LIBRARYPATH="${APT_INTEGRATION_TESTS_LIBRARY_PATH:-"${BUILDDIRECTORY}"}"
280 METHODSDIR="${APT_INTEGRATION_TESTS_METHODS_DIR:-"${BUILDDIRECTORY}/methods"}"
281 APTHELPERBINDIR="${APT_INTEGRATION_TESTS_LIBEXEC_DIR:-"${BUILDDIRECTORY}"}"
282 APTWEBSERVERBINDIR="${APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR:-"${BUILDDIRECTORY}"}"
283 APTINTERNALSOLVER="${APT_INTEGRATION_TESTS_INTERNAL_SOLVER:-"${BUILDDIRECTORY}/apt-internal-solver"}"
284 APTDUMPSOLVER="${APT_INTEGRATION_TESTS_DUMP_SOLVER:-"${BUILDDIRECTORY}/apt-dump-solver"}"
285 test -x "${BUILDDIRECTORY}/apt
-get" || msgdie "You need to build tree first
"
288 cd "$TMPWORKINGDIRECTORY"
289 mkdir rootdir aptarchive keys
291 mkdir -p etc/apt/apt.conf.d etc/apt/sources.list.d etc/apt/trusted.gpg.d etc/apt/preferences.d
292 mkdir -p usr/bin var/cache var/lib var/log tmp
293 mkdir -p var/lib/dpkg/info var/lib/dpkg/updates var/lib/dpkg/triggers
294 touch var/lib/dpkg/available
296 ln -s "${METHODSDIR}" usr/lib/apt/methods
297 if [ "$BUILDDIRECTORY" = "$LIBRARYPATH" ]; then
298 mkdir -p usr/lib/apt/solvers
299 ln -s "${BUILDDIRECTORY}/apt
-dump-solver" usr/lib/apt/solvers/dump
300 ln -s "${BUILDDIRECTORY}/apt
-internal-solver" usr/lib/apt/solvers/apt
301 echo "Dir
::Bin
::Solvers
\"${TMPWORKINGDIRECTORY}/rootdir
/usr
/lib
/apt
/solvers
\";" > etc/apt/apt.conf.d/externalsolver.conf
303 # use the autoremove from the BUILDDIRECTORY if its there, otherwise
305 if [ -e "${BUILDDIRECTORY}/..
/..
/debian
/apt.conf.autoremove
" ]; then
306 ln -s "${BUILDDIRECTORY}/..
/..
/debian
/apt.conf.autoremove
" etc/apt/apt.conf.d/01autoremove
308 ln -s /etc/apt/apt.conf.d/01autoremove etc/apt/apt.conf.d/01autoremove
311 local BASENAME="${0##*/}"
312 local PACKAGESFILE="Packages
-${BASENAME#*-}"
313 if [ -f "${TESTDIRECTORY}/${PACKAGESFILE}" ]; then
314 cp "${TESTDIRECTORY}/${PACKAGESFILE}" aptarchive/Packages
316 local SOURCESSFILE="Sources
-${BASENAME#*-}"
317 if [ -f "${TESTDIRECTORY}/${SOURCESSFILE}" ]; then
318 cp "${TESTDIRECTORY}/${SOURCESSFILE}" aptarchive/Sources
320 find "$TESTDIRECTORY" \( -name '*.pub' -o -name '*.sec' \) -exec cp '{}' keys/ \;
322 ln -s "${TMPWORKINGDIRECTORY}/keys
/joesixpack.pub
" rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
324 echo "Dir
\"${TMPWORKINGDIRECTORY}/rootdir
\";" > aptconfig.conf
325 echo "Dir
::state
::status
\"${TMPWORKINGDIRECTORY}/rootdir
/var
/lib
/dpkg
/status
\";" >> aptconfig.conf
326 echo "APT
::Get
::Show
-User-Simulation-Note \"false
\";" >> aptconfig.conf
327 echo "Dir
::Bin
::Methods
\"${TMPWORKINGDIRECTORY}/rootdir
/usr
/lib
/apt
/methods
\";" >> aptconfig.conf
328 # either store apt-key were we can access it, even if we run it as a different user
329 #cp "${BUILDDIRECTORY}/apt
-key" "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/"
330 #chmod o+rx "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/apt
-key"
331 #echo "Dir
::Bin
::apt
-key \"${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/apt
-key\";" >> aptconfig.conf
332 # destroys coverage reporting though, so we disable changing user for the calling gpgv
333 echo "Dir
::Bin
::apt
-key \"${BUILDDIRECTORY}/apt
-key\";" >> aptconfig.conf
334 if [ "$(id -u)" = '0' ]; then
335 echo 'Binary::gpgv::Debug::NoDropPrivs "true
";' >>aptconfig.conf
338 cat > "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
" <<EOF
341 if [ -r '${TMPWORKINGDIRECTORY}/noopchroot.so' ]; then
342 if [ -n "\
$LD_LIBRARY_PATH" ]; then
343 export LD_LIBRARY_PATH='${TMPWORKINGDIRECTORY}:'"\
${LD_LIBRARY_PATH}"
345 export LD_LIBRARY_PATH='${TMPWORKINGDIRECTORY}'
347 if [ -n "\
$LD_PRELOAD" ]; then
348 export LD_PRELOAD="noopchroot.so \
${LD_PRELOAD}"
350 export LD_PRELOAD="noopchroot.so
"
354 cp "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
" "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/gdb
-dpkg"
355 cat >> "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
" <<EOF
356 exec fakeroot '${DPKG:-dpkg}' --root='${TMPWORKINGDIRECTORY}/rootdir' \\
357 --log='${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log' \\
358 --force-not-root --force-bad-path "\$@
"
360 cat >> "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/gdb
-dpkg" <<EOF
361 exec fakeroot gdb --quiet -ex run '${DPKG:-dpkg}' --args '${DPKG:-dpkg}' --root='${TMPWORKINGDIRECTORY}/rootdir' \\
362 --log='${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log' \\
363 --force-not-root --force-bad-path "\$@
"
365 chmod +x "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
" "${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/gdb
-dpkg"
366 echo "Dir
::Bin
::dpkg
\"${TMPWORKINGDIRECTORY}/rootdir
/usr
/bin
/dpkg
\";" > rootdir/etc/apt/apt.conf.d/99dpkg
369 if ! command dpkg --assert-multi-arch >/dev/null 2>&1; then
370 echo "DPKG
::options
:: \"--force-architecture\";" # Added to test multiarch before dpkg is ready for it…
373 echo 'quiet::NoUpdate "true
";'
374 echo 'quiet::NoStatistic "true
";'
375 # too distracting for users, but helpful to detect changes
376 echo 'Acquire::Progress::Ignore::ShowErrorText "true
";'
377 echo 'Acquire::Progress::Diffpercent "true
";'
378 # in testcases, it can appear as if localhost has a rotation setup,
379 # hide this as we can't really deal with it properly
380 echo 'Acquire::Failure::ShowIP "false
";'
381 # fakeroot can't fake everything, so disabled in production but good for tests
382 echo 'APT::Sandbox::Verify "true
";'
385 cp "${TESTDIRECTORY}/apt.pem
" "${TMPWORKINGDIRECTORY}/rootdir
/etc
/webserver.pem
"
386 if [ "$(id -u)" = '0' ]; then
387 chown _apt:root "${TMPWORKINGDIRECTORY}/rootdir
/etc
/webserver.pem
"
389 echo "Acquire
::https
::CaInfo
\"${TMPWORKINGDIRECTORY}/rootdir
/etc
/webserver.pem
\";" > rootdir/etc/apt/apt.conf.d/99https
390 echo "Apt
::Cmd
::Disable
-Script-Warning \"1\";" > rootdir/etc/apt/apt.conf.d/apt-binary
391 echo 'Acquire::Connect::AddrConfig "false
";' > rootdir/etc/apt/apt.conf.d/connect-addrconfig
392 configcompression '.' 'gz' #'bz2' 'lzma' 'xz'
393 confighashes 'SHA1' # these are tests, not security best-practices
395 # create some files in /tmp and look at user/group to get what this means
396 TEST_DEFAULT_USER="$(id -un)"
397 if [ "$(uname)" = 'GNU/kFreeBSD' ]; then
398 TEST_DEFAULT_GROUP='root'
400 TEST_DEFAULT_GROUP="$(id -gn)"
403 # cleanup the environment a bit
404 # prefer our apt binaries over the system apt binaries
405 export PATH="${BUILDDIRECTORY}:${PATH}:/usr
/local
/sbin
:/usr
/sbin
:/sbin
"
406 export LC_ALL=C.UTF-8
407 unset LANGUAGE APT_CONFIG
408 unset GREP_OPTIONS DEB_BUILD_PROFILES
409 unset http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy
414 if [ "$1" = "native
" -o -z "$1" ]; then
415 eval `aptconfig shell ARCH APT::Architecture`
416 if [ -n "$ARCH" ]; then
419 dpkg --print-architecture
427 aptconfig dump --no-empty --format '%v%n' APT::Architecture APT::Architectures | sort -u | tr '\n' ' '
430 getarchitecturesfromcommalist() {
431 echo "$1" | sed -e 's#,#\n#g' | sed -e "s
/^native\$
/$(getarchitecture 'native')/"
434 configarchitecture() {
436 echo "APT
::Architecture
\"$(getarchitecture $1)\";"
437 while [ -n "$1" ]; do
438 echo "APT
::Architectures
:: \"$(getarchitecture $1)\";"
441 } >rootdir/etc/apt/apt.conf.d/01multiarch.conf
446 if [ ! -e rootdir/var/lib/dpkg/status ]; then
447 local BASENAME="${0##*/}"
448 local STATUSFILE="status
-${BASENAME#*-}"
449 if [ -f "${TESTDIRECTORY}/${STATUSFILE}" ]; then
450 cp "${TESTDIRECTORY}/${STATUSFILE}" rootdir/var/lib/dpkg/status
452 echo -n > rootdir/var/lib/dpkg/status
455 rm -f rootdir/etc/apt/apt.conf.d/00foreigndpkg
456 if command dpkg --assert-multi-arch >/dev/null 2>&1 ; then
457 local ARCHS="$(getarchitectures)"
458 if echo "$ARCHS" | grep -E -q '[^ ]+ [^ ]+'; then
459 DPKGARCH="$(dpkg --print-architecture)"
460 for ARCH in ${ARCHS}; do
461 if [ "${ARCH}" != "${DPKGARCH}" ]; then
462 if ! dpkg --add-architecture ${ARCH} >/dev/null 2>&1; then
463 # old-style used e.g. in Ubuntu-P – and as it seems travis
464 echo "DPKG
::options
:: \"--foreign-architecture\";" >> rootdir/etc/apt/apt.conf.d/00foreigndpkg
465 echo "DPKG
::options
:: \"${ARCH}\";" >> rootdir/etc/apt/apt.conf.d/00foreigndpkg
469 if [ "0" = "$(dpkg -l dpkg 2> /dev/null | grep '^i' | wc -l)" ]; then
470 # dpkg doesn't really check the version as long as it is fully installed,
471 # but just to be sure we choose one above the required version
472 insertinstalledpackage 'dpkg' "all
" '1.16.2+fake'
478 configdpkgnoopchroot() {
479 # create a library to noop chroot() and rewrite maintainer script executions
480 # via execvp() as used by dpkg as we don't want our rootdir to be a fullblown
481 # chroot directory dpkg could chroot into to execute the maintainer scripts
482 msgtest 'Building library to preload to make maintainerscript work in' 'dpkg'
483 cat > noopchroot.c << EOF
490 static char * chrootdir = NULL;
492 int chroot(const char *path) {
493 printf("WARNING
: CHROOTing to
%s was ignored
!\n", path);
495 chrootdir = strdup(path);
498 int execvp(const char *file, char *const argv[]) {
499 static int (*func_execvp) (const char *, char * const []) = NULL;
500 if (func_execvp == NULL)
501 func_execvp = (int (*) (const char *, char * const [])) dlsym(RTLD_NEXT, "execvp
");
502 if (chrootdir == NULL || strncmp(file, "/var
/lib
/dpkg
/", strlen("/var
/lib
/dpkg
/")) != 0)
503 return func_execvp(file, argv);
504 printf("REWRITE execvp call
%s into
%s
\n", file, chrootdir);
506 if (asprintf(&newfile, "%s
%s
", chrootdir, file) == -1) {
510 char const * const baseadmindir = "/var
/lib
/dpkg
";
512 if (asprintf(&admindir, "%s
%s
", chrootdir, baseadmindir) == -1) {
516 setenv("DPKG_ADMINDIR
", admindir, 1);
517 return func_execvp(newfile, argv);
520 testsuccess --nomsg gcc -Wall -fPIC -shared -o noopchroot.so noopchroot.c -ldl
522 configcompression() {
523 while [ -n "$1" ]; do
525 '.') printf ".
\t.
\tcat
\n";;
526 'gz') printf "gzip\tgz
\tgzip
\n";;
527 'bz2') printf "bzip2\tbz
2\tbzip
2\n";;
528 'lzma') printf "lzma
\tlzma
\txz
--format=lzma
\n";;
529 'xz') printf "xz
\txz
\txz
\n";;
530 *) printf "$1\t$1\t$1\n";;
533 done > "${TMPWORKINGDIRECTORY}/rootdir
/etc
/testcase
-compressor.conf
"
537 echo 'APT::FTPArchive {'
539 while [ -n "$1" ]; do
540 printf "$1" | tr 'a-z' 'A-Z'
541 printf "\t\"true
\";\n"
544 for h in 'MD5' 'SHA1' 'SHA256' 'SHA512'; do
545 printf "$h\t\"false
\";\n"
549 } >> "${TMPWORKINGDIRECTORY}/rootdir
/etc
/apt
/apt.conf.d
/ftparchive
-hashes.conf
"
555 gzip) COMPRESS='gz';;
556 bzip2) COMPRESS='bz2';;
557 lzma) COMPRESS='lzma';;
559 *) msgdie "Compressor
$COMPRESSOR is unknown to framework
, so can
't be forced by forcecompressor!";;
561 local CONFFILE="${TMPWORKINGDIRECTORY}/rootdir/etc/apt/apt.conf.d/00force-compressor"
562 echo "Acquire::CompressionTypes::Order { \"${COMPRESS}\"; };
563 Dir::Bin::uncompressed \"/does/not/exist\";
564 Dir::Bin::gzip \"/does/not/exist\";
565 Dir::Bin::bzip2 \"/does/not/exist\";
566 Dir::Bin::lzma \"/does/not/exist\";
567 Dir::Bin::xz \"/does/not/exist\";" > "$CONFFILE"
568 if [ -e "/bin/${COMPRESSOR}" ]; then
569 echo "Dir::Bin::${COMPRESSOR} \"/bin/${COMPRESSOR}\";" >> "$CONFFILE"
570 elif [ -e "/usr/bin/${COMPRESSOR}" ]; then
571 echo "Dir::Bin::${COMPRESSOR} \"/usr/bin/${COMPRESSOR}\";" >> "$CONFFILE"
572 elif [ "${COMPRESSOR}" = 'lzma
' ]; then
573 echo 'Dir
::Bin
::xz
"/usr/bin/xz";' >> "$CONFFILE"
574 COMPRESSOR_CMD='xz
--format=lzma
'
576 msgtest 'Test
for availability of compressor
' "${COMPRESSOR}"
577 msgfail "${COMPRESSOR} not available"
581 setupsimplenativepackage() {
585 local RELEASE="${4:-unstable}"
586 local DEPENDENCIES="$5"
587 local DESCRIPTION="${6:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
588 If you find such a package installed on your system,
589 something went horribly wrong! They are autogenerated
590 und used only by testcases and serve no other purpose…"}"
592 local SECTION="${7:-others}"
594 if [ "$SECTION" = "${SECTION#*/}" ]; then
597 DISTSECTION="${SECTION%/*}"
599 local BUILDDIR=incoming/${NAME}-${VERSION}
600 mkdir -p ${BUILDDIR}/debian/source
602 echo "* most suckless software product ever" > FEATURES
603 test -e debian/copyright || echo "Copyleft by Joe Sixpack $(date +%Y)" > debian/copyright
604 test -e debian/changelog || echo "$NAME ($VERSION) $RELEASE; urgency=low
608 -- Joe Sixpack <joe@example.org> $(date -R)" > debian/changelog
609 test -e debian/control || echo "Source: $NAME
612 Maintainer: Joe Sixpack <joe@example.org>
613 Build-Depends: debhelper (>= 7)
614 Standards-Version: 3.9.1
616 Package: $NAME" > debian/control
617 if [ "$ARCH" = 'all
' ]; then
618 echo "Architecture: all" >> debian/control
620 echo "Architecture: any" >> debian/control
622 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> debian/control
623 echo "Description: $DESCRIPTION" >> debian/control
625 test -e debian/compat || echo "7" > debian/compat
626 test -e debian/source/format || echo "3.0 (native)" > debian/source/format
627 test -e debian/rules || cp /usr/share/doc/debhelper/examples/rules.tiny debian/rules
631 buildsimplenativepackage() {
634 if [ "$(echo "$NAME" | cut -c 1-3)" = 'lib
' ]; then
635 NM="$(echo "$NAME" | cut -c 1-4)"
637 NM="$(echo "$NAME" | cut -c 1)"
641 local RELEASE="${4:-unstable}"
642 local DEPENDENCIES="$5"
643 local DESCRIPTION="${6:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
644 If you find such a package installed on your system,
645 something went horribly wrong! They are autogenerated
646 und used only by testcases and serve no other purpose…"}"
648 local SECTION="${7:-others}"
649 local PRIORITY="${8:-optional}"
651 local COMPRESS_TYPE="${10:-gzip}"
653 if [ "$SECTION" = "${SECTION#*/}" ]; then
656 DISTSECTION="${SECTION%/*}"
658 local BUILDDIR="${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}"
660 msgtest "Build source package in version ${VERSION} for ${RELEASE} in ${DISTSECTION}" "$NAME"
661 mkdir -p "$BUILDDIR/debian/source"
662 echo "* most suckless software product ever" > "${BUILDDIR}/FEATURES"
664 echo '$NAME says
\"Hello
!\"'" > "${BUILDDIR}/${NAME}"
666 echo "Copyleft by Joe Sixpack $(date +%Y)" > "${BUILDDIR}/debian/copyright"
667 echo "$NAME ($VERSION) $RELEASE; urgency=low
671 -- Joe Sixpack <joe@example.org> $(date -R)" > "${BUILDDIR}/debian/changelog"
675 Maintainer: Joe Sixpack <joe@example.org>
676 Standards-Version: 3.9.3"
677 if [ "$SECTION" != '<none
>' ]; then
678 echo "Section: $SECTION"
680 local BUILDDEPS="$(echo "$DEPENDENCIES" | grep '^Build-')"
681 test -z "$BUILDDEPS" || echo "$BUILDDEPS"
685 if [ "$ARCH" = 'all
' ]; then
686 echo "Architecture: all"
688 echo "Architecture: any"
690 local DEPS="$(echo "$DEPENDENCIES" | grep -v '^Build-')"
691 test -z "$DEPS" || echo "$DEPS"
692 echo "Description: $DESCRIPTION"
693 } > "${BUILDDIR}/debian/control"
695 echo '3.0 (native
)' > "${BUILDDIR}/debian/source/format"
697 testsuccess --nomsg dpkg-source -b ${NAME}-${VERSION}
699 sed -n 's
#^dpkg-source: info: building [^ ]\+ in ##p' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testsuccess.output" \
701 echo "pool/${SRC}" >> "${BUILDDIR}/../${RELEASE}.${DISTSECTION}.srclist"
702 # if expr match "${SRC}" '.*\.dsc' >/dev/null 2>&1; then
703 # aptkey --keyring ./keys/joesixpack.pub --secret-keyring ./keys/joesixpack.sec --quiet --readonly \
704 # adv --yes --default-key 'Joe Sixpack' \
705 # --clearsign -o "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC"
706 # mv "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC"
710 for arch
in $(getarchitecturesfromcommalist "$ARCH"); do
711 msgtest
"Build binary package for ${RELEASE} in ${SECTION}" "$NAME"
712 rm -rf "${BUILDDIR}/debian/tmp"
713 mkdir -p "${BUILDDIR}/debian/tmp/DEBIAN" "${BUILDDIR}/debian/tmp/usr/share/doc/${NAME}" "${BUILDDIR}/debian/tmp/usr/bin"
714 cp "${BUILDDIR}/debian/copyright" "${BUILDDIR}/debian/changelog" "${BUILDDIR}/FEATURES" "${BUILDDIR}/debian/tmp/usr/share/doc/${NAME}"
715 cp "${BUILDDIR}/${NAME}" "${BUILDDIR}/debian/tmp/usr/bin/${NAME}-${arch}"
716 if [ -n "$FILE_TREE" ]; then
717 cp -ar "$FILE_TREE" "${BUILDDIR}/debian/tmp"
720 (cd "${BUILDDIR}"; dpkg
-gencontrol -DArchitecture=$arch)
721 (cd "${BUILDDIR}/debian/tmp"; md5sum $(find usr/ -type f) > DEBIAN
/md5sums
)
722 local LOG
="${BUILDDIR}/../${NAME}_${VERSION}_${arch}.dpkg-deb.log"
723 # ensure the right permissions as dpkg-deb insists
724 chmod 755 "${BUILDDIR}/debian/tmp/DEBIAN"
725 testsuccess
--nomsg dpkg
-deb -Z${COMPRESS_TYPE} --build "${BUILDDIR}/debian/tmp" "${BUILDDIR}/.."
726 echo "pool/${NAME}_${VERSION}_${arch}.deb" >> "${BUILDDIR}/../${RELEASE}.${DISTSECTION}.pkglist"
729 local CHANGEPATH
="${BUILDDIR}/../${DISTSECTION}/${NM}/${NAME}/${NAME}_${VERSION}"
730 mkdir -p "$CHANGEPATH"
731 cp "${BUILDDIR}/debian/changelog" "$CHANGEPATH"
740 local ARCH
=$(getarchitecture $4)
741 local PKGNAME
="$(echo "$BUILDDIR" | grep -o '[^/]*$')"
742 local BUILDLOG
="$(readlink -f "${BUILDDIR}/../${PKGNAME}_${RELEASE}_${SECTION}.dpkg-bp.log")"
743 msgtest
"Build package for ${RELEASE} in ${SECTION}" "$PKGNAME"
745 if [ "$ARCH" = "all" ]; then
746 ARCH
="$(dpkg-architecture -qDEB_HOST_ARCH 2> /dev/null)"
748 testsuccess
--nomsg dpkg
-buildpackage -uc -us -a$ARCH
749 cp "${TMPWORKINGDIRECTORY}/rootdir/tmp/testsuccess.output" "$BUILDLOG"
750 local PKGS
="$(grep '^dpkg-deb: building package' "$BUILDLOG" | cut -d'/' -f 2 | sed -e "s#'\.##")"
751 local SRCS
="$(grep '^dpkg-source: info: building' "$BUILDLOG" | grep -o '[a-z0-9._+~-]*$')"
754 echo "pool/${PKG}" >> "${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.pkglist"
757 echo "pool/${SRC}" >> "${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.srclist"
762 if [ -d incoming
]; then
763 buildaptarchivefromincoming
"$@"
765 buildaptarchivefromfiles
"$@"
769 createaptftparchiveconfig
() {
770 local COMPRESSORS
="$(cut -d' ' -f 1 "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf" | tr '\n' ' ')"
771 local COMPRESSORS
="${COMPRESSORS%* }"
772 local ARCHS
="$(getarchitectures)"
773 cat > ftparchive.conf
<<EOF
775 ArchiveDir "$(readlink -f .)";
776 CacheDir "$(readlink -f ..)";
777 FileListDir "$(readlink -f pool/)";
780 Packages::Compress "$COMPRESSORS";
781 Sources::Compress "$COMPRESSORS";
782 Contents::Compress "$COMPRESSORS";
783 Translation::Compress "$COMPRESSORS";
784 LongDescription "false";
788 SrcDirectory "pool/";
791 for DIST
in $(find ./pool/ -maxdepth 1 -name '*.pkglist' -type f | cut -d'/' -f 3 | cut -d'.' -f 1 | sort | uniq); do
794 Architectures "$ARCHS all source";
795 FileList "${DIST}.\$(SECTION).pkglist";
796 SourceFileList "${DIST}.\$(SECTION).srclist";
797 Sections "$(find ./pool/ -maxdepth 1 -name "${DIST}.*.pkglist" -type f | cut -d'/' -f 3 | cut -d'.' -f 2 | sort | uniq | tr '\n' ' ')";
800 done >> ftparchive.conf
803 buildaptftparchivedirectorystructure
() {
804 local DISTS
="$(grep -i '^tree ' ftparchive.conf | cut -d'/' -f 2 | sed -e 's#".*##')"
805 for DIST
in $DISTS; do
806 local SECTIONS
="$(grep -i -A 5 "dists/$DIST" ftparchive.conf | grep -i 'Sections' | cut -d'"' -f 2)"
807 for SECTION
in $SECTIONS; do
808 local ARCHS
="$(grep -A 5 "dists/$DIST" ftparchive.conf | grep Architectures | cut -d'"' -f 2 | sed -e 's#source##')"
809 for ARCH
in $ARCHS; do
810 mkdir -p "dists/${DIST}/${SECTION}/binary-${ARCH}"
812 mkdir -p "dists/${DIST}/${SECTION}/source"
813 mkdir -p "dists/${DIST}/${SECTION}/i18n"
823 local DEPENDENCIES
="$5"
824 local PRIORITY
="${6:-optional}"
825 local DESCRIPTION
="${7:-"an autogenerated dummy ${NAME}=${VERSION}/${RELEASES}
826 If you find such a package installed on your system,
827 something went horribly wrong! They are autogenerated
828 und used only by testcases and serve no other purpose…"}"
830 for RELEASE in $(printf '%s' "$RELEASES" | tr ',' '\n'); do
831 if [ "$RELEASE" = 'installed' ]; then
832 insertinstalledpackage "$2" "$3" "$4" "$5" "$6" "$7"
835 for arch in $(getarchitecturesfromcommalist "$ARCH"); do
836 if [ "$arch" = 'none' ]; then
837 ARCHS="$(getarchitectures)"
841 for BUILDARCH in $ARCHS; do
842 local PPATH="aptarchive
/dists
/${RELEASE}/main
/binary
-${BUILDARCH}"
849 Maintainer
: Joe Sixpack
<joe@example.org
>"
850 test "$arch" = 'none' || echo "Architecture
: $arch"
851 echo "Version
: $VERSION
852 Filename
: pool
/main
/${NAME}/${NAME}_
${VERSION}_
${arch}.deb
"
853 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES"
854 echo "Description
: $(printf '%s' "$DESCRIPTION" | head -n 1)"
855 echo "Description
-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)"
857 } >> "${PPATH}/Packages
"
860 mkdir -p "aptarchive
/dists
/${RELEASE}/main
/source" "aptarchive
/dists
/${RELEASE}/main
/i18n
"
861 touch "aptarchive
/dists
/${RELEASE}/main
/source
/Sources
"
863 Description
-md5: $(printf '%s' "$DESCRIPTION" | md5sum | cut -d' ' -f 1)
864 Description
-en: $DESCRIPTION
865 " >> "aptarchive
/dists
/${RELEASE}/main
/i
18n
/Translation
-en"
874 local DEPENDENCIES="$5"
875 local BINARY="${6:-$NAME}"
877 local SPATH="aptarchive
/dists
/${RELEASE}/main
/source"
879 local FILE="${SPATH}/Sources
"
880 local DSCFILE="${NAME}_
${VERSION}.dsc
"
881 local TARFILE="${NAME}_
${VERSION}.
tar.gz
"
885 Maintainer
: Joe Sixpack
<joe@example.org
>
886 Architecture
: $ARCH" >> $FILE
887 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> "$FILE"
889 $(echo -n "$DSCFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
890 $(echo -n "$TARFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
892 $(echo -n "$DSCFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) "$DSCFILE"
893 $(echo -n "$TARFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) "$TARFILE"
897 insertinstalledpackage() {
901 local DEPENDENCIES="$4"
902 local PRIORITY="${5:-optional}"
903 local STATUS="${6:-install ok installed}"
904 local DESCRIPTION="${7:-"an autogenerated dummy ${NAME}=${VERSION}/installed
905 If you
find such a package installed on your system
,
906 something went horribly wrong
! They are autogenerated
907 und used only by testcases and serve no other purpose…
"}"
909 local FILE
='rootdir/var/lib/dpkg/status'
910 local INFO
='rootdir/var/lib/dpkg/info'
911 for arch
in $(getarchitecturesfromcommalist "$ARCH"); do
917 Maintainer: Joe Sixpack <joe@example.org>
918 Version: $VERSION" >> "$FILE"
919 test "$arch" = 'none' || echo "Architecture: $arch" >> "$FILE"
920 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> "$FILE"
921 echo "Description: $DESCRIPTION" >> "$FILE"
923 if [ "$(dpkg-query -W --showformat='${Multi-Arch}')" = 'same' ]; then
924 echo -n > "${INFO}/${NAME}:${arch}.list"
926 echo -n > "${INFO}/${NAME}.list"
932 buildaptarchivefromincoming
() {
933 msginfo
"Build APT archive for ${CCMD}${0##*/}${CINFO} based on incoming packages…"
935 [ -e pool
] || ln -s ..
/incoming pool
936 [ -e ftparchive.conf
] || createaptftparchiveconfig
937 [ -e dists
] || buildaptftparchivedirectorystructure
938 msgninfo
"\tGenerate Packages, Sources and Contents files… "
939 testsuccess aptftparchive generate ftparchive.conf
942 generatereleasefiles
"$@"
945 buildaptarchivefromfiles
() {
946 msginfo
"Build APT archive for ${CCMD}${0##*/}${CINFO} based on prebuild files…"
947 local DIR
='aptarchive'
948 if [ -d "${DIR}/dists" ]; then DIR
="${DIR}/dists"; fi
949 find "$DIR" -name 'Packages' -o -name 'Sources' -o -name 'Translation-*' | while read line
; do
950 msgninfo
"\t${line} file… "
951 compressfile
"$line" "$1"
954 generatereleasefiles
"$@"
958 cat "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf" | while read compressor extension
command; do
959 if [ "$compressor" = '.' ]; then
965 cat "$1" | $command > "${1}.${extension}"
967 touch -d "$2" "${1}.${extension}"
972 # can be overridden by testcases for their pleasure
973 getcodenamefromsuite
() {
975 unstable
) echo 'sid';;
979 getreleaseversionfromsuite
() { true
; }
980 getlabelfromsuite
() { true
; }
981 getoriginfromsuite
() { true
; }
982 getarchitecturesfromreleasefile
() { echo "all $(getarchitectures)"; }
984 aptftparchiverelease
() {
985 aptftparchive
-qq release
"$@" | sed -e '/0 Release$/ d' # remove the self reference
987 generatereleasefiles
() {
988 # $1 is the Date header and $2 is the ValidUntil header to be set
989 # both should be given in notation date/touch can understand
991 local VALIDUNTIL
="$2"
992 if [ -e aptarchive
/dists
]; then
993 msgninfo
"\tGenerate Release files for dists… "
994 for dir
in $(find ./aptarchive/dists -mindepth 1 -maxdepth 1 -type d); do
995 local ARCHITECTURES
="$(getarchitecturesfromreleasefile "$dir")"
996 local SUITE
="$(echo "$dir" | cut -d'/' -f 4)"
997 local CODENAME
="$(getcodenamefromsuite $SUITE)"
998 local VERSION
="$(getreleaseversionfromsuite $SUITE)"
999 local LABEL
="$(getlabelfromsuite $SUITE)"
1000 local ORIGIN
="$(getoriginfromsuite $SUITE)"
1001 aptftparchiverelease
"$dir" \
1002 -o APT
::FTPArchive
::Release
::Suite
="${SUITE}" \
1003 -o APT
::FTPArchive
::Release
::Codename
="${CODENAME}" \
1004 -o APT
::FTPArchive
::Release
::Architectures
="${ARCHITECTURES}" \
1005 -o APT
::FTPArchive
::Release
::Label
="${LABEL}" \
1006 -o APT
::FTPArchive
::Release
::Origin
="${ORIGIN}" \
1007 -o APT
::FTPArchive
::Release
::Version
="${VERSION}" \
1009 if [ "$SUITE" = "experimental" -o "$SUITE" = "experimental2" ]; then
1010 sed -i '/^Date: / a\
1011 NotAutomatic: yes' "$dir/Release"
1015 msgninfo
"\tGenerate Release files for flat… "
1016 aptftparchiverelease .
/aptarchive
> aptarchive
/Release
1018 if [ -n "$DATE" -a "$DATE" != "now" ]; then
1019 for release
in $(find ./aptarchive -name 'Release'); do
1020 sed -i "s/^Date: .*$/Date: $(date -d "$DATE" '+%a, %d %b %Y %H:%M:%S %Z')/" "$release"
1021 touch -d "$DATE" "$release"
1024 if [ -n "$VALIDUNTIL" ]; then
1025 sed -i "/^Date: / a\
1026 Valid-Until: $(date -d "$VALIDUNTIL" '+%a, %d %b %Y %H:%M:%S %Z')" $(find ./aptarchive -name 'Release')
1031 setupdistsaptarchive
() {
1032 local APTARCHIVE
="$(readlink -f ./aptarchive | sed 's# #%20#g')"
1033 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb.list
1034 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb-src.list
1035 for DISTS
in $(find ./aptarchive/dists/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 4); do
1036 SECTIONS
=$(find "./aptarchive/dists/${DISTS}/" -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 5 | tr '\n' ' ')
1037 msgninfo
"\tadd deb and deb-src sources.list lines for ${CCMD}${DISTS} ${SECTIONS}${CINFO}… "
1038 echo "deb file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb.list"
1039 echo "deb-src file://$APTARCHIVE $DISTS $SECTIONS" > "rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb-src.list"
1044 setupflataptarchive
() {
1045 local APTARCHIVE
="$(readlink -f ./aptarchive)"
1046 local APTARCHIVEURI
="$(readlink -f ./aptarchive | sed 's# #%20#g')"
1047 if [ -f "${APTARCHIVE}/Packages" ]; then
1048 msgninfo
"\tadd deb sources.list line… "
1049 echo "deb file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
1052 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list'
1054 if [ -f "${APTARCHIVE}/Sources" ]; then
1055 msgninfo
"\tadd deb-src sources.list line… "
1056 echo "deb-src file://$APTARCHIVEURI /" > 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
1059 rm -f 'rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list'
1065 if [ "$1" = '--no-update' ]; then
1069 buildaptarchive
"$@"
1070 if [ -e aptarchive
/dists
]; then
1071 setupdistsaptarchive
1075 signreleasefiles
'Joe Sixpack'
1076 if [ "1" != "$NOUPDATE" ]; then
1077 testsuccess aptget update
-o Debug
::pkgAcquire
::Worker
=true
-o Debug
::Acquire
::gpgv
=true
1081 signreleasefiles
() {
1082 local SIGNER
="${1:-Joe Sixpack}"
1083 local REPODIR
="${2:-aptarchive}"
1084 local KEY
="keys/$(echo "$SIGNER" | tr 'A-Z' 'a-z' | sed 's# ##g')"
1085 local GPG
="aptkey --quiet --keyring ${KEY}.pub --secret-keyring ${KEY}.sec --readonly adv --batch --yes"
1086 msgninfo
"\tSign archive with $SIGNER key $KEY… "
1087 local REXKEY
='keys/rexexpired'
1088 local SECEXPIREBAK
="${REXKEY}.sec.bak"
1089 local PUBEXPIREBAK
="${REXKEY}.pub.bak"
1090 if [ "${SIGNER}" = 'Rex Expired' ]; then
1091 # the key is expired, so gpg doesn't allow to sign with and the --faked-system-time
1092 # option doesn't exist anymore (and using faketime would add a new obscure dependency)
1093 # therefore we 'temporary' make the key not expired and restore a backup after signing
1094 cp "${REXKEY}.sec" "$SECEXPIREBAK"
1095 cp "${REXKEY}.pub" "$PUBEXPIREBAK"
1096 local SECUNEXPIRED
="${REXKEY}.sec.unexpired"
1097 local PUBUNEXPIRED
="${REXKEY}.pub.unexpired"
1098 if [ -f "$SECUNEXPIRED" ] && [ -f "$PUBUNEXPIRED" ]; then
1099 cp "$SECUNEXPIRED" "${REXKEY}.sec"
1100 cp "$PUBUNEXPIRED" "${REXKEY}.pub"
1102 if ! printf "expire\n1w\nsave\n" | $GPG --default-key "$SIGNER" --command-fd 0 --edit-key "${SIGNER}" >setexpire.gpg
2>&1; then
1106 cp "${REXKEY}.sec" "$SECUNEXPIRED"
1107 cp "${REXKEY}.pub" "$PUBUNEXPIRED"
1110 for RELEASE
in $(find "${REPODIR}/" -name Release); do
1111 testsuccess
$GPG --default-key "$SIGNER" --armor --detach-sign --sign --output "${RELEASE}.gpg" "${RELEASE}"
1112 local INRELEASE
="$(echo "${RELEASE}" | sed 's#/Release$#/InRelease#')"
1113 testsuccess
$GPG --default-key "$SIGNER" --clearsign --output "$INRELEASE" "$RELEASE"
1114 # we might have set a specific date for the Release file, so copy it
1115 touch -d "$(stat --format "%y" ${RELEASE})" "${RELEASE}.gpg" "${INRELEASE}"
1117 if [ -f "$SECEXPIREBAK" ] && [ -f "$PUBEXPIREBAK" ]; then
1118 mv -f "$SECEXPIREBAK" "${REXKEY}.sec"
1119 mv -f "$PUBEXPIREBAK" "${REXKEY}.pub"
1124 redatereleasefiles
() {
1125 local DATE
="$(date -d "$1" '+%a, %d %b %Y %H:%M:%S %Z')"
1126 for release
in $(find aptarchive/ -name 'Release'); do
1127 sed -i "s/^Date: .*$/Date: ${DATE}/" "$release"
1128 touch -d "$DATE" "$release"
1130 signreleasefiles
"${2:-Joe Sixpack}"
1134 local WEBSERVER
="${3:-http://localhost:${APTHTTPPORT}}"
1136 if [ "$1" = '--no-check' ]; then
1140 local DOWNLOG
='rootdir/tmp/download-testfile.log'
1141 local STATUS
='downloaded/webserverconfig.status'
1142 rm -f "$STATUS" "$DOWNLOG"
1143 # very very basic URI encoding
1145 if [ -n "$2" ]; then
1146 msgtest
"Set webserver config option '${1}' to" "$2"
1147 URI
="${WEBSERVER}/_config/set/$(echo "${1}" | sed -e 's/\//%2f/g')/$(echo "${2}" | sed -e 's/\//%2f/g')"
1149 msgtest
'Clear webserver config option' "${1}"
1150 URI
="${WEBSERVER}/_config/clear/$(echo "${1}" | sed -e 's/\//%2f/g')"
1152 if downloadfile
"$URI" "$STATUS" > "$DOWNLOG"; then
1155 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/webserverconfig.output"
1156 cat "$DOWNLOG" "$STATUS" >"$OUTPUT" 2>&1 || true
1157 msgfailoutput
'' "$OUTPUT"
1159 $NOCHECK || testwebserverlaststatuscode
'200'
1162 rewritesourceslist
() {
1163 local APTARCHIVE
="file://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
1164 local APTARCHIVE2
="copy://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive" | sed 's# #%20#g')"
1165 for LIST
in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
1166 sed -i $LIST -e "s#$APTARCHIVE#${1}#" -e "s#$APTARCHIVE2#${1}#" \
1167 -e "s#http://localhost:${APTHTTPPORT}/#${1}#" \
1168 -e "s#https://localhost:${APTHTTPSPORT}/#${1}#"
1172 # wait for up to 10s for a pid file to appear to avoid possible race
1173 # when a helper is started and dosn't write the PID quick enough
1176 for i
in $(seq 10); do
1177 if test -s "$PIDFILE"; then
1182 msgdie
"waiting for $PIDFILE failed"
1186 changetowebserver
() {
1188 if [ "$1" != '--no-rewrite' ]; then
1193 if test -x "${APTWEBSERVERBINDIR}/aptwebserver"; then
1195 local LOG
="webserver.log"
1196 if ! aptwebserver
--port 0 -o aptwebserver
::fork
=1 -o aptwebserver
::portfile
='aptwebserver.port' "$@" >$LOG 2>&1 ; then
1200 waitforpidfile aptwebserver.pid
1201 local PID
="$(cat aptwebserver.pid)"
1202 if [ -z "$PID" ]; then
1203 msgdie
'Could not fork aptwebserver successfully'
1205 addtrap
"kill $PID;"
1206 waitforpidfile aptwebserver.port
1207 APTHTTPPORT
="$(cat aptwebserver.port)"
1208 if [ -z "$APTHTTPPORT" ]; then
1209 msgdie
'Could not get port for aptwebserver successfully'
1213 msgdie
'You have to build apt from source to have test/interactive-helper/aptwebserver available for tests requiring a webserver'
1215 if [ "$REWRTE" != 'yes' ]; then
1216 rewritesourceslist
"http://localhost:${APTHTTPPORT}/"
1220 changetohttpswebserver
() {
1221 if ! command -v stunnel4
>/dev
/null
2>&1; then
1222 msgdie
'You need to install stunnel4 for https testcases'
1224 if [ ! -e "${TMPWORKINGDIRECTORY}/aptarchive/aptwebserver.pid" ]; then
1225 changetowebserver
--no-rewrite "$@"
1227 echo "pid = ${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid
1228 cert = ${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem
1233 connect = $APTHTTPPORT
1234 " > "${TMPWORKINGDIRECTORY}/stunnel.conf"
1235 stunnel4
"${TMPWORKINGDIRECTORY}/stunnel.conf"
1236 waitforpidfile
"${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid"
1237 local PID
="$(cat "${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid")"
1238 if [ -z "$PID" ]; then
1239 msgdie
'Could not fork stunnel4 successfully'
1241 addtrap
'prefix' "kill ${PID};"
1242 APTHTTPSPORT
="$(lsof -i | awk "/^stunnel4 / && \$2 == \"${PID}\" {print \$9; exit; }" | cut -d':' -f 2)"
1243 webserverconfig
'aptwebserver::port::https' "$APTHTTPSPORT" "https://localhost:${APTHTTPSPORT}"
1244 rewritesourceslist
"https://localhost:${APTHTTPSPORT}/"
1248 mkdir -p rootdir
/media
/cdrom
/.disk
1249 local CD
="$(readlink -f rootdir/media/cdrom)"
1250 cat > rootdir
/etc
/apt
/apt.conf.d
/00cdrom
<<EOF
1251 acquire::cdrom::mount "${CD}";
1252 acquire::cdrom::"${CD}/"::mount "mv ${CD}-unmounted ${CD}";
1253 acquire::cdrom::"${CD}/"::umount "mv ${CD} ${CD}-unmounted";
1254 acquire::cdrom::autodetect 0;
1256 echo -n "$1" > "${CD}/.disk/info"
1257 if [ ! -d aptarchive
/dists
]; then
1258 msgdie
'Flat file archive cdroms can not be created currently'
1261 mv aptarchive
/dists
"$CD"
1262 ln -s "$(readlink -f ./incoming)" "$CD/pool"
1263 find rootdir
/etc
/apt
/sources.list.d
/ -name 'apt-test-*.list' -delete
1264 # start with an unmounted disk
1265 mv "${CD}" "${CD}-unmounted"
1266 # we don't want the disk to be modifiable
1267 addtrap
'prefix' "chmod -f -R +w '$(escape_shell "$PWD/rootdir/media/cdrom/dists/")' '$(escape_shell "$PWD/rootdir/media/cdrom-unmounted/dists/")' || true;"
1268 chmod -R 555 rootdir
/media
/cdrom
-unmounted/dists
1272 local PROTO
="${1%%:*}"
1273 if ! apthelper
-o Debug
::Acquire
::${PROTO}=1 -o Debug
::pkgAcquire
::Worker
=1 \
1274 download
-file "$1" "$2" "$3" 2>&1 ; then
1277 # only if the file exists the download was successful
1278 if [ -r "$2" ]; then
1286 local DIFFTEXT
="$(command diff -u "$@" 2>&1 | sed -e '/^---/ d' -e '/^+++/ d' -e '/^@@/ d')"
1287 if [ -n "$DIFFTEXT" ]; then
1289 echo >&2 "$DIFFTEXT"
1297 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testoutputequal.output"
1298 local COMPAREFILE
="$1"
1300 if "$@" 2>&1 | checkdiff
"$COMPAREFILE" - >"$OUTPUT" 2>&1; then
1303 echo "=== content of file we compared with (${COMPAREFILE}) ===" >>"${OUTPUT}"
1304 cat "$COMPAREFILE" >>"${OUTPUT}"
1305 msgfailoutput
'' "$OUTPUT" "$@"
1310 msggroup
'testfileequal'
1311 local MSG
='Test for correctness of file'
1312 if [ "$1" = '--nomsg' ]; then
1318 if [ -n "$MSG" ]; then
1319 msgtest
"$MSG" "$FILE"
1321 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfileequal.output"
1322 if [ -z "$*" ]; then
1323 testoutputequal
"$FILE" echo -n ''
1325 testoutputequal
"$FILE" echo "$*"
1331 msggroup
'testempty'
1332 msgtest
"Test for no output of" "$*"
1333 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testempty.comparefile"
1334 if ("$@" >"$COMPAREFILE" 2>&1 || true
) && test ! -s "$COMPAREFILE"; then
1337 msgfailoutput
'' "$COMPAREFILE" "$@"
1339 aptautotest
'testempty' "$@"
1343 msggroup
'testnotempty'
1344 msgtest
"Test for some output of" "$*"
1345 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnotempty.comparefile"
1346 if ("$@" >"$COMPAREFILE" 2>&1 || true
) && test -s "$COMPAREFILE"; then
1349 msgfailoutput
'' "$COMPAREFILE" "$@"
1351 aptautotest
'testnotempty' "$@"
1356 msggroup
'testequal'
1357 local MSG
='Test of equality of'
1358 if [ "$1" = '--nomsg' ]; then
1363 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.comparefile"
1364 echo "$1" > "$COMPAREFILE"
1367 if [ -n "$MSG" ]; then
1370 testoutputequal
"$COMPAREFILE" "$@"
1371 aptautotest
'testequal' "$@"
1376 msggroup
'testequalor2'
1377 local COMPAREFILE1
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile1"
1378 local COMPAREFILE2
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.comparefile2"
1379 local COMPAREAGAINST
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequalor2.compareagainst"
1380 echo "$1" > "$COMPAREFILE1"
1381 echo "$2" > "$COMPAREFILE2"
1383 msgtest
"Test for equality OR of" "$*"
1384 "$@" >"$COMPAREAGAINST" 2>&1 || true
1385 if checkdiff
"$COMPAREFILE1" "$COMPAREAGAINST" >/dev
/null
2>&1 || \
1386 checkdiff
"$COMPAREFILE2" "$COMPAREAGAINST" >/dev
/null
2>&1
1390 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testequal.output"
1391 echo -n "\n${CINFO}Diff against OR 1${CNORMAL}" >"$OUTPUT" 2>&1
1392 checkdiff
"$COMPAREFILE1" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1393 echo -n "${CINFO}Diff against OR 2${CNORMAL}" >"$OUTPUT" 2>&1
1394 checkdiff
"$COMPAREFILE2" "$COMPAREAGAINST" >"$OUTPUT" 2>&1 || true
1395 msgfailoutput
'' "$OUTPUT"
1397 aptautotest
'testequalor2' "$@"
1402 msggroup
'testshowvirtual'
1403 local VIRTUAL
="N: Can't select versions from package '$1' as it is purely virtual"
1406 while [ -n "$1" ]; do
1408 N: Can't select versions from package '$1' as it is purely virtual"
1409 PACKAGE
="${PACKAGE} $1"
1412 msgtest
"Test for virtual packages" "apt-cache show $PACKAGE"
1414 N: No packages found"
1415 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.comparefile"
1416 local ARCH
="$(getarchitecture 'native')"
1417 echo "$VIRTUAL" | sed -e "s/:$ARCH//" -e 's/:all//' >"$COMPAREFILE"
1418 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testshowvirtual.output"
1419 testoutputequal
"$COMPAREFILE" aptcache show
"$PACKAGE"
1424 msggroup
'testnopackage'
1425 msgtest
"Test for non-existent packages" "apt-cache show $*"
1426 local SHOWPKG
="$(aptcache show "$@" 2>&1 | grep '^Package: ')"
1427 if [ -n "$SHOWPKG" ]; then
1428 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1429 echo "$SHOWPKG" >"$OUTPUT"
1430 msgfailoutput
'' "$OUTPUT"
1436 testnosrcpackage
() {
1437 msggroup
'testnosrcpackage'
1438 msgtest
"Test for non-existent source packages" "apt-cache showsrc $*"
1439 local SHOWPKG
="$(aptcache showsrc "$@" 2>&1 | grep '^Package: ')"
1440 if [ -n "$SHOWPKG" ]; then
1441 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnosrcpackage.output"
1442 echo "$SHOWPKG" >"$OUTPUT"
1443 msgfailoutput
'' "$OUTPUT"
1451 msggroup
'testdpkgstatus'
1455 msgtest
"Test that $NR package(s) are in state $STATE with" "dpkg -l $*"
1456 local PKGS
="$(dpkg -l "$@" 2>/dev/null | grep "^${STATE}" | wc -l)"
1457 if [ "$PKGS" != $NR ]; then
1458 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testnopackage.output"
1459 echo "$PKGS" >"$OUTPUT"
1460 dpkg
-l "$@" | grep '^[a-z]' >"$OUTPUT" >&2 || true
1461 msgfailoutput
'' "$OUTPUT"
1468 testdpkginstalled
() {
1469 msggroup
'testdpkginstalled'
1470 testdpkgstatus
'ii' "$#" "$@"
1474 testdpkgnotinstalled
() {
1475 msggroup
'testdpkgnotinstalled'
1476 testdpkgstatus
'ii' '0' "$@"
1481 msggroup
'testmarkedauto'
1482 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedauto.comparefile"
1483 if [ -n "$1" ]; then
1484 msgtest
'Test for correctly marked as auto-installed' "$*"
1485 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
1487 msgtest
'Test for correctly marked as auto-installed' 'no package'
1488 echo -n > "$COMPAREFILE"
1490 testoutputequal
"$COMPAREFILE" aptmark showauto
1493 testmarkedmanual
() {
1494 msggroup
'testmarkedmanual'
1495 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testmarkedmanual.comparefile"
1496 if [ -n "$1" ]; then
1497 msgtest
'Test for correctly marked as manually installed' "$*"
1498 while [ -n "$1" ]; do echo "$1"; shift; done | sort > "$COMPAREFILE"
1500 msgtest
'Test for correctly marked as manually installed' 'no package'
1501 echo -n > "$COMPAREFILE"
1503 testoutputequal
"$COMPAREFILE" aptmark showmanual
1508 msgreportheader
'msgfailoutput'
1512 if [ "$1" = 'grep' ]; then
1514 while [ -n "$2" ]; do shift; done
1515 echo "#### Complete file: $1 ####"
1516 cat >&2 "$1" || true
1517 echo '#### grep output ####'
1518 elif [ "$1" = 'test' ]; then
1520 # doesn't support ! or non-file flags
1521 msgfailoutputstatfile
() {
1522 local FILEFLAGS
='^-[bcdefgGhkLOprsStuwx]$'
1523 if expr match
"$1" "$FILEFLAGS" >/dev
/null
; then
1524 echo "#### stat(2) of file: $2 ####"
1526 if test -d "$2"; then
1527 echo "#### The directory contains: $2 ####"
1529 elif test -e "$2"; then
1530 echo "#### Complete file: $2 ####"
1531 cat >&2 "$2" || true
1535 msgfailoutputstatfile
"$2" "$3"
1536 while [ -n "$5" ] && [ "$4" = '-o' -o "$4" = '-a' ]; do
1538 msgfailoutputstatfile
"$2" "$3"
1540 echo '#### test output ####'
1546 testsuccesswithglobalerror
() {
1551 if [ "$1" = '--nomsg' ]; then
1554 msgtest
'Test for successful execution of' "$*"
1556 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/${TYPE}.output"
1557 if "$@" >"${OUTPUT}" 2>&1; then
1558 if expr match
"$1" '^apt.*' >/dev
/null
; then
1559 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1560 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1561 elif grep -E "^[${ERRORS}]: " "$OUTPUT" > "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" 2>&1; then
1562 if [ "$IGNORE_PTY_NOT_MOUNTED" = '1' ]; then
1563 if echo 'E: Can not write log (Is /dev/pts mounted?) - posix_openpt (2: No such file or directory)' \
1564 | cmp - "${TMPWORKINGDIRECTORY}/rootdir/tmp/checkforwarnings.output" >/dev
/null
2>&1; then
1567 msgfailoutput
'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1570 msgfailoutput
'successful run, but output contains warnings/errors' "$OUTPUT" "$@"
1572 elif [ "$TYPE" = 'testsuccesswithnotice' ]; then
1573 if grep -q -E "^N: " "$OUTPUT"; then
1576 msgfailoutput
'successful run, but output had no notices' "$OUTPUT" "$@"
1586 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1588 aptautotest
"$TYPE" "$@"
1591 testsuccesswithnotice
() {
1592 testsuccesswithglobalerror
'testsuccesswithnotice' 'WE' "$@"
1595 testsuccesswithglobalerror
'testsuccess' 'NWE' "$@"
1598 msggroup
'testwarning'
1599 if [ "$1" = '--nomsg' ]; then
1602 msgtest
'Test for successful execution with warnings of' "$*"
1604 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output"
1605 if "$@" >"${OUTPUT}" 2>&1; then
1606 if expr match
"$1" '^apt.*' >/dev
/null
; then
1607 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1608 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1609 elif grep -q -E '^E: ' "$OUTPUT"; then
1610 msgfailoutput
'successful run, but output contains errors' "$OUTPUT" "$@"
1611 elif ! grep -q -E '^W: ' "$OUTPUT"; then
1612 msgfailoutput
'successful run, but output contains no warnings' "$OUTPUT" "$@"
1621 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1623 aptautotest
'testwarning' "$@"
1627 msggroup
'testfailure'
1628 if [ "$1" = '--nomsg' ]; then
1631 msgtest
'Test for failure in execution of' "$*"
1633 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output"
1634 if "$@" >"${OUTPUT}" 2>&1; then
1636 msgfailoutput
"exitcode $EXITCODE" "$OUTPUT" "$@"
1639 if expr match
"$1" '^apt.*' >/dev
/null
; then
1640 if [ "$1" = 'aptkey' ]; then
1641 if grep -q -E " Can't check signature: " "$OUTPUT" || \
1642 grep -q -E " BAD signature from " "$OUTPUT"; then
1645 msgfailoutput
"run failed with exitcode ${EXITCODE}, but no signature error" "$OUTPUT" "$@"
1648 if grep -q -E ' runtime error: ' "$OUTPUT"; then
1649 msgfailoutput
'compiler detected undefined behavior' "$OUTPUT" "$@"
1650 elif grep -q -E '==ERROR' "$OUTPUT"; then
1651 msgfailoutput
'compiler sanitizers reported errors' "$OUTPUT" "$@"
1652 elif ! grep -q -E '^E: ' "$OUTPUT"; then
1653 msgfailoutput
"run failed with exitcode ${EXITCODE}, but with no errors" "$OUTPUT" "$@"
1662 aptautotest
'testfailure' "$@"
1666 testreturnstateequal
() {
1668 if [ "$STATE" = 'testsuccesswithglobalerror' ]; then
1672 msggroup
"${STATE}equal"
1673 if [ "$1" != '--nomsg' ]; then
1676 testsuccesswithglobalerror
"$STATE" "$TYPE" "$@"
1677 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1681 testsuccesswithglobalerror
"$STATE" "$TYPE" "$@"
1682 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1685 msggroup
"${STATE}equal"
1686 if [ "$2" != '--nomsg' ]; then
1690 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1694 "$STATE" --nomsg "$@"
1695 testfileequal
"${TMPWORKINGDIRECTORY}/rootdir/tmp/${STATE}.output" "$CMP"
1700 testsuccessequal
() {
1701 # we compare output, so we know perfectly well about N:
1702 testreturnstateequal
'testsuccesswithglobalerror' 'testsuccess' 'WE' "$@"
1704 testwarningequal
() {
1705 testreturnstateequal
'testwarning' "$@"
1707 testfailureequal
() {
1708 testreturnstateequal
'testfailure' "$@"
1712 msggroup
'testfailuremsg'
1716 msgtest
'Check that the output of the previous failed command has expected' 'failures and warnings'
1717 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailuremsg.comparefile"
1718 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output" > "$COMPAREFILE" 2>&1 || true
1719 testoutputequal
"$COMPAREFILE" echo "$CMP"
1723 msggroup
'testwarningmsg'
1727 msgtest
'Check that the output of the previous warned command has expected' 'warnings'
1728 local COMPAREFILE
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarningmsg.comparefile"
1729 grep '^\(W\|E\|N\):' "${TMPWORKINGDIRECTORY}/rootdir/tmp/testwarning.output" > "$COMPAREFILE" 2>&1 || true
1730 testoutputequal
"$COMPAREFILE" echo "$CMP"
1735 msggroup
'testfilestats'
1736 msgtest
"Test that file $1 has $2 $3" "$4"
1737 if [ "$4" "$3" "$(stat --format "$2" "$1")" ]; then
1740 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfilestats.output"
1743 echo -n "stat(1) reports for $2: "
1744 stat
--format "$2" "$1" || true
1746 msgfailoutput
'' "$OUTPUT"
1750 testaccessrights
() {
1751 msggroup
'testaccessrights'
1752 testfilestats
"$1" '%a' '=' "$2"
1756 testwebserverlaststatuscode
() {
1757 msggroup
'testwebserverlaststatuscode'
1758 local DOWNLOG
='rootdir/tmp/webserverstatus-testfile.log'
1759 local STATUS
='downloaded/webserverstatus-statusfile.log'
1760 rm -f "$DOWNLOG" "$STATUS"
1761 msgtest
'Test last status code from the webserver was' "$1"
1762 if downloadfile
"http://localhost:${APTHTTPPORT}/_config/find/aptwebserver::last-status-code" "$STATUS" > "$DOWNLOG" && [ "$(cat "$STATUS")" = "$1" ]; then
1765 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwebserverlaststatuscode.output"
1767 if [ -n "$2" ]; then
1769 echo >&2 '#### Additionally provided output files contain:'
1772 echo >&2 '#### Download log of the status code:'
1775 msgfailoutput
"Status was $(cat "$STATUS")" "$OUTPUT"
1780 createlistofkeys
() {
1783 while [ -n "$1" ]; do
1784 # gpg 2.1 has a slightly different output format
1785 if grep -q ' rsa2048/' "$OUTPUT"; then
1787 *Joe
*|*Sixpack
*) echo 'pub rsa2048/DBAC8DAE 2010-08-18';;
1788 *Rex
*|*Expired
*) echo 'pub rsa2048/27CE74F9 2013-07-12 [expired: 2013-07-13]';;
1789 *Marvin
*|*Paranoid
*) echo 'pub rsa2048/528144E2 2011-01-16';;
1790 oldarchive
) echo 'pub rsa1024/F68C85A3 2013-12-19';;
1791 newarchive
) echo 'pub rsa2048/DBAC8DAE 2010-08-18';;
1792 *) echo 'UNKNOWN KEY';;
1796 *Joe
*|*Sixpack
*) echo 'pub 2048R/DBAC8DAE 2010-08-18';;
1797 *Rex
*|*Expired
*) echo 'pub 2048R/27CE74F9 2013-07-12 [expired: 2013-07-13]';;
1798 *Marvin
*|*Paranoid
*) echo 'pub 2048R/528144E2 2011-01-16';;
1799 oldarchive
) echo 'pub 1024R/F68C85A3 2013-12-19';;
1800 newarchive
) echo 'pub 2048R/DBAC8DAE 2010-08-18';;
1801 *) echo 'UNKNOWN KEY';;
1808 local OUTPUT
="${TMPWORKINGDIRECTORY}/rootdir/tmp/aptkeylist.output"
1809 if ! aptkey list
| grep '^pub' > "$OUTPUT"; then
1812 testfileequal
"$OUTPUT" "$(createlistofkeys "$OUTPUT" "$@")"
1816 echo "STOPPED execution. Press enter to continue"
1821 listcurrentlistsdirectory
() {
1823 find rootdir
/var
/lib
/apt
/lists
-maxdepth 1 -type d
| while read line
; do
1824 stat
--format '%U:%G:%a:%n' "$line"
1826 find rootdir
/var
/lib
/apt
/lists
-maxdepth 1 \
! -type d
| while read line
; do
1827 stat
--format '%U:%G:%a:%s:%y:%n' "$line"
1832 ### convenience hacks ###
1834 # creating some directories by hand is a tedious task, so make it look simple
1836 if [ "$PARAMS" != "${PARAMS#*rootdir/var/lib/apt/lists}" ]; then
1837 # only the last directory created by mkdir is effected by the -m !
1838 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt"
1839 command mkdir -m 755 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"
1840 command mkdir -m 700 -p "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1841 touch "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/lock"
1842 if [ "$(id -u)" = '0' ]; then
1843 chown _apt
:root
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial"
1850 ### The following tests are run by most test methods automatically to check
1851 ### general things about commands executed without writing the test every time.
1857 local AUTOTEST
="aptautotest_$(echo "${CMD##*/}_${FIRSTOPT}" | tr -d '-')"
1858 if command -v $AUTOTEST >/dev
/null
; then
1860 # save and restore the *.output files from other tests
1861 # as we might otherwise override them in these automatic tests
1862 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1863 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-before"
1864 mkdir "${TMPWORKINGDIRECTORY}/rootdir/tmp"
1865 $AUTOTEST "$TESTCALL" "$@"
1866 rm -rf "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1867 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp" "${TMPWORKINGDIRECTORY}/rootdir/tmp-aptautotest"
1868 mv "${TMPWORKINGDIRECTORY}/rootdir/tmp-before" "${TMPWORKINGDIRECTORY}/rootdir/tmp"
1872 aptautotest_aptget_update
() {
1874 while [ -n "$2" ]; do
1875 if [ "$2" = '--print-uris' ]; then return; fi # simulation mode
1878 if ! test -d "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists"; then return; fi
1879 testfilestats
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
1880 testfilestats
"${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:755"
1881 # all copied files are properly chmodded
1882 local backupIFS
="$IFS"
1883 IFS
="$(printf "\n\b")"
1884 for file in $(find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists" -type f ! -name 'lock'); do
1885 testfilestats
"$file" '%U:%G:%a' '=' "${TEST_DEFAULT_USER}:${TEST_DEFAULT_GROUP}:644"
1888 if [ "$TESTCALL" = 'testsuccess' ]; then
1889 # failure cases can retain partial files and such
1890 testempty
find "${TMPWORKINGDIRECTORY}/rootdir/var/lib/apt/lists/partial" -mindepth 1 ! \
( -name 'lock' -o -name '*.FAILED' \
)
1893 aptautotest_apt_update
() { aptautotest_aptget_update
"$@"; }
1894 aptautotest_aptcdrom_add
() { aptautotest_aptget_update
"$@"; }
1896 testaptautotestnodpkgwarning
() {
1898 while [ -n "$2" ]; do
1899 if expr match
"$2" '^-[a-z]*s' >/dev
/null
2>&1; then return; fi # simulation mode
1900 if expr match
"$2" '^-dy\?' >/dev
/null
2>&1; then return; fi # download-only mode
1903 testfailure
grep '^dpkg: warning:.*ignor.*' "${TMPWORKINGDIRECTORY}/rootdir/tmp-before/${TESTCALL}.output"
1906 aptautotest_aptget_install
() { testaptautotestnodpkgwarning
"$@"; }
1907 aptautotest_aptget_remove
() { testaptautotestnodpkgwarning
"$@"; }
1908 aptautotest_aptget_purge
() { testaptautotestnodpkgwarning
"$@"; }
1909 aptautotest_apt_install
() { testaptautotestnodpkgwarning
"$@"; }
1910 aptautotest_apt_remove
() { testaptautotestnodpkgwarning
"$@"; }
1911 aptautotest_apt_purge
() { testaptautotestnodpkgwarning
"$@"; }