summaryrefslogtreecommitdiff
path: root/test/integration/skip-bug-602412-dequote-redirect
blob: 689b671ce73b2d8dc216e917b545e63238ec24c8 (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
31
32
33
34
35
36
37
38
#!/bin/sh
set -e

TESTDIR=$(readlink -f $(dirname $0))
. $TESTDIR/framework
setupenvironment
configarchitecture 'i386'

if ! which lighttpd > /dev/null; then
	msgdie 'You need lighttpd for this testcase, sorry…'
	exit 1
fi

buildsimplenativepackage 'unrelated' 'all' '0.5~squeeze1' 'unstable'

setupaptarchive

echo "server.modules = ( \"mod_redirect\" )
server.document-root = \"$(readlink -f ./aptarchive)\"
server.port = 8080
server.stat-cache-engine = \"disable\"
url.redirect = ( \"^/pool/(.*)$\" => \"/newpool/\$1\",
 \"^/dists/(.*)$\" => \"/newdists/\$1\" )" > lighttpd.conf

mv aptarchive/pool aptarchive/newpool
mv aptarchive/dists aptarchive/newdists

lighttpd -t -f lighttpd.conf >/dev/null || msgdie 'Can not change to webserver: our lighttpd config is invalid'
lighttpd -D -f lighttpd.conf 2>/dev/null >/dev/null &
addtrap "kill $!;"

APTARCHIVE="file://$(readlink -f ./aptarchive)"
for LIST in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
	sed -i $LIST -e "s#$APTARCHIVE#http://localhost:8080/#"
done

aptget update || msgdie 'apt-get update failed'
aptget install unrelated --download-only || msgdie 'downloading package failed'