blob: b7cd0b0d197b843973892667d21a1d2abb83d028 (
plain)
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
|
#!/bin/sh
#
# Test that packages from remote sources cannot set the Status field.
#
set -e
TESTDIR=$(readlink -f $(dirname $0))
. $TESTDIR/framework
setupenvironment
configarchitecture 'amd64'
TMPDIR=$(readlink -f .)
insertpackage 'unstable' 'pretends-installed' 'all' '1' 'Status: install ok installed'
insertinstalledpackage 'really-installed' 'all' '1'
setupaptarchive
testequal "pretends-installed:
Installed: (none)
Candidate: 1
Version table:
1 0
500 file:${TMPDIR}/aptarchive/ unstable/main amd64 Packages" aptcache policy pretends-installed
testequal "really-installed:
Installed: 1
Candidate: 1
Version table:
*** 1 0
100 ${TMPDIR}/rootdir/var/lib/dpkg/status" aptcache policy really-installed
|