1 #!/bin/sh -- # no runable script, just for vi
5 # we all like colorful messages
6 if expr match
"$(readlink -f /proc/$$/fd/1)" '/dev/pts/[0-9]\+' > /dev
/null
&& \
7 expr match
"$(readlink -f /proc/$$/fd/2)" '/dev/pts/[0-9]\+' > /dev
/null
; then
8 CERROR
="\e[1;31m" # red
9 CWARNING
="\e[1;33m" # yellow
10 CMSG
="\e[1;32m" # green
11 CINFO
="\e[1;96m" # light blue
12 CDEBUG
="\e[1;94m" # blue
13 CNORMAL
="\e[0;39m" # default system console color
14 CDONE
="\e[1;32m" # green
15 CPASS
="\e[1;32m" # green
16 CFAIL
="\e[1;31m" # red
17 CCMD
="\e[1;35m" # pink
20 msgdie
() { echo "${CERROR}E: $1${CNORMAL}" >&2; exit 1; }
21 msgwarn
() { echo "${CWARNING}W: $1${CNORMAL}" >&2; }
22 msgmsg
() { echo "${CMSG}$1${CNORMAL}" >&2; }
23 msginfo
() { echo "${CINFO}I: $1${CNORMAL}" >&2; }
24 msgdebug
() { echo "${CDEBUG}D: $1${CNORMAL}" >&2; }
25 msgdone
() { echo "${CDONE}DONE${CNORMAL}" >&2; }
26 msgnwarn
() { echo -n "${CWARNING}W: $1${CNORMAL}" >&2; }
27 msgnmsg
() { echo -n "${CMSG}$1${CNORMAL}" >&2; }
28 msgninfo
() { echo -n "${CINFO}I: $1${CNORMAL}" >&2; }
29 msgndebug
() { echo -n "${CDEBUG}D: $1${CNORMAL}" >&2; }
32 echo -n "${CINFO}$1${CCMD} " >&2;
33 echo -n "$(echo "$2" | sed -e 's/^aptc/apt-c/' -e 's/^aptg/apt-g/' -e 's/^aptf/apt-f/')${CINFO} " >&2;
35 if [ -n "$1" ]; then shift; else break; fi
37 echo -n "…${CNORMAL} " >&2;
39 msgpass
() { echo "${CPASS}PASS${CNORMAL}" >&2; }
40 msgskip
() { echo "${CWARNING}SKIP${CNORMAL}" >&2; }
42 if [ $# -gt 0 ]; then echo "${CFAIL}FAIL: $*${CNORMAL}" >&2;
43 else echo "${CFAIL}FAIL${CNORMAL}" >&2; fi
44 EXIT_CODE
=$((EXIT_CODE+1));
47 # enable / disable Debugging
48 MSGLEVEL
=${MSGLEVEL:-3}
49 if [ $MSGLEVEL -le 0 ]; then
52 if [ $MSGLEVEL -le 1 ]; then
56 if [ $MSGLEVEL -le 2 ]; then
60 msgpass
() { echo -n " ${CPASS}P${CNORMAL}" >&2; }
61 msgskip
() { echo -n " ${CWARNING}S${CNORMAL}" >&2; }
62 if [ -n "$CFAIL" ]; then
63 msgfail
() { echo -n " ${CFAIL}FAIL${CNORMAL}" >&2; EXIT_CODE
=$((EXIT_CODE+1)); }
65 msgfail
() { echo -n " ###FAILED###" >&2; EXIT_CODE
=$((EXIT_CODE+1)); }
68 if [ $MSGLEVEL -le 3 ]; then
72 if [ $MSGLEVEL -le 4 ]; then
77 if [ "$1" = "debug" -a $MSGLEVEL -le 4 ] ||
78 [ "$1" = "info" -a $MSGLEVEL -le 3 ] ||
79 [ "$1" = "msg" -a $MSGLEVEL -le 2 ] ||
80 [ "$1" = "warn" -a $MSGLEVEL -le 1 ] ||
81 [ "$1" = "die" -a $MSGLEVEL -le 0 ]; then
84 echo "${CDONE}DONE${CNORMAL}" >&2;
89 msgdebug
"Executing: ${CCMD}$*${CDEBUG} "
90 if [ -f .
/aptconfig.conf
]; then
91 MALLOC_PERTURB_
=21 MALLOC_CHECK_
=2 APT_CONFIG
=aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$
*
92 elif [ -f ..
/aptconfig.conf
]; then
93 MALLOC_PERTURB_
=21 MALLOC_CHECK_
=2 APT_CONFIG
=..
/aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$
*
95 MALLOC_PERTURB_
=21 MALLOC_CHECK_
=2 LD_LIBRARY_PATH
=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$
*
98 aptconfig
() { runapt apt
-config $
*; }
99 aptcache
() { runapt apt
-cache $
*; }
100 aptcdrom
() { runapt apt
-cdrom $
*; }
101 aptget
() { runapt apt
-get $
*; }
102 aptftparchive
() { runapt apt
-ftparchive $
*; }
103 aptkey
() { runapt apt
-key $
*; }
104 aptmark
() { runapt apt
-mark $
*; }
106 LD_LIBRARY_PATH
=${APTWEBSERVERBINDIR} ${APTWEBSERVERBINDIR}/aptwebserver $
*;
109 $(which dpkg) --root=${TMPWORKINGDIRECTORY}/rootdir
--force-not-root --force-bad-path --log=${TMPWORKINGDIRECTORY}/rootdir
/var
/log
/dpkg.log $
*
112 if [ -f .
/aptconfig.conf
]; then
113 APT_CONFIG
=aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} $(which aptitude) $
*
114 elif [ -f ..
/aptconfig.conf
]; then
115 APT_CONFIG
=..
/aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} $(which aptitude) $
*
117 LD_LIBRARY_PATH
=${BUILDDIRECTORY} $(which aptitude) $
*
122 APT_CONFIG
=aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} $(which gdb) ${BUILDDIRECTORY}/$1 --args $
*
125 LD_LIBRARY_PATH
=${BUILDDIRECTORY} ${BUILDDIRECTORY}/methods
/http
129 # error if we about to overflow, but ...
130 # "255 failures ought to be enough for everybody"
131 if [ $EXIT_CODE -gt 255 ]; then
132 msgdie
"Total failure count $EXIT_CODE too big"
134 exit $((EXIT_CODE <= 255 ? EXIT_CODE : 255));
137 shellsetedetector
() {
139 if [ "$exit_status" != '0' ]; then
140 echo >&2 "${CERROR}E: Looks like the testcases ended prematurely with exitcode: ${exit_status}${CNORMAL}"
141 if [ "$EXIT_CODE" = '0' ]; then
142 EXIT_CODE
="$exit_status"
148 if [ "$1" = 'prefix' ]; then
149 CURRENTTRAP
="$2 $CURRENTTRAP"
151 CURRENTTRAP
="$CURRENTTRAP $1"
153 trap "shellsetedetector; $CURRENTTRAP exitwithstatus;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
157 TMPWORKINGDIRECTORY
=$(mktemp -d)
158 TESTDIRECTORY
=$(readlink -f $(dirname $0))
159 msgninfo
"Preparing environment for ${CCMD}$(basename $0)${CINFO} in ${TMPWORKINGDIRECTORY}… "
161 # allow overriding the default BUILDDIR location
162 BUILDDIRECTORY
=${APT_INTEGRATION_TESTS_BUILD_DIR:-"${TESTDIRECTORY}/../../build/bin"}
163 METHODSDIR
=${APT_INTEGRATION_TESTS_METHODS_DIR:-"${BUILDDIRECTORY}/methods"}
164 APTWEBSERVERBINDIR
=${APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR:-"${BUILDDIRECTORY}"}
165 test -x "${BUILDDIRECTORY}/apt-get" || msgdie
"You need to build tree first"
168 addtrap
"cd /; rm -rf $TMPWORKINGDIRECTORY;"
169 cd $TMPWORKINGDIRECTORY
170 mkdir rootdir aptarchive keys
172 mkdir -p etc
/apt
/apt.conf.d etc
/apt
/sources.list.d etc
/apt
/trusted.gpg.d etc
/apt
/preferences.d
173 mkdir -p var
/cache var
/lib var
/log
174 mkdir -p var
/lib
/dpkg
/info var
/lib
/dpkg
/updates var
/lib
/dpkg
/triggers
175 touch var
/lib
/dpkg
/available
177 ln -s ${BUILDDIRECTORY}/methods usr
/lib
/apt
/methods
179 local PACKAGESFILE
=$(echo "$(basename $0)" | sed -e 's/^test-/Packages-/' -e 's/^skip-/Packages-/')
180 if [ -f "${TESTDIRECTORY}/${PACKAGESFILE}" ]; then
181 cp "${TESTDIRECTORY}/${PACKAGESFILE}" aptarchive/Packages
183 local SOURCESSFILE=$(echo "$(basename $0)" | sed -e 's/^test-/Sources-/' -e 's/^skip-/Sources-/')
184 if [ -f "${TESTDIRECTORY}/${SOURCESSFILE}" ]; then
185 cp "${TESTDIRECTORY}/${SOURCESSFILE}" aptarchive
/Sources
187 cp $(find $TESTDIRECTORY -name '*.pub' -o -name '*.sec') keys
/
188 ln -s ${TMPWORKINGDIRECTORY}/keys
/joesixpack.pub rootdir
/etc
/apt
/trusted.gpg.d
/joesixpack.gpg
189 echo "Dir \"${TMPWORKINGDIRECTORY}/rootdir\";" > aptconfig.conf
190 echo "Dir::state::status \"${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg/status\";" >> aptconfig.conf
191 echo "Debug::NoLocking \"true\";" >> aptconfig.conf
192 echo "APT::Get::Show-User-Simulation-Note \"false\";" >> aptconfig.conf
193 echo "Dir::Bin::Methods \"${METHODSDIR}\";" >> aptconfig.conf
194 echo "Dir::Bin::dpkg \"fakeroot\";" >> aptconfig.conf
195 echo "DPKG::options:: \"dpkg\";" >> aptconfig.conf
196 echo "DPKG::options:: \"--root=${TMPWORKINGDIRECTORY}/rootdir\";" >> aptconfig.conf
197 echo "DPKG::options:: \"--force-not-root\";" >> aptconfig.conf
198 echo "DPKG::options:: \"--force-bad-path\";" >> aptconfig.conf
199 if ! $(which dpkg) --assert-multi-arch >/dev
/null
2>&1; then
200 echo "DPKG::options:: \"--force-architecture\";" >> aptconfig.conf
# Added to test multiarch before dpkg is ready for it…
202 echo "DPKG::options:: \"--log=${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log\";" >> aptconfig.conf
203 echo 'quiet::NoUpdate "true";' >> aptconfig.conf
204 echo "Acquire::https::CaInfo \"${TESTDIR}/apt.pem\";" > rootdir
/etc
/apt
/apt.conf.d
/99https
206 export PATH
="${PATH}:/usr/local/sbin:/usr/sbin:/sbin"
207 configcompression
'.' 'gz' #'bz2' 'lzma' 'xz'
212 if [ "$1" = "native" -o -z "$1" ]; then
213 eval `aptconfig shell ARCH APT::Architecture`
214 if [ -n "$ARCH" ]; then
217 dpkg
--print-architecture
225 echo "$(aptconfig dump | grep APT::Architecture | cut -d'"' -f 2 | sed '/^$/ d' | sort | uniq | tr '\n' ' ')"
228 configarchitecture
() {
230 echo "APT::Architecture \"$(getarchitecture $1)\";"
231 while [ -n "$1" ]; do
232 echo "APT::Architectures:: \"$(getarchitecture $1)\";"
235 } >rootdir
/etc
/apt
/apt.conf.d
/01multiarch.conf
240 if [ ! -e rootdir
/var
/lib
/dpkg
/status
]; then
241 local STATUSFILE
=$(echo "$(basename $0)" | sed -e 's/^test-/status-/' -e 's/^skip-/status-/')
242 if [ -f "${TESTDIRECTORY}/${STATUSFILE}" ]; then
243 cp "${TESTDIRECTORY}/${STATUSFILE}" rootdir/var/lib/dpkg/status
245 echo -n > rootdir/var/lib/dpkg/status
248 rm -f rootdir/etc/apt/apt.conf.d/00foreigndpkg
249 if $(which dpkg) --assert-multi-arch >/dev/null 2>&1; then
250 local ARCHS="$(getarchitectures)"
251 if echo "$ARCHS" | grep -E -q '[^ ]+ [^ ]+'; then
252 DPKGARCH="$(dpkg --print-architecture)"
253 for ARCH in ${ARCHS}; do
254 if [ "${ARCH}" != "${DPKGARCH}" ]; then
255 if ! dpkg --add-architecture ${ARCH} >/dev/null 2>&1; then
256 # old-style used e.g. in Ubuntu-P – and as it seems travis
257 echo "DPKG
::options
:: \"--foreign-architecture\";" >> rootdir/etc/apt/apt.conf.d/00foreigndpkg
258 echo "DPKG
::options
:: \"${ARCH}\";" >> rootdir/etc/apt/apt.conf.d/00foreigndpkg
262 if [ "0" = "$(dpkg -l dpkg 2> /dev/null | grep '^i' | wc -l)" ]; then
263 # dpkg doesn't really check the version as long as it is fully installed,
264 # but just to be sure we choose one above the required version
265 insertinstalledpackage 'dpkg' "all
" '1.16.2+fake'
271 configcompression() {
272 while [ -n "$1" ]; do
274 '.') echo ".
\t.
\tcat
";;
275 'gz') echo "gzip\tgz
\tgzip
";;
276 'bz2') echo "bzip2\tbz
2\tbzip
2";;
277 'lzma') echo "lzma
\tlzma
\txz
--format=lzma
";;
278 'xz') echo "xz
\txz
\txz
";;
279 *) echo "$1\t$1\t$1";;
282 done > ${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf
285 setupsimplenativepackage() {
289 local RELEASE="${4:-unstable}"
290 local DEPENDENCIES="$5"
291 local DESCRIPTION="${6:-"Description: an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
292 If you
find such a package installed on your system
,
293 something went horribly wrong
! They are autogenerated
294 und used only by testcases and surf no other propose…
"}"
296 local SECTION
="${7:-others}"
298 if [ "$SECTION" = "$(echo "$SECTION" | cut -d'/' -f 2)" ]; then
301 DISTSECTION
="$(echo "$SECTION" | cut -d'/' -f 1)"
303 local BUILDDIR
=incoming
/${NAME}-${VERSION}
304 mkdir -p ${BUILDDIR}/debian
/source
306 echo "* most suckless software product ever" > FEATURES
307 test -e debian
/copyright
|| echo "Copyleft by Joe Sixpack $(date +%Y)" > debian
/copyright
308 test -e debian
/changelog
|| echo "$NAME ($VERSION) $RELEASE; urgency=low
312 -- Joe Sixpack <joe@example.org> $(date -R)" > debian
/changelog
313 test -e debian
/control
|| echo "Source: $NAME
316 Maintainer: Joe Sixpack <joe@example.org>
317 Build-Depends: debhelper (>= 7)
318 Standards-Version: 3.9.1
320 Package: $NAME" > debian
/control
321 if [ "$ARCH" = 'all' ]; then
322 echo "Architecture: all" >> debian
/control
324 echo "Architecture: any" >> debian
/control
326 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> debian
/control
327 echo "Description: $DESCRIPTION" >> debian
/control
329 test -e debian
/compat
|| echo "7" > debian
/compat
330 test -e debian
/source
/format
|| echo "3.0 (native)" > debian
/source
/format
331 test -e debian
/rules
|| cp /usr
/share
/doc
/debhelper
/examples
/rules.tiny debian
/rules
335 buildsimplenativepackage
() {
339 local RELEASE
="${4:-unstable}"
340 local DEPENDENCIES
="$5"
341 local DESCRIPTION
="${6:-"Description: an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
342 If you find such a package installed on your system,
343 something went horribly wrong! They are autogenerated
344 und used only by testcases and surf no other propose…"}"
346 local SECTION="${7:-others}"
347 local PRIORITY="${8:-optional}"
350 if [ "$SECTION" = "$(echo "$SECTION" | cut -d'/' -f 2)" ]; then
353 DISTSECTION="$(echo "$SECTION" | cut -d'/' -f 1)"
355 local BUILDDIR=${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}
357 msgninfo "Build package
${NAME} in ${VERSION} for ${RELEASE} in ${DISTSECTION}…
"
358 mkdir -p $BUILDDIR/debian/source
359 echo "* most suckless software product ever
" > ${BUILDDIR}/FEATURES
361 echo '$NAME says \"Hello!\"'" > ${BUILDDIR}/${NAME}
363 echo "Copyleft by Joe Sixpack
$(date +%Y)" > ${BUILDDIR}/debian/copyright
364 echo "$NAME ($VERSION) $RELEASE; urgency
=low
368 -- Joe Sixpack
<joe@example.org
> $(date -R)" > ${BUILDDIR}/debian/changelog
372 Maintainer
: Joe Sixpack
<joe@example.org
>
373 Standards
-Version: 3.9.3" > ${BUILDDIR}/debian/control
374 local BUILDDEPS="$(echo "$DEPENDENCIES" | grep '^Build-')"
375 test -z "$BUILDDEPS" || echo "$BUILDDEPS" >> ${BUILDDIR}/debian/control
377 Package
: $NAME" >> ${BUILDDIR}/debian/control
379 if [ "$ARCH" = 'all' ]; then
380 echo "Architecture
: all
" >> ${BUILDDIR}/debian/control
382 echo "Architecture
: any
" >> ${BUILDDIR}/debian/control
384 local DEPS="$(echo "$DEPENDENCIES" | grep -v '^Build-')"
385 test -z "$DEPS" || echo "$DEPS" >> ${BUILDDIR}/debian/control
386 echo "Description
: $DESCRIPTION" >> ${BUILDDIR}/debian/control
388 echo '3.0 (native)' > ${BUILDDIR}/debian/source/format
389 (cd ${BUILDDIR}/..; dpkg-source -b ${NAME}-${VERSION} 2>&1) | sed -n 's#^dpkg-source: info: building [^ ]\+ in ##p' \
391 echo "pool
/${SRC}" >> ${BUILDDIR}/../${RELEASE}.${DISTSECTION}.srclist
392 # if expr match "${SRC}" '.*\.dsc' >/dev/null 2>&1; then
393 # gpg --yes --no-default-keyring --secret-keyring ./keys/joesixpack.sec \
394 # --keyring ./keys/joesixpack.pub --default-key 'Joe Sixpack' \
395 # --clearsign -o "${BUILDDIR}/..
/${SRC}.sign
" "${BUILDDIR}/..
/$SRC"
396 # mv "${BUILDDIR}/..
/${SRC}.sign
" "${BUILDDIR}/..
/$SRC"
400 for arch in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do
401 rm -rf ${BUILDDIR}/debian
/tmp
402 mkdir -p ${BUILDDIR}/debian
/tmp
/DEBIAN
${BUILDDIR}/debian
/tmp
/usr
/share
/doc
/${NAME} ${BUILDDIR}/debian
/tmp
/usr
/bin
403 cp ${BUILDDIR}/debian
/copyright
${BUILDDIR}/debian
/changelog
${BUILDDIR}/FEATURES
${BUILDDIR}/debian
/tmp
/usr
/share
/doc
/${NAME}
404 cp ${BUILDDIR}/${NAME} ${BUILDDIR}/debian
/tmp
/usr
/bin
/${NAME}-${arch}
405 if [ -n "$FILE_TREE" ]; then
406 cp -ar "$FILE_TREE" ${BUILDDIR}/debian
/tmp
409 (cd ${BUILDDIR}; dpkg
-gencontrol -DArchitecture=$arch)
410 (cd ${BUILDDIR}/debian
/tmp
; md5sum $(find usr/ -type f) > DEBIAN
/md5sums
)
411 dpkg
-deb --build ${BUILDDIR}/debian
/tmp
${BUILDDIR}/..
2> /dev
/null
> /dev
/null
412 echo "pool/${NAME}_${VERSION}_${arch}.deb" >> ${BUILDDIR}/..
/${RELEASE}.
${DISTSECTION}.pkglist
415 mkdir -p ${BUILDDIR}/..
/${NAME}_
${VERSION}
416 cp ${BUILDDIR}/debian
/changelog
${BUILDDIR}/..
/${NAME}_
${VERSION}/
417 cp ${BUILDDIR}/debian
/changelog
${BUILDDIR}/..
/${NAME}_
${VERSION}.changelog
426 local ARCH
=$(getarchitecture $4)
427 msgninfo
"Build package $(echo "$BUILDDIR" | grep -o '[^/]*$') for ${RELEASE} in ${SECTION}… "
429 if [ "$ARCH" = "all" ]; then
430 ARCH
="$(dpkg-architecture -qDEB_HOST_ARCH 2> /dev/null)"
432 local BUILT
="$(dpkg-buildpackage -uc -us -a$ARCH 2> /dev/null)"
433 local PKGS
="$( echo "$BUILT" | grep '^dpkg-deb: building package' | cut -d'/' -f 2 | sed -e "s#'\.##")"
434 local SRCS
="$( echo "$BUILT" | grep '^dpkg-source: info: building' | grep -o '[a-z0-9._+~-]*$')"
437 echo "pool/${PKG}" >> ${TMPWORKINGDIRECTORY}/incoming
/${RELEASE}.
${SECTION}.pkglist
440 echo "pool/${SRC}" >> ${TMPWORKINGDIRECTORY}/incoming
/${RELEASE}.
${SECTION}.srclist
446 if [ -d incoming
]; then
447 buildaptarchivefromincoming $
*
449 buildaptarchivefromfiles $
*
453 createaptftparchiveconfig
() {
454 local COMPRESSORS
="$(cut -d' ' -f 1 ${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf | tr '\n' ' ')"
455 COMPRESSORS
="${COMPRESSORS%* }"
456 local ARCHS
="$(find pool/ -name '*.deb' | grep -oE '_[a-z0-9-]+\.deb$' | sort | uniq | sed -e '/^_all.deb$/ d' -e 's#^_\([a-z0-9-]*\)\.deb$#\1#' | tr '\n' ' ')"
457 if [ -z "$ARCHS" ]; then
458 # the pool is empty, so we will operate on faked packages - let us use the configured archs
459 ARCHS
="$(getarchitectures)"
462 ArchiveDir "' >> ftparchive.conf
463 echo -n $(readlink -f .) >> ftparchive.conf
465 CacheDir "' >> ftparchive.conf
466 echo -n $(readlink -f ..) >> ftparchive.conf
468 FileListDir "' >> ftparchive.conf
469 echo -n $(readlink -f pool/) >> ftparchive.conf
473 Packages::Compress "'"$COMPRESSORS"'";
474 Sources::Compress "'"$COMPRESSORS"'";
475 Contents::Compress "'"$COMPRESSORS"'";
476 Translation::Compress "'"$COMPRESSORS"'";
477 LongDescription "false";
481 SrcDirectory "pool/";
487 Label "apttestcases";
489 Description "repository with dummy packages";
490 Architectures "' >> ftparchive.conf
491 echo -n "$ARCHS" >> ftparchive.conf
495 };' >> ftparchive.conf
496 for DIST
in $(find ./pool/ -maxdepth 1 -name '*.pkglist' -type f | cut -d'/' -f 3 | cut -d'.' -f 1 | sort | uniq); do
497 echo -n 'tree "dists/' >> ftparchive.conf
498 echo -n "$DIST" >> ftparchive.conf
500 Architectures "' >> ftparchive.conf
501 echo -n "$ARCHS" >> ftparchive.conf
503 FileList "' >> ftparchive.conf
504 echo -n "${DIST}.\$(SECTION).pkglist" >> ftparchive.conf
506 SourceFileList "' >> ftparchive.conf
507 echo -n "${DIST}.\$(SECTION).srclist" >> ftparchive.conf
509 Sections "' >> ftparchive.conf
510 echo -n "$(find ./pool/ -maxdepth 1 -name "${DIST}.*.pkglist" -type f | cut -d'/' -f 3 | cut -d'.' -f 2 | sort | uniq | tr '\n' ' ')" >> ftparchive.conf
512 };' >> ftparchive.conf
516 buildaptftparchivedirectorystructure
() {
517 local DISTS
="$(grep -i '^tree ' ftparchive.conf | cut -d'/' -f 2 | sed -e 's#".*##')"
518 for DIST
in $DISTS; do
519 local SECTIONS
="$(grep -i -A 5 "dists/$DIST" ftparchive.conf | grep -i 'Sections' | cut -d'"' -f 2)"
520 for SECTION
in $SECTIONS; do
521 local ARCHS
="$(grep -A 5 "dists/$DIST" ftparchive.conf | grep Architectures | cut -d'"' -f 2 | sed -e 's#source##')"
522 for ARCH
in $ARCHS; do
523 mkdir -p dists
/${DIST}/${SECTION}/binary
-${ARCH}
525 mkdir -p dists
/${DIST}/${SECTION}/source
526 mkdir -p dists
/${DIST}/${SECTION}/i18n
536 local DEPENDENCIES
="$5"
537 local PRIORITY
="${6:-optional}"
538 local DESCRIPTION
="${7:-"Description: an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
539 If you find such a package installed on your system,
540 something went horribly wrong! They are autogenerated
541 und used only by testcases and surf no other propose…"}"
543 for arch in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do
544 if [ "$arch" = 'all' -o "$arch" = 'none' ]; then
545 ARCHS
="$(getarchitectures)"
549 for BUILDARCH
in $ARCHS; do
550 local PPATH
="aptarchive/dists/${RELEASE}/main/binary-${BUILDARCH}"
551 mkdir -p $PPATH aptarchive
/dists
/${RELEASE}/main
/source
552 touch aptarchive
/dists
/${RELEASE}/main
/source
/Sources
553 local FILE
="${PPATH}/Packages"
558 Maintainer: Joe Sixpack <joe@example.org>" >> $FILE
559 test "$arch" = 'none' || echo "Architecture: $arch" >> $FILE
560 echo "Version: $VERSION
561 Filename: pool/main/${NAME}/${NAME}_${VERSION}_${arch}.deb" >> $FILE
562 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> $FILE
563 echo "Description: $DESCRIPTION" >> $FILE
574 local DEPENDENCIES
="$5"
576 local SPATH
="aptarchive/dists/${RELEASE}/main/source"
578 local FILE
="${SPATH}/Sources"
582 Maintainer: Joe Sixpack <joe@example.org>
583 Architecture: $ARCH" >> $FILE
584 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> $FILE
586 d41d8cd98f00b204e9800998ecf8427e 0 ${NAME}_${VERSION}.dsc
587 d41d8cd98f00b204e9800998ecf8427e 0 ${NAME}_${VERSION}.tar.gz
591 insertinstalledpackage
() {
595 local DEPENDENCIES
="$4"
596 local PRIORITY
="${5:-optional}"
597 local STATUS
="${6:-install ok installed}"
598 local DESCRIPTION
="${7:-"Description: an autogenerated dummy ${NAME}=${VERSION}/installed
599 If you find such a package installed on your system,
600 something went horribly wrong! They are autogenerated
601 und used only by testcases and surf no other propose…"}"
603 local FILE='rootdir/var/lib/dpkg/status'
604 local INFO='rootdir/var/lib/dpkg/info'
605 for arch in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do
611 Maintainer: Joe Sixpack <joe@example.org>
612 Version: $VERSION" >> $FILE
613 test "$arch" = 'none' || echo "Architecture: $arch" >> $FILE
614 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> $FILE
615 echo "Description: $DESCRIPTION" >> $FILE
617 if [ "$(dpkg-query -W --showformat='${Multi-Arch}')" = 'same' ]; then
618 echo -n > ${INFO}/${NAME}:${arch}.list
620 echo -n > ${INFO}/${NAME}.list
626 buildaptarchivefromincoming
() {
627 msginfo
"Build APT archive for ${CCMD}$(basename $0)${CINFO} based on incoming packages…"
629 [ -e pool
] || ln -s ..
/incoming pool
630 [ -e ftparchive.conf
] || createaptftparchiveconfig
631 [ -e dists
] || buildaptftparchivedirectorystructure
632 msgninfo
"\tGenerate Packages, Sources and Contents files… "
633 aptftparchive
-qq generate ftparchive.conf
639 buildaptarchivefromfiles
() {
640 msginfo
"Build APT archive for ${CCMD}$(basename $0)${CINFO} based on prebuild files…"
641 find aptarchive
-name 'Packages' -o -name 'Sources' | while read line
; do
642 msgninfo
"\t${line} file… "
643 compressfile
"$line" "$1"
646 generatereleasefiles
"$@"
650 cat ${TMPWORKINGDIRECTORY}/rootdir
/etc
/testcase
-compressor.conf
| while read compressor extension
command; do
651 if [ "$compressor" = '.' ]; then
657 cat "$1" | $command > "${1}.${extension}"
659 touch -d "$2" "${1}.${extension}"
664 # can be overridden by testcases for their pleasure
665 getcodenamefromsuite
() { echo -n "$1"; }
666 getreleaseversionfromsuite
() { true
; }
667 getlabelfromsuite
() { true
; }
669 generatereleasefiles
() {
670 # $1 is the Date header and $2 is the ValidUntil header to be set
671 # both should be given in notation date/touch can understand
672 msgninfo
"\tGenerate Release files… "
673 if [ -e aptarchive
/dists
]; then
674 for dir
in $(find ./aptarchive/dists -mindepth 1 -maxdepth 1 -type d); do
675 local SUITE
="$(echo "$dir" | cut -d'/' -f 4)"
676 local CODENAME
="$(getcodenamefromsuite $SUITE)"
677 local VERSION
="$(getreleaseversionfromsuite $SUITE)"
678 local LABEL
="$(getlabelfromsuite $SUITE)"
679 if [ -n "$VERSION" ]; then
680 VERSION
="-o APT::FTPArchive::Release::Version=${VERSION}"
682 if [ -n "$LABEL" ]; then
683 LABEL
="-o APT::FTPArchive::Release::Label=${LABEL}"
685 aptftparchive
-qq release
$dir \
686 -o APT
::FTPArchive
::Release
::Suite
="${SUITE}" \
687 -o APT
::FTPArchive
::Release
::Codename
="${CODENAME}" \
690 | sed -e '/0 Release$/ d' > $dir/Release
# remove the self reference
691 if [ "$SUITE" = "experimental" -o "$SUITE" = "experimental2" ]; then
693 NotAutomatic: yes' $dir/Release
695 if [ -n "$1" -a "$1" != "now" ]; then
696 sed -i "s/^Date: .*$/Date: $(date -d "$1" '+%a, %d %b %Y %H:%M:%S %Z')/" $dir/Release
700 Valid-Until: $(date -d "$2" '+%a, %d %b %Y %H:%M:%S %Z')" $dir/Release
704 aptftparchive
-qq release .
/aptarchive
| sed -e '/0 Release$/ d' > aptarchive
/Release
# remove the self reference
706 if [ -n "$1" -a "$1" != "now" ]; then
707 for release
in $(find ./aptarchive -name 'Release'); do
708 touch -d "$1" $release
714 setupdistsaptarchive
() {
715 local APTARCHIVE
=$(readlink -f ./aptarchive)
716 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb.list
717 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb-src.list
718 for DISTS
in $(find ./aptarchive/dists/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 4); do
719 SECTIONS
=$(find ./aptarchive/dists/${DISTS}/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 5 | tr '\n' ' ')
720 msgninfo
"\tadd deb and deb-src sources.list lines for ${CCMD}${DISTS} ${SECTIONS}${CINFO}… "
721 echo "deb file://$APTARCHIVE $DISTS $SECTIONS" > rootdir
/etc
/apt
/sources.list.d
/apt
-test-${DISTS}-deb.list
722 echo "deb-src file://$APTARCHIVE $DISTS $SECTIONS" > rootdir
/etc
/apt
/sources.list.d
/apt
-test-${DISTS}-deb-src.list
727 setupflataptarchive
() {
728 local APTARCHIVE
=$(readlink -f ./aptarchive)
729 if [ -f ${APTARCHIVE}/Packages
]; then
730 msgninfo
"\tadd deb sources.list line… "
731 echo "deb file://$APTARCHIVE /" > rootdir
/etc
/apt
/sources.list.d
/apt
-test-archive-deb.list
734 rm -f rootdir
/etc
/apt
/sources.list.d
/apt
-test-archive-deb.list
736 if [ -f ${APTARCHIVE}/Sources
]; then
737 msgninfo
"\tadd deb-src sources.list line… "
738 echo "deb-src file://$APTARCHIVE /" > rootdir
/etc
/apt
/sources.list.d
/apt
-test-archive-deb-src.list
741 rm -f rootdir
/etc
/apt
/sources.list.d
/apt
-test-archive-deb-src.list
747 if [ -e aptarchive
/dists
]; then
753 if [ "$1" != '--no-update' ]; then
754 msgninfo
"\tSync APT's cache with the archive… "
761 local SIGNER
="${1:-Joe Sixpack}"
762 local GPG
="gpg --batch --yes --no-default-keyring --trustdb-name rootdir/etc/apt/trustdb.gpg"
763 msgninfo
"\tSign archive with $SIGNER key… "
764 local REXKEY
='keys/rexexpired'
765 local SECEXPIREBAK
="${REXKEY}.sec.bak"
766 local PUBEXPIREBAK
="${REXKEY}.pub.bak"
767 if [ "${SIGNER}" = 'Rex Expired' ]; then
768 # the key is expired, so gpg doesn't allow to sign with and the --faked-system-time
769 # option doesn't exist anymore (and using faketime would add a new obscure dependency)
770 # therefore we 'temporary' make the key not expired and restore a backup after signing
771 cp ${REXKEY}.sec
$SECEXPIREBAK
772 cp ${REXKEY}.pub
$PUBEXPIREBAK
773 local SECUNEXPIRED
="${REXKEY}.sec.unexpired"
774 local PUBUNEXPIRED
="${REXKEY}.pub.unexpired"
775 if [ -f "$SECUNEXPIRED" ] && [ -f "$PUBUNEXPIRED" ]; then
776 cp $SECUNEXPIRED ${REXKEY}.sec
777 cp $PUBUNEXPIRED ${REXKEY}.pub
779 printf "expire\n1w\nsave\n" | $GPG --keyring ${REXKEY}.pub
--secret-keyring ${REXKEY}.sec
--command-fd 0 --edit-key "${SIGNER}" >/dev
/null
2>&1 || true
780 cp ${REXKEY}.sec
$SECUNEXPIRED
781 cp ${REXKEY}.pub
$PUBUNEXPIRED
784 for KEY
in $(find keys/ -name '*.sec'); do
785 GPG
="$GPG --secret-keyring $KEY"
787 for KEY
in $(find keys/ -name '*.pub'); do
788 GPG
="$GPG --keyring $KEY"
790 for RELEASE
in $(find aptarchive/ -name Release); do
791 $GPG --default-key "$SIGNER" --armor --detach-sign --sign --output ${RELEASE}.gpg
${RELEASE}
792 local INRELEASE
="$(echo "${RELEASE}" | sed 's#/Release$#/InRelease#')"
793 $GPG --default-key "$SIGNER" --clearsign --output $INRELEASE $RELEASE
794 # we might have set a specific date for the Release file, so copy it
795 touch -d "$(stat --format "%y" ${RELEASE})" ${RELEASE}.gpg
${INRELEASE}
797 if [ -f "$SECEXPIREBAK" ] && [ -f "$PUBEXPIREBAK" ]; then
798 mv -f $SECEXPIREBAK ${REXKEY}.sec
799 mv -f $PUBEXPIREBAK ${REXKEY}.pub
805 msgtest
"Set webserver config option '${1}' to" "$2"
806 downloadfile
"http://localhost:8080/_config/set/${1}/${2}" '/dev/null' >/dev
/null
807 local DOWNLOG
='download-testfile.log'
809 local STATUS
="$(mktemp)"
810 addtrap
"rm $STATUS;"
811 downloadfile
"http://localhost:8080/_config/find/aptwebserver::last-status-code" "$STATUS" > "$DOWNLOG"
812 if [ "$(cat "$STATUS")" = '200' ]; then
816 msgfail
"Statuscode was $(cat "$STATUS")"
820 rewritesourceslist
() {
821 local APTARCHIVE
="file://$(readlink -f "${TMPWORKINGDIRECTORY}/aptarchive")"
822 for LIST
in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
823 sed -i $LIST -e "s#$APTARCHIVE#${1}#" -e "s#http://localhost:8080/#${1}#" -e "s#http://localhost:4433/#${1}#"
827 changetowebserver
() {
828 if [ "$1" != '--no-rewrite' ]; then
829 rewritesourceslist
'http://localhost:8080/'
833 local LOG
='/dev/null'
834 if test -x ${APTWEBSERVERBINDIR}/aptwebserver
; then
836 aptwebserver
-o aptwebserver
::fork
=1 "$@" >$LOG 2>&1
837 local PID
="$(cat aptwebserver.pid)"
838 if [ -z "$PID" ]; then
839 msgdie
'Could not fork aptwebserver successfully'
844 msgdie
'You have to build aptwerbserver or install a webserver'
848 changetohttpswebserver
() {
849 if ! which stunnel4
>/dev
/null
; then
850 msgdie
'You need to install stunnel4 for https testcases'
852 if [ ! -e "${TMPWORKINGDIRECTORY}/aptarchive/aptwebserver.pid" ]; then
853 changetowebserver
--no-rewrite
855 echo "pid = ${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid
856 cert = ${TESTDIRECTORY}/apt.pem
862 " > ${TMPWORKINGDIRECTORY}/stunnel.conf
863 stunnel4
"${TMPWORKINGDIRECTORY}/stunnel.conf"
864 local PID
="$(cat ${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid)"
865 addtrap
'prefix' "kill ${PID};"
866 rewritesourceslist
'https://localhost:4433/'
870 mkdir -p rootdir
/media
/cdrom
/.disk
871 local CD
="$(readlink -f rootdir/media/cdrom)"
872 echo "acquire::cdrom::mount \"${CD}\";" > rootdir
/etc
/apt
/apt.conf.d
/00cdrom
873 echo 'acquire::cdrom::autodetect 0;' >> rootdir
/etc
/apt
/apt.conf.d
/00cdrom
874 echo -n "$1" > ${CD}/.disk
/info
875 if [ ! -d aptarchive
/dists
]; then
876 msgdie
'Flat file archive cdroms can not be created currently'
879 mv aptarchive
/dists
$CD
880 ln -s "$(readlink -f ./incoming)" $CD/pool
881 find rootdir
/etc
/apt
/sources.list.d
/ -name 'apt-test-*.list' -delete
885 PROTO
="$(echo "$1" | cut -d':' -f 1)"
886 local DOWNLOG
="${TMPWORKINGDIRECTORY}/download.log"
890 echo "601 Configuration
891 Config-Item: Acquire::https::CaInfo=${TESTDIR}/apt.pem
892 Config-Item: Debug::Acquire::${PROTO}=1
898 # simple worker keeping stdin open until we are done (201) or error (400)
899 # and requesting new URIs on try-agains/redirects inbetween
900 { tail -n 999 -f "$DOWNLOG" & echo "TAILPID: $!"; } | while read f1 f2
; do
901 if [ "$f1" = 'TAILPID:' ]; then
903 elif [ "$f1" = 'New-URI:' ]; then
904 echo "600 Acquire URI
908 elif [ "$f1" = '201' ] || [ "$f1" = '400' ]; then
909 # tail would only die on next read – which never happens
910 test -z "$TAILPID" || kill -s HUP
"$TAILPID"
914 } | LD_LIBRARY_PATH
=${BUILDDIRECTORY} ${BUILDDIRECTORY}/methods
/${PROTO} 2>&1 | tee "$DOWNLOG"
916 # only if the file exists the download was successful
925 local DIFFTEXT
="$($(which diff) -u $* | sed -e '/^---/ d' -e '/^+++/ d' -e '/^@@/ d')"
926 if [ -n "$DIFFTEXT" ]; then
938 msgtest
"Test for correctness of file" "$FILE"
940 echo -n "" | checkdiff
$FILE - && msgpass
|| msgfail
942 echo "$*" | checkdiff
$FILE - && msgpass
|| msgfail
947 msgtest
"Test for no output of" "$*"
948 test -z "$($* 2>&1)" && msgpass
|| msgfail
952 local COMPAREFILE
=$(mktemp)
953 addtrap
"rm $COMPAREFILE;"
954 echo "$1" > $COMPAREFILE
956 msgtest
"Test for equality of" "$*"
957 $
* 2>&1 | checkdiff
$COMPAREFILE - && msgpass
|| msgfail
961 local COMPAREFILE1
=$(mktemp)
962 local COMPAREFILE2
=$(mktemp)
963 local COMPAREAGAINST
=$(mktemp)
964 addtrap
"rm $COMPAREFILE1 $COMPAREFILE2 $COMPAREAGAINST;"
965 echo "$1" > $COMPAREFILE1
966 echo "$2" > $COMPAREFILE2
968 msgtest
"Test for equality OR of" "$*"
969 $
* >$COMPAREAGAINST 2>&1 || true
970 (checkdiff
$COMPAREFILE1 $COMPAREAGAINST 1> /dev
/null
||
971 checkdiff
$COMPAREFILE2 $COMPAREAGAINST 1> /dev
/null
) && msgpass
||
972 ( echo "\n${CINFO}Diff against OR 1${CNORMAL}" "$(checkdiff $COMPAREFILE1 $COMPAREAGAINST)" \
973 "\n${CINFO}Diff against OR 2${CNORMAL}" "$(checkdiff $COMPAREFILE2 $COMPAREAGAINST)" &&
978 local VIRTUAL
="N: Can't select versions from package '$1' as it is purely virtual"
981 while [ -n "$1" ]; do
983 N: Can't select versions from package '$1' as it is purely virtual"
984 PACKAGE
="${PACKAGE} $1"
987 msgtest
"Test for virtual packages" "apt-cache show $PACKAGE"
989 N: No packages found"
990 local COMPAREFILE
=$(mktemp)
991 addtrap
"rm $COMPAREFILE;"
992 local ARCH
="$(getarchitecture 'native')"
993 echo "$VIRTUAL" | sed -e "s/:$ARCH//" -e 's/:all//' > $COMPAREFILE
994 aptcache show
-q=0 $PACKAGE 2>&1 | checkdiff
$COMPAREFILE - && msgpass
|| msgfail
998 msgtest
"Test for non-existent packages" "apt-cache show $*"
999 local SHOWPKG
="$(aptcache show $* 2>&1 | grep '^Package: ')"
1000 if [ -n "$SHOWPKG" ]; then
1009 testdpkginstalled
() {
1010 msgtest
"Test for correctly installed package(s) with" "dpkg -l $*"
1011 local PKGS
="$(dpkg -l $* 2>/dev/null | grep '^i' | wc -l)"
1012 if [ "$PKGS" != $# ]; then
1014 dpkg
-l $
* | grep '^[a-z]'
1021 testdpkgnotinstalled
() {
1022 msgtest
"Test for correctly not-installed package(s) with" "dpkg -l $*"
1023 local PKGS
="$(dpkg -l $* 2> /dev/null | grep '^i' | wc -l)"
1024 if [ "$PKGS" != 0 ]; then
1026 dpkg
-l $
* | grep '^[a-z]'
1034 local COMPAREFILE
=$(mktemp)
1035 addtrap
"rm $COMPAREFILE;"
1036 if [ -n "$1" ]; then
1037 msgtest
'Test for correctly marked as auto-installed' "$*"
1038 while [ -n "$1" ]; do echo "$1"; shift; done | sort > $COMPAREFILE
1040 msgtest
'Test for correctly marked as auto-installed' 'no package'
1041 echo -n > $COMPAREFILE
1043 aptmark showauto
2>&1 | checkdiff
$COMPAREFILE - && msgpass
|| msgfail
1047 if [ "$1" = '--nomsg' ]; then
1050 msgtest
'Test for successful execution of' "$*"
1052 local OUTPUT
=$(mktemp)
1053 addtrap
"rm $OUTPUT;"
1054 if $@
>${OUTPUT} 2>&1; then
1064 if [ "$1" = '--nomsg' ]; then
1067 msgtest
'Test for failure in execution of' "$*"
1069 local OUTPUT
=$(mktemp)
1070 addtrap
"rm $OUTPUT;"
1071 if $@
>${OUTPUT} 2>&1; then
1081 echo "STOPPED execution. Press enter to continue"