blob: f7c94a2b4e237b1f1fa9d1906bdb9977188d6b47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/bin/sh
set -e
TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
cat >rootdir/etc/apt/apt.conf.d/rev-as-compressor <<EOF
APT::Compressor::rev {
Name "rev";
Extension ".rev";
Binary "rev";
Cost "1";
};
EOF
configcompression 'ALL'
cat >./test.txt <<EOF
This is a test.
EOF
compressfile ./test.txt
while read compressor extension command; do
if [ "$compressor" = '.' ]; then
FILE='./test.txt'
else
FILE="./test.txt.${extension}"
fi
testsuccessequal "$(cat ./test.txt)" apthelper cat-file "$FILE"
done < "${TMPWORKINGDIRECTORY}/rootdir/etc/testcase-compressor.conf"
|