use 'best' hash for source authentication
[ntk/apt.git] / test / integration / test-apt-get-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 11
75b09312 12setupaptarchive --no-update
13845042 13changetowebserver
75b09312 14testsuccess aptget update
e5837128 15
75b09312 16echo 'Apt::Changelogs::Server "http://localhost:8080/";' > rootdir/etc/apt/apt.conf.d/changelog.conf
e5837128 17
fcb144b9
DK
18testequal "'http://localhost:8080//pool/apt_1.0/changelog'" aptget changelog apt --print-uris
19
a98b6615
DH
20testequal "'http://localhost:8080//pool/apt_1.0/changelog'
21'http://localhost:8080//pool/apt_1.0/changelog'" aptget changelog apt apt --print-uris
22
13845042
DK
23aptget changelog apt -qq > apt.changelog
24testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0/changelog)"
72dd5bec
DK
25rm apt.changelog
26
75b09312 27testsuccess aptget changelog apt -d
72dd5bec
DK
28testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0/changelog)"
29rm apt.changelog aptarchive/pool/apt_1.0/changelog
13845042
DK
30
31aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/' > apt.changelog
32testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0.changelog)"
72dd5bec
DK
33rm apt.changelog
34
75b09312 35testsuccess aptget changelog apt -d
72dd5bec
DK
36testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0.changelog)"
37rm apt.changelog aptarchive/pool/apt_1.0.changelog
13845042
DK
38
39testequal 'E: changelog download failed' aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/'