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