diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-02-07 17:30:06 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-02-07 17:30:06 +0100 |
commit | 72dd5bec06d8d50ff9e8022e36a7d8a6f0cfd7a0 (patch) | |
tree | dffa7dd8e26a0c8241e9416ea52319da98e20c94 /test | |
parent | fcb144b91a91ef9b6016ede0be05e07dacc8aaf9 (diff) |
implement download-only for changelog command which downloads the
changelog to the file $PKGNAME.changelog in the current directory
Diffstat (limited to 'test')
-rwxr-xr-x | test/integration/test-changelog | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/test/integration/test-changelog b/test/integration/test-changelog index b5c204a53..0a80cc08c 100755 --- a/test/integration/test-changelog +++ b/test/integration/test-changelog @@ -19,10 +19,18 @@ testequal "'http://localhost:8080//pool/apt_1.0/changelog'" aptget changelog apt aptget changelog apt -qq > apt.changelog testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0/changelog)" -rm aptarchive/pool/apt_1.0/changelog +rm apt.changelog + +aptget changelog apt -d -qq +testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0/changelog)" +rm apt.changelog aptarchive/pool/apt_1.0/changelog aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/' > apt.changelog testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0.changelog)" -rm aptarchive/pool/apt_1.0.changelog +rm apt.changelog + +aptget changelog apt -d -qq +testfileequal 'apt.changelog' "$(cat aptarchive/pool/apt_1.0.changelog)" +rm apt.changelog aptarchive/pool/apt_1.0.changelog testequal 'E: changelog download failed' aptget changelog apt -qq -o APT::Changelogs::Server='http://not-on-the-main-server:8080/' |