]> git.saurik.com Git - apt.git/blame - test/integration/test-changelog
test changelogs locally instead of depending on an online service
[apt.git] / test / integration / test-changelog
CommitLineData
e5837128
MV
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture "i386"
9
13845042 10buildsimplenativepackage 'apt' 'all' '1.0' 'stable'
e5837128
MV
11
12setupaptarchive
13845042
DK
13changetowebserver
14aptget update -qq
e5837128 15
13845042 16echo 'Apt::Changelogs::Server "http://localhost:8080/";' >> ./aptconfig.conf
e5837128 17
13845042
DK
18aptget changelog apt -qq > apt.changelog
19testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0/changelog)"
20rm aptarchive/pool/apt_1.0/changelog
21
22aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/' > apt.changelog
23testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0.changelog)"
24rm aptarchive/pool/apt_1.0.changelog
25
26testequal 'E: changelog download failed' aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/'