]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-config
disable privilege-drop verification by default as fakeroot trips over it
[apt.git] / test / integration / test-apt-config
CommitLineData
081c9d44
DK
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture 'amd64'
9
10testsuccess aptconfig dump
25b86db1 11testsuccessequal 'APT::Architecture "amd64";' aptconfig dump APT::Architecture
081c9d44
DK
12testempty aptconfig dump config::which::does::not::exist
13
25b86db1 14testsuccessequal 'APT::Architectures "";
081c9d44 15APT::Architectures:: "amd64";' aptconfig dump APT::Architectures
25b86db1
DK
16testsuccessequal 'APT::Architectures:: "amd64";' aptconfig dump --no-empty APT::Architectures
17testsuccessequal 'amd64' aptconfig dump --no-empty --format='%v%n' APT::Architectures
081c9d44
DK
18
19testempty aptconfig shell
25b86db1 20testfailureequal 'E: Arguments not in pairs' aptconfig shell APT::Architecture
081c9d44 21testempty aptconfig shell APT::Architecture ARCH # incorrect order
25b86db1 22testsuccessequal "ARCH='amd64'" aptconfig shell ARCH APT::Architecture
081c9d44
DK
23
24ROOTDIR="$(readlink -f rootdir)"
25b86db1
DK
25testsuccessequal "CONFIG='apt.conf'" aptconfig shell CONFIG Dir::Etc::main
26testsuccessequal "CONFIG='${ROOTDIR}/etc/apt/apt.conf'" aptconfig shell CONFIG Dir::Etc::main/f
27testsuccessequal "CONFIG='etc/apt/'" aptconfig shell CONFIG Dir::Etc
28testsuccessequal "CONFIG='${ROOTDIR}/etc/apt/'" aptconfig shell CONFIG Dir::Etc/ # old style
29testsuccessequal "CONFIG='${ROOTDIR}/etc/apt/'" aptconfig shell CONFIG Dir::Etc/d
081c9d44
DK
30
31testempty aptconfig dump --no-empty --format='%v%n' APT::Build-Profiles
32export DEB_BUILD_PROFILES='nodoc stage1'
25b86db1 33testsuccessequal 'nodoc
081c9d44
DK
34stage1' aptconfig dump --no-empty --format='%v%n' APT::Build-Profiles
35unset DEB_BUILD_PROFILES
36testempty aptconfig dump --no-empty --format='%v%n' APT::Build-Profiles