]> git.saurik.com Git - apt.git/blob - test/integration/test-bug-718329-support-data.tar-uncompressed
fix testcase expecting incorrect remove log from dpkg
[apt.git] / test / integration / test-bug-718329-support-data.tar-uncompressed
1 #!/bin/sh
2 set -e
3
4 test_process_package_with_compression() {
5 COMPRESSOR="$1"
6 DATA_TAR="$2"
7
8 msgmsg "Testing apt-ftparchive with compression type: $COMPRESSOR"
9
10 buildsimplenativepackage 'pkg' 'all' '1.0' '' '' 'some descr' '' '' '' "$COMPRESSOR"
11 testsuccessequal "debian-binary
12 control.tar.gz
13 $DATA_TAR" ar t incoming/pkg_1.0_all.deb
14
15 testequal "Package: pkg" echo "$(aptftparchive packages incoming/|grep ^Package)"
16
17 testsuccessequal "usr/bin/pkg-all pkg
18 usr/share/doc/pkg/FEATURES pkg
19 usr/share/doc/pkg/changelog pkg
20 usr/share/doc/pkg/copyright pkg" aptftparchive contents incoming/
21
22 rm -rf incoming/*
23 }
24
25 TESTDIR="$(readlink -f "$(dirname "$0")")"
26 . "$TESTDIR/framework"
27
28 setupenvironment
29 test_process_package_with_compression "gzip" "data.tar.gz"
30 test_process_package_with_compression "none" "data.tar"
31 test_process_package_with_compression "xz" "data.tar.xz"