]> git.saurik.com Git - apt.git/blame - test/integration/skip-bug-602412-dequote-redirect
add changelog
[apt.git] / test / integration / skip-bug-602412-dequote-redirect
CommitLineData
c34ea12a
DK
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6setupenvironment
7configarchitecture 'i386'
8
9if ! which lighttpd > /dev/null; then
10 msgdie 'You need lighttpd for this testcase, sorry…'
11 exit 1
12fi
13
14buildsimplenativepackage 'unrelated' 'all' '0.5~squeeze1' 'unstable'
15
16setupaptarchive
17
18echo "server.modules = ( \"mod_redirect\" )
19server.document-root = \"$(readlink -f ./aptarchive)\"
20server.port = 8080
21server.stat-cache-engine = \"disable\"
57194e03
DK
22url.redirect = ( \"^/pool/(.*)$\" => \"/newpool/\$1\",
23 \"^/dists/(.*)$\" => \"/newdists/\$1\" )" > lighttpd.conf
c34ea12a
DK
24
25mv aptarchive/pool aptarchive/newpool
57194e03
DK
26mv aptarchive/dists aptarchive/newdists
27
c34ea12a
DK
28lighttpd -t -f lighttpd.conf >/dev/null || msgdie 'Can not change to webserver: our lighttpd config is invalid'
29lighttpd -D -f lighttpd.conf 2>/dev/null >/dev/null &
30addtrap "kill $!;"
31
57194e03 32APTARCHIVE="file://$(readlink -f ./aptarchive)"
c34ea12a
DK
33for LIST in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
34 sed -i $LIST -e "s#$APTARCHIVE#http://localhost:8080/#"
35done
36
57194e03
DK
37aptget update || msgdie 'apt-get update failed'
38aptget install unrelated --download-only || msgdie 'downloading package failed'