]> git.saurik.com Git - apt.git/blame - test/integration/framework
show dependencies of essential packages which are going to remove
[apt.git] / test / integration / framework
CommitLineData
8d876415
DK
1#!/bin/sh -- # no runable script, just for vi
2
3# we all like colorful messages
4CERROR="\e[1;31m" # red
5CWARNING="\e[1;33m" # yellow
6CMSG="\e[1;32m" # green
7CINFO="\e[1;96m" # light blue
8CDEBUG="\e[1;94m" # blue
9CNORMAL="\e[0;39m" # default system console color
10CDONE="\e[1;32m" # green
11CPASS="\e[1;32m" # green
12CFAIL="\e[1;31m" # red
13CCMD="\e[1;35m" # pink
14
15msgdie() { echo "${CERROR}E: $1${CNORMAL}" >&2; exit 1; }
16msgwarn() { echo "${CWARNING}W: $1${CNORMAL}" >&2; }
17msgmsg() { echo "${CMSG}$1${CNORMAL}" >&2; }
18msginfo() { echo "${CINFO}I: $1${CNORMAL}" >&2; }
19msgdebug() { echo "${CDEBUG}D: $1${CNORMAL}" >&2; }
20msgdone() { echo "${CDONE}DONE${CNORMAL}" >&2; }
21msgnwarn() { echo -n "${CWARNING}W: $1${CNORMAL}" >&2; }
22msgnmsg() { echo -n "${CMSG}$1${CNORMAL}" >&2; }
23msgninfo() { echo -n "${CINFO}I: $1${CNORMAL}" >&2; }
24msgndebug() { echo -n "${CDEBUG}D: $1${CNORMAL}" >&2; }
25msgtest() { echo -n "${CINFO}$1 ${CCMD}$(echo "$2" | sed -e 's/^aptc/apt-c/' -e 's/^aptg/apt-g/' -e 's/^aptf/apt-f/')${CINFO} …${CNORMAL} " >&2; }
26msgpass() { echo "${CPASS}PASS${CNORMAL}" >&2; }
27msgskip() { echo "${CWARNING}SKIP${CNORMAL}" >&2; }
28msgfail() { echo "${CFAIL}FAIL${CNORMAL}" >&2; }
29
30# enable / disable Debugging
fc89263e
DK
31MSGLEVEL=${MSGLEVEL:-3}
32if [ $MSGLEVEL -le 0 ]; then
33 msgdie() { true; }
34fi
35if [ $MSGLEVEL -le 1 ]; then
36 msgwarn() { true; }
37 msgnwarn() { true; }
38fi
39if [ $MSGLEVEL -le 2 ]; then
40 msgmsg() { true; }
41 msgnmsg() { true; }
42fi
43if [ $MSGLEVEL -le 3 ]; then
44 msginfo() { true; }
45 msgninfo() { true; }
46fi
47if [ $MSGLEVEL -le 4 ]; then
48 msgdebug() { true; }
49 msgndebug() { true; }
50fi
51msgdone() {
52 if [ "$1" = "debug" -a $MSGLEVEL -le 4 ] ||
53 [ "$1" = "info" -a $MSGLEVEL -le 3 ] ||
54 [ "$1" = "msg" -a $MSGLEVEL -le 2 ] ||
55 [ "$1" = "warn" -a $MSGLEVEL -le 1 ] ||
56 [ "$1" = "die" -a $MSGLEVEL -le 0 ]; then
57 true;
58 else
59 echo "${CDONE}DONE${CNORMAL}" >&2;
60 fi
61}
8d876415
DK
62
63runapt() {
64 msgdebug "Executing: ${CCMD}$*${CDEBUG} "
7d0627b6
DK
65 if [ -f ./aptconfig.conf ]; then
66 APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$*
4b2a4ab8
MV
67 elif [ -f ../aptconfig.conf ]; then
68 APT_CONFIG=../aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$*
7d0627b6
DK
69 else
70 LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$*
71 fi
8d876415
DK
72}
73aptconfig() { runapt apt-config $*; }
74aptcache() { runapt apt-cache $*; }
75aptget() { runapt apt-get $*; }
76aptftparchive() { runapt apt-ftparchive $*; }
1f8b2599 77aptkey() { runapt apt-key $*; }
158fda31
DK
78dpkg() {
79 $(which dpkg) --root=${TMPWORKINGDIRECTORY}/rootdir --force-not-root --force-bad-path --log=${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log $*
80}
8d876415
DK
81
82setupenvironment() {
75954ae2 83 TMPWORKINGDIRECTORY=$(mktemp -d)
8f8169ac 84 local TESTDIR=$(readlink -f $(dirname $0))
3cbbda3c 85 msgninfo "Preparing environment for ${CCMD}$(basename $0)${CINFO} in ${TMPWORKINGDIRECTORY}… "
8f8169ac 86 BUILDDIRECTORY="${TESTDIR}/../../build/bin"
8d876415
DK
87 test -x "${BUILDDIRECTORY}/apt-get" || msgdie "You need to build tree first"
88 local OLDWORKINGDIRECTORY=$(pwd)
f213b6ea
DK
89 CURRENTTRAP="cd /; rm -rf $TMPWORKINGDIRECTORY; cd $OLDWORKINGDIRECTORY"
90 trap "$CURRENTTRAP" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
8d876415 91 cd $TMPWORKINGDIRECTORY
cd725954 92 mkdir rootdir aptarchive keys
8d876415 93 cd rootdir
b29c3712
DK
94 mkdir -p etc/apt/apt.conf.d etc/apt/sources.list.d etc/apt/trusted.gpg.d etc/apt/preferences.d
95 mkdir -p var/cache var/lib var/log
cffea9af 96 mkdir -p var/lib/dpkg/info var/lib/dpkg/updates var/lib/dpkg/triggers
2c6baa5a 97 local STATUSFILE=$(echo "$(basename $0)" | sed -e 's/^test-/status-/' -e 's/^skip-/status-/')
8f8169ac
DK
98 if [ -f "${TESTDIR}/${STATUSFILE}" ]; then
99 cp "${TESTDIR}/${STATUSFILE}" var/lib/dpkg/status
100 else
101 touch var/lib/dpkg/status
102 fi
cd725954 103 touch var/lib/dpkg/available
8d876415
DK
104 mkdir -p usr/lib/apt
105 ln -s ${BUILDDIRECTORY}/methods usr/lib/apt/methods
106 cd ..
2c6baa5a 107 local PACKAGESFILE=$(echo "$(basename $0)" | sed -e 's/^test-/Packages-/' -e 's/^skip-/Packages-/')
8f8169ac
DK
108 if [ -f "${TESTDIR}/${PACKAGESFILE}" ]; then
109 cp "${TESTDIR}/${PACKAGESFILE}" aptarchive/Packages
110 else
4bec02c2 111 touch aptarchive/Packages
8f8169ac 112 fi
cd725954
DK
113 cp $(find $TESTDIR -name '*.pub' -o -name '*.sec') keys/
114 ln -s ${TMPWORKINGDIRECTORY}/keys/joesixpack.pub rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg
cffea9af 115 echo "Dir \"${TMPWORKINGDIRECTORY}/rootdir\";" > aptconfig.conf
94eb3bee 116 echo "Dir::state::status \"${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg/status\";" >> aptconfig.conf
8d876415
DK
117 echo "Debug::NoLocking \"true\";" >> aptconfig.conf
118 echo "APT::Get::Show-User-Simulation-Note \"false\";" >> aptconfig.conf
f425d4d5 119 echo "Dir::Bin::Methods \"${BUILDDIRECTORY}/methods\";" >> aptconfig.conf
cffea9af
DK
120 echo "Dir::Bin::dpkg \"fakeroot\";" >> aptconfig.conf
121 echo "DPKG::options:: \"dpkg\";" >> aptconfig.conf
122 echo "DPKG::options:: \"--root=${TMPWORKINGDIRECTORY}/rootdir\";" >> aptconfig.conf
123 echo "DPKG::options:: \"--force-not-root\";" >> aptconfig.conf
124 echo "DPKG::options:: \"--force-bad-path\";" >> aptconfig.conf
125 echo "DPKG::options:: \"--log=${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log\";" >> aptconfig.conf
8d876415
DK
126 export LC_ALL=C
127 msgdone "info"
128}
129
130configarchitecture() {
131 local CONFFILE=rootdir/etc/apt/apt.conf.d/01multiarch.conf
132 echo "APT::Architecture \"$1\";" > $CONFFILE
133 shift
134 while [ -n "$1" ]; do
135 echo "APT::Architectures:: \"$1\";" >> $CONFFILE
136 shift
137 done
138}
139
75954ae2 140setupsimplenativepackage() {
ce9864a8
DK
141 local NAME="$1"
142 local ARCH="$2"
143 local VERSION="$3"
144 local RELEASE="${4:-unstable}"
145 local DEPENDENCIES="$5"
146 local DESCRIPTION="$6"
b7899b00
DK
147 local SECTION="${7:-others}"
148 local DISTSECTION
149 if [ "$SECTION" = "$(echo "$SECTION" | cut -d'/' -f 2)" ]; then
150 DISTSECTION="main"
151 else
152 DISTSECTION="$(echo "$SECTION" | cut -d'/' -f 1)"
153 fi
ce9864a8
DK
154 local BUILDDIR=incoming/${NAME}-${VERSION}
155 mkdir -p ${BUILDDIR}/debian/source
156 cd ${BUILDDIR}
157 echo "* most suckless software product ever" > FEATURES
b7899b00
DK
158 test -e debian/copyright || echo "Copyleft by Joe Sixpack $(date +%Y)" > debian/copyright
159 test -e debian/changelog || echo "$NAME ($VERSION) $RELEASE; urgency=low
ce9864a8
DK
160
161 * Initial release
162
b7899b00
DK
163 -- Joe Sixpack <joe@example.org> $(date -R)" > debian/changelog
164 test -e debian/control || echo "Source: $NAME
165Section: $SECTION
ce9864a8
DK
166Priority: optional
167Maintainer: Joe Sixpack <joe@example.org>
168Build-Depends: debhelper (>= 7)
169Standards-Version: 3.9.1
170
171Package: $NAME
b7899b00 172Architecture: $ARCH" > debian/control
ce9864a8
DK
173 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> debian/control
174 if [ -z "$DESCRIPTION" ]; then
175 echo "Description: an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
176 If you find such a package installed on your system,
177 YOU did something horribly wrong! They are autogenerated
178 und used only by testcases for APT and surf no other propose…" >> debian/control
179 else
180 echo "Description: $DESCRIPTION" >> debian/control
181 fi
b7899b00
DK
182 test -e debian/compat || echo "7" > debian/compat
183 test -e debian/source/format || echo "3.0 (native)" > debian/source/format
ce9864a8 184 test -e debian/rules || cp /usr/share/doc/debhelper/examples/rules.tiny debian/rules
75954ae2
DK
185 cd - > /dev/null
186}
187
188buildsimplenativepackage() {
189 local NAME="$1"
190 local ARCH="$2"
191 local VERSION="$3"
192 local RELEASE="${4:-unstable}"
193 local DEPENDENCIES="$5"
194 local DESCRIPTION="$6"
195 local SECTION="${7:-others}"
196 local DISTSECTION
197 if [ "$SECTION" = "$(echo "$SECTION" | cut -d'/' -f 2)" ]; then
198 DISTSECTION="main"
199 else
200 DISTSECTION="$(echo "$SECTION" | cut -d'/' -f 1)"
201 fi
202 setupsimplenativepackage "$NAME" "$ARCH" "$VERSION" "$RELEASE" "$DEPENDENCIES" "$DESCRIPTION" "$SECTION"
203 buildpackage "incoming/${NAME}-${VERSION}" "$RELEASE" "$DISTSECTION"
204 rm -rf "incoming/${NAME}-${VERSION}"
205}
206
207buildpackage() {
208 local BUILDDIR=$1
209 local RELEASE=$2
210 local SECTION=$3
211 msgninfo "Build package $(echo "$BUILDDIR" | grep -o '[^/]*$') for ${RELEASE} in ${SECTION}… "
212 cd $BUILDDIR
213 if [ "$ARCH" = "all" ]; then
214 ARCH="$(dpkg-architecture -qDEB_HOST_ARCH 2> /dev/null)"
215 fi
b7899b00
DK
216 local BUILT="$(dpkg-buildpackage -uc -us -a$ARCH 2> /dev/null)"
217 local PKGS="$( echo "$BUILT" | grep '^dpkg-deb: building package' | cut -d'/' -f 2 | sed -e "s#'\.##")"
5ed56f93 218 local SRCS="$( echo "$BUILT" | grep '^dpkg-source: info: building' | grep -o '[a-z0-9._+~-]*$')"
ce9864a8 219 cd - > /dev/null
b7899b00 220 for PKG in $PKGS; do
75954ae2 221 echo "pool/${PKG}" >> ${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.pkglist
b7899b00
DK
222 done
223 for SRC in $SRCS; do
75954ae2 224 echo "pool/${SRC}" >> ${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.srclist
b7899b00 225 done
cffea9af 226 msgdone "info"
ce9864a8
DK
227}
228
229buildaptarchive() {
ce9864a8
DK
230 if [ -d incoming ]; then
231 buildaptarchivefromincoming $*
232 else
233 buildaptarchivefromfiles $*
234 fi
235}
236
237createaptftparchiveconfig() {
238 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' ' ')"
158fda31
DK
239 if [ -z "$ARCHS" ]; then
240 # the pool is empty, so we will operate on faked packages - let us use the configured archs
241 ARCHS="$(aptconfig dump | grep APT::Architecture | cut -d'"' -f 2 | sed '/^$/ d' | sort | uniq | tr '\n' ' ')"
242 fi
ce9864a8
DK
243 echo -n 'Dir {
244 ArchiveDir "' >> ftparchive.conf
245 echo -n $(readlink -f .) >> ftparchive.conf
246 echo -n '";
247 CacheDir "' >> ftparchive.conf
248 echo -n $(readlink -f ..) >> ftparchive.conf
249 echo -n '";
b7899b00
DK
250 FileListDir "' >> ftparchive.conf
251 echo -n $(readlink -f pool/) >> ftparchive.conf
252 echo -n '";
253};
254Default {
255 Packages::Compress ". gzip bzip2 lzma";
256 Sources::Compress ". gzip bzip2 lzma";
257 Contents::Compress ". gzip bzip2 lzma";
ce9864a8
DK
258};
259TreeDefault {
260 Directory "pool/";
261 SrcDirectory "pool/";
262};
263APT {
264 FTPArchive {
265 Release {
266 Origin "joesixpack";
267 Label "apttestcases";
268 Suite "unstable";
269 Description "repository with dummy packages";
270 Architectures "' >> ftparchive.conf
271 echo -n "$ARCHS" >> ftparchive.conf
272 echo 'source";
273 };
274 };
275};' >> ftparchive.conf
b7899b00
DK
276 for DIST in $(find ./pool/ -maxdepth 1 -name '*.pkglist' -type f | cut -d'/' -f 3 | cut -d'.' -f 1 | sort | uniq); do
277 echo -n 'tree "dists/' >> ftparchive.conf
278 echo -n "$DIST" >> ftparchive.conf
279 echo -n '" {
ce9864a8
DK
280 Architectures "' >> ftparchive.conf
281 echo -n "$ARCHS" >> ftparchive.conf
b7899b00
DK
282 echo -n 'source";
283 FileList "' >> ftparchive.conf
284 echo -n "${DIST}.\$(SECTION).pkglist" >> ftparchive.conf
285 echo -n '";
286 SourceFileList "' >> ftparchive.conf
287 echo -n "${DIST}.\$(SECTION).srclist" >> ftparchive.conf
288 echo -n '";
289 Sections "' >> ftparchive.conf
290 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
291 echo '";
ce9864a8 292};' >> ftparchive.conf
b7899b00 293 done
ce9864a8
DK
294}
295
296buildaptftparchivedirectorystructure() {
b7899b00
DK
297 local DISTS="$(grep -i '^tree ' ftparchive.conf | cut -d'/' -f 2 | sed -e 's#".*##')"
298 for DIST in $DISTS; do
299 local SECTIONS="$(grep -i -A 5 "dists/$DIST" ftparchive.conf | grep -i 'Sections' | cut -d'"' -f 2)"
300 for SECTION in $SECTIONS; do
301 local ARCHS="$(grep -A 5 "dists/$DIST" ftparchive.conf | grep Architectures | cut -d'"' -f 2 | sed -e 's#source##')"
302 for ARCH in $ARCHS; do
303 mkdir -p dists/${DIST}/${SECTION}/binary-${ARCH}
304 done
305 mkdir -p dists/${DIST}/${SECTION}/source
306 mkdir -p dists/${DIST}/${SECTION}/i18n
307 done
ce9864a8 308 done
ce9864a8
DK
309}
310
9b78cda6
DK
311insertpackage() {
312 local RELEASE="$1"
313 local NAME="$2"
314 local ARCH="$3"
315 local VERSION="$4"
316 local DEPENDENCIES="$5"
317 local ARCHS="$ARCH"
318 if [ "$ARCHS" = "all" ]; then
319 ARCHS="$(aptconfig dump | grep APT::Architecture | cut -d'"' -f 2 | sed '/^$/ d' | sort | uniq | tr '\n' ' ')"
320 fi
321 for BUILDARCH in $ARCHS; do
322 local PPATH="aptarchive/dists/${RELEASE}/main/binary-${BUILDARCH}"
323 mkdir -p $PPATH aptarchive/dists/${RELEASE}/main/source
324 touch aptarchive/dists/${RELEASE}/main/source/Sources
325 local FILE="${PPATH}/Packages"
326 echo "Package: $NAME
327Priority: optional
328Section: other
329Installed-Size: 23356
330Maintainer: Joe Sixpack <joe@example.org>
331Architecture: $ARCH
332Version: $VERSION" >> $FILE
333 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> $FILE
334 echo "Description: an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
335 If you find such a package installed on your system,
336 YOU did something horribly wrong! They are autogenerated
337 und used only by testcases for APT and surf no other propose…
338" >> $FILE
339 done
340}
341
ce9864a8 342buildaptarchivefromincoming() {
3cbbda3c 343 msginfo "Build APT archive for ${CCMD}$(basename $0)${CINFO} based on incoming packages…"
ce9864a8
DK
344 cd aptarchive
345 [ -e pool ] || ln -s ../incoming pool
346 [ -e ftparchive.conf ] || createaptftparchiveconfig
347 [ -e dists ] || buildaptftparchivedirectorystructure
b7899b00 348 msgninfo "\tGenerate Packages, Sources and Contents files… "
ce9864a8 349 aptftparchive -qq generate ftparchive.conf
ce9864a8
DK
350 cd - > /dev/null
351 msgdone "info"
9b78cda6 352 generatereleasefiles
ce9864a8
DK
353}
354
355buildaptarchivefromfiles() {
3cbbda3c 356 msginfo "Build APT archive for ${CCMD}$(basename $0)${CINFO} based on prebuild files…"
9b78cda6
DK
357 find aptarchive -name 'Packages' -o -name 'Sources' | while read line; do
358 msgninfo "\t${line} file… "
359 cat ${line} | gzip > ${line}.gz
360 cat ${line} | bzip2 > ${line}.bz2
361 cat ${line} | lzma > ${line}.lzma
8d876415 362 msgdone "info"
9b78cda6
DK
363 done
364 generatereleasefiles
365}
366
367generatereleasefiles() {
368 msgninfo "\tGenerate Release files… "
369 if [ -e aptarchive/dists ]; then
370 for dir in $(find ./aptarchive/dists -mindepth 1 -maxdepth 1 -type d); do
35faae11
DK
371 local CODENAME="$(echo "$dir" | cut -d'/' -f 4)"
372 aptftparchive -qq release $dir -o APT::FTPArchive::Release::Codename="${CODENAME}" | sed -e '/0 Release$/ d' > $dir/Release # remove the self reference
373 if [ "$CODENAME" = "experimental" ]; then
374 sed -i '/^Date: / a\
375NotAutomatic: yes' $dir/Release
376 fi
9b78cda6
DK
377 done
378 else
379 aptftparchive -qq release ./aptarchive | sed -e '/0 Release$/ d' > aptarchive/Release # remove the self reference
8d876415 380 fi
b7899b00 381 msgdone "info"
8d876415
DK
382}
383
b7899b00
DK
384setupdistsaptarchive() {
385 local APTARCHIVE=$(readlink -f ./aptarchive)
386 rm -f root/etc/apt/sources.list.d/apt-test-*-deb.list
387 rm -f root/etc/apt/sources.list.d/apt-test-*-deb-src.list
388 for DISTS in $(find ./aptarchive/dists/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 4); do
389 SECTIONS=$(find ./aptarchive/dists/${DISTS}/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 5 | tr '\n' ' ')
390 msgninfo "\tadd deb and deb-src sources.list lines for ${CCMD}${DISTS} ${SECTIONS}${CINFO}… "
391 echo "deb file://$APTARCHIVE $DISTS $SECTIONS" > rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb.list
392 echo "deb-src file://$APTARCHIVE $DISTS $SECTIONS" > rootdir/etc/apt/sources.list.d/apt-test-${DISTS}-deb-src.list
393 msgdone "info"
394 done
395}
396
397setupflataptarchive() {
ce9864a8 398 local APTARCHIVE=$(readlink -f ./aptarchive)
8d876415
DK
399 if [ -f ${APTARCHIVE}/Packages ]; then
400 msgninfo "\tadd deb sources.list line… "
401 echo "deb file://$APTARCHIVE /" > rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list
402 msgdone "info"
403 else
404 rm -f rootdir/etc/apt/sources.list.d/apt-test-archive-deb.list
405 fi
406 if [ -f ${APTARCHIVE}/Sources ]; then
407 msgninfo "\tadd deb-src sources.list line… "
408 echo "deb-src file://$APTARCHIVE /" > rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list
409 msgdone "info"
410 else
411 rm -f rootdir/etc/apt/sources.list.d/apt-test-archive-deb-src.list
412 fi
b7899b00
DK
413}
414
415setupaptarchive() {
416 buildaptarchive
417 if [ -e aptarchive/dists ]; then
418 setupdistsaptarchive
419 else
420 setupflataptarchive
421 fi
f213b6ea 422 signreleasefiles
cd725954 423 msgninfo "\tSync APT's cache with the archive… "
8d876415 424 aptget update -qq
cd725954 425 msgdone "info"
8d876415
DK
426}
427
f213b6ea
DK
428signreleasefiles() {
429 local SIGNER="${1:-Joe Sixpack}"
430 msgninfo "\tSign archive with $SIGNER key… "
431 local SECKEYS=""
432 for KEY in $(find keys/ -name '*.sec'); do
433 SECKEYS="$SECKEYS --secret-keyring $KEY"
434 done
435 local PUBKEYS=""
436 for KEY in $(find keys/ -name '*.pub'); do
437 PUBKEYS="$PUBKEYS --keyring $KEY"
438 done
439 for RELEASE in $(find aptarchive/ -name Release); do
440 gpg --yes --no-default-keyring $SECKEYS $PUBKEYS --default-key "$SIGNER" -abs -o ${RELEASE}.gpg ${RELEASE}
441 done
442 msgdone "info"
443}
444
445changetowebserver() {
446 if which weborf > /dev/null; then
447 weborf -xb aptarchive/ 2>&1 > /dev/null &
0dc05bf0 448 CURRENTTRAP="kill $!; $CURRENTTRAP"
f213b6ea
DK
449 trap "$CURRENTTRAP" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
450 local APTARCHIVE="file://$(readlink -f ./aptarchive)"
451 for LIST in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
452 sed -i $LIST -e "s#$APTARCHIVE#http://localhost:8080/#"
453 done
454 return 0
455 fi
456 return 1
457}
458
459checkdiff() {
8d876415
DK
460 local DIFFTEXT="$($(which diff) -u $* | sed -e '/^---/ d' -e '/^+++/ d' -e '/^@@/ d')"
461 if [ -n "$DIFFTEXT" ]; then
462 echo
463 echo "$DIFFTEXT"
464 return 1
465 else
466 return 0
467 fi
468}
469
75954ae2
DK
470testfileequal() {
471 local FILE="$1"
472 shift
473 msgtest "Test for correctness of file" "$FILE"
474 if [ -z "$*" ]; then
f213b6ea 475 echo -n "" | checkdiff $FILE - && msgpass || msgfail
75954ae2 476 else
f213b6ea 477 echo "$*" | checkdiff $FILE - && msgpass || msgfail
75954ae2
DK
478 fi
479}
480
8d876415
DK
481testequal() {
482 local COMPAREFILE=$(mktemp)
483 echo "$1" > $COMPAREFILE
484 shift
485 msgtest "Test for equality of" "$*"
f213b6ea 486 $* 2>&1 | checkdiff $COMPAREFILE - && msgpass || msgfail
8e86786b 487 rm $COMPAREFILE
8d876415
DK
488}
489
685625bd
DK
490testequalor2() {
491 local COMPAREFILE1=$(mktemp)
492 local COMPAREFILE2=$(mktemp)
493 local COMPAREAGAINST=$(mktemp)
494 echo "$1" > $COMPAREFILE1
495 echo "$2" > $COMPAREFILE2
496 shift 2
497 msgtest "Test for equality OR of" "$*"
498 $* 2>&1 1> $COMPAREAGAINST
f213b6ea
DK
499 (checkdiff $COMPAREFILE1 $COMPAREAGAINST 1> /dev/null ||
500 checkdiff $COMPAREFILE2 $COMPAREAGAINST 1> /dev/null) && msgpass ||
501 ( echo "\n${CINFO}Diff against OR 1${CNORMAL}" "$(checkdiff $COMPAREFILE1 $COMPAREAGAINST)" \
502 "\n${CINFO}Diff against OR 2${CNORMAL}" "$(checkdiff $COMPAREFILE2 $COMPAREAGAINST)" &&
685625bd 503 msgfail )
8e86786b 504 rm $COMPAREFILE1 $COMPAREFILE2 $COMPAREAGAINST
685625bd
DK
505}
506
8d876415 507testshowvirtual() {
4bec02c2 508 local VIRTUAL="N: Can't select versions from package '$1' as it purely virtual"
8d876415
DK
509 local PACKAGE="$1"
510 shift
511 while [ -n "$1" ]; do
512 VIRTUAL="${VIRTUAL}
4bec02c2 513N: Can't select versions from package '$1' as it purely virtual"
8d876415
DK
514 PACKAGE="${PACKAGE} $1"
515 shift
516 done
517 msgtest "Test for virtual packages" "apt-cache show $PACKAGE"
518 VIRTUAL="${VIRTUAL}
4bec02c2 519N: No packages found"
8d876415
DK
520 local COMPAREFILE=$(mktemp)
521 local ARCH=$(dpkg-architecture -qDEB_HOST_ARCH_CPU)
522 eval `apt-config shell ARCH APT::Architecture`
523 echo "$VIRTUAL" | sed -e "s/:$ARCH//" -e 's/:all//' > $COMPAREFILE
e8379ba3 524 aptcache show -q=0 $PACKAGE 2>&1 | checkdiff $COMPAREFILE - && msgpass || msgfail
8e86786b 525 rm $COMPAREFILE
8d876415
DK
526}
527
528testnopackage() {
529 msgtest "Test for non-existent packages" "apt-cache show $*"
530 local SHOWPKG="$(aptcache show $* 2>&1 | grep '^Package: ')"
531 if [ -n "$SHOWPKG" ]; then
532 echo
533 echo "$SHOWPKG"
534 msgfail
535 return 1
536 fi
537 msgpass
538}
01a6e24c
DK
539
540testdpkginstalled() {
541 msgtest "Test for correctly installed package(s) with" "dpkg -l $*"
542 local PKGS="$(dpkg -l $* | grep '^[a-z]' | grep '^[^i]' | wc -l)"
543 if [ "$PKGS" != 0 ]; then
544 echo $PKGS
545 dpkg -l $* | grep '^[a-z]'
546 msgfail
547 return 1
548 fi
549 msgpass
550}
551
552testdpkgnoninstalled() {
553 msgtest "Test for correctly non-installed package(s) with" "dpkg -l $*"
554 local PKGS="$(dpkg -l $* | grep '^[a-z]' | grep '^[^u]' | wc -l)"
555 if [ "$PKGS" != 0 ]; then
556 echo
557 dpkg -l $* | grep '^[a-z]'
558 msgfail
559 return 1
560 fi
561 msgpass
562}