]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-different-methods-for-same-source
run update post-invokes even on (partial) failures
[apt.git] / test / integration / test-different-methods-for-same-source
... / ...
CommitLineData
1#!/bin/sh
2set -e
3
4TESTDIR="$(readlink -f "$(dirname "$0")")"
5. "$TESTDIR/framework"
6setupenvironment
7configarchitecture 'amd64'
8
9insertpackage 'stable' 'foo' 'all' '1'
10insertsource 'stable' 'foo' 'all' '1'
11setupaptarchive --no-update
12
13# install a slowed down file: otherwise its to fast to reproduce combining
14NEWMETHODS="$(readlink -f rootdir)/usr/lib/apt/methods"
15OLDMETHODS="$(readlink -f rootdir/usr/lib/apt/methods)"
16rm "$NEWMETHODS"
17mkdir "$NEWMETHODS"
18backupIFS="$IFS"
19IFS="$(printf "\n\b")"
20for METH in $(find "$OLDMETHODS" ! -type d); do
21 ln -s "$OLDMETHODS/$(basename "$METH")" "$NEWMETHODS"
22done
23IFS="$backupIFS"
24ln -s "${OLDMETHODS}/http" "${NEWMETHODS}/http-ng"
25
26changetowebserver
27sed -i -e 's# http:# http-ng:#' $(find rootdir/etc/apt/sources.list.d -name '*-deb-src.list')
28
29testsuccess apt update
30cp rootdir/tmp/testsuccess.output update.log
31# all requests are folded into the first Release file
32testsuccess grep ' http-ng://' update.log
33testfailure grep ' http://' update.log