Merge remote-tracking branch 'upstream/debian/sid' into feature/apt-manpage
[ntk/apt.git] / test / integration / test-apt-get-changelog
1 #!/bin/sh
2 set -e
3
4 TESTDIR=$(readlink -f $(dirname $0))
5 . $TESTDIR/framework
6
7 setupenvironment
8 configarchitecture "i386"
9
10 buildsimplenativepackage 'apt' 'all' '1.0' 'stable'
11
12 setupaptarchive --no-update
13 changetowebserver
14 testsuccess aptget update
15
16 echo 'Apt::Changelogs::Server "http://localhost:8080/";' > rootdir/etc/apt/apt.conf.d/changelog.conf
17
18 testequal "'http://localhost:8080//pool/apt_1.0/changelog'" aptget changelog apt --print-uris
19
20 testequal "'http://localhost:8080//pool/apt_1.0/changelog'
21 'http://localhost:8080//pool/apt_1.0/changelog'" aptget changelog apt apt --print-uris
22
23 aptget changelog apt -qq > apt.changelog
24 testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0/changelog)"
25 rm apt.changelog
26
27 testsuccess aptget changelog apt -d
28 testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0/changelog)"
29 rm apt.changelog aptarchive/pool/apt_1.0/changelog
30
31 aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/' > apt.changelog
32 testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0.changelog)"
33 rm apt.changelog
34
35 testsuccess aptget changelog apt -d
36 testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0.changelog)"
37 rm apt.changelog aptarchive/pool/apt_1.0.changelog
38
39 testequal 'E: changelog download failed' aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/'