File: test-bug-719263-print-uris-removes-authentication

package info (click to toggle)
apt 3.1.12
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 22,736 kB
  • sloc: cpp: 71,048; sh: 31,750; xml: 5,553; perl: 217; python: 197; ansic: 191; makefile: 41
file content (42 lines) | stat: -rwxr-xr-x 1,168 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
set -e

TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"

setupenvironment
configarchitecture 'amd64'

insertinstalledpackage 'unrelated' 'all' '1'
buildsimplenativepackage 'unrelated' 'all' '2' 'unstable'

setupaptarchive

testnoact() {
	cp -a rootdir/var/lib/dpkg/status rootdir/var/lib/dpkg/status-backup-noact
	touch rootdir/var/lib/apt/extended_states
	testsuccessequal 'Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be upgraded:
  unrelated
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Inst unrelated [1] (2 unstable [all])
Conf unrelated (2 unstable [all])' aptget install unrelated -s
	testsuccess aptget install unrelated -y
	testdpkginstalled unrelated
	rm -rf rootdir/var/cache/apt/*.bin
	cp -a rootdir/var/lib/dpkg/status-backup-noact rootdir/var/lib/dpkg/status
}

testnoact
testsuccess aptget update --print-uris
testnoact

# same thing, just not with InRelease this time
rm -rf rootdir/var/lib/apt/lists
testsuccess aptget update -o Acquire::TryInRelease=0

testnoact
testsuccess aptget update --print-uris -o Acquire::TryInRelease=0
testnoact