]> git.saurik.com Git - apt.git/blob - test/integration/test-sourceslist-target-plusminus-options
allow explicit dis/enable of IndexTargets in sources options
[apt.git] / test / integration / test-sourceslist-target-plusminus-options
1 #!/bin/sh
2 set -e
3
4 TESTDIR=$(readlink -f $(dirname $0))
5 . $TESTDIR/framework
6 setupenvironment
7 configarchitecture 'amd64'
8
9 testtargets() {
10 msgtest 'Test acquired targets for' "$1"
11 shift
12 while [ -n "$1" ]; do
13 echo "$1"
14 shift
15 done | sort -u > expectedtargets.lst
16 aptget indextargets --no-release-info --format='$(CREATED_BY)' | sort -u > gottargets.lst
17 testfileequal --nomsg ./expectedtargets.lst "$(cat ./gottargets.lst)"
18 }
19
20 echo 'deb http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
21 testtargets 'default' 'Packages' 'Translations'
22
23 cat > rootdir/etc/apt/apt.conf.d/content-target.conf <<EOF
24 Acquire::IndexTargets::deb::Contents {
25 MetaKey "\$(COMPONENT)/Contents-\$(ARCHITECTURE)";
26 ShortDescription "Contents";
27 Description "\$(RELEASE)/\$(COMPONENT) \$(ARCHITECTURE) Contents";
28 };
29 EOF
30 testtargets 'default + Contents' 'Packages' 'Translations' 'Contents'
31
32 echo 'deb [target=Packages] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
33 testtargets 'force Packages target' 'Packages'
34
35 echo 'deb [target=Contents] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
36 testtargets 'force Contents target' 'Contents'
37
38 echo 'deb [target=Translations,Contents] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
39 testtargets 'force two targets' 'Contents' 'Translations'
40
41 echo 'deb [target+=Translations,Contents] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
42 testtargets 'add existing' 'Packages' 'Contents' 'Translations'
43
44 echo 'deb [target+=AppStream] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
45 testtargets 'add non-existing' 'Packages' 'Contents' 'Translations'
46
47 echo 'deb [target-=Translations,Contents] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
48 testtargets 'remove existing' 'Packages'
49
50 echo 'deb [target-=AppStream] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
51 testtargets 'remove non-existing' 'Packages' 'Contents' 'Translations'
52
53 echo 'deb [AppStream=yes] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
54 testtargets 'activate non-existing' 'Packages' 'Contents' 'Translations'
55
56 echo 'deb [AppStream=no] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
57 testtargets 'deactivate non-existing' 'Packages' 'Contents' 'Translations'
58
59 echo 'deb [Contents=yes] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
60 testtargets 'activate existing' 'Packages' 'Contents' 'Translations'
61
62 echo 'deb [Contents=no] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
63 testtargets 'deactivate existing' 'Packages' 'Translations'
64
65 echo 'deb [target=Packages Contents=yes] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
66 testtargets 'explicit + activate' 'Packages' 'Contents'