]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-apt-get-changelog
merged from lp:~donkult/apt/sid
[apt.git] / test / integration / test-apt-get-changelog
... / ...
CommitLineData
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture "i386"
9
10buildsimplenativepackage 'apt' 'all' '1.0' 'stable'
11
12setupaptarchive
13changetowebserver
14aptget update -qq
15
16echo 'Apt::Changelogs::Server "http://localhost:8080/";' >> ./aptconfig.conf
17
18testequal "'http://localhost:8080//pool/apt_1.0/changelog'" aptget changelog apt --print-uris
19
20aptget changelog apt -qq > apt.changelog
21testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0/changelog)"
22rm apt.changelog
23
24aptget changelog apt -d -qq
25testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0/changelog)"
26rm apt.changelog aptarchive/pool/apt_1.0/changelog
27
28aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/' > apt.changelog
29testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0.changelog)"
30rm apt.changelog
31
32aptget changelog apt -d -qq
33testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0.changelog)"
34rm apt.changelog aptarchive/pool/apt_1.0.changelog
35
36testequal 'E: changelog download failed' aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/'