blob: d0da07b7b24962d90434271812871a47fac35091 (
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
31
32
33
34
35
36
37
|
#!/usr/bin/env atf-sh
. $(atf_get_srcdir)/test_env.sh
init_tests \
setup_proxy_usage \
setup_proxy_url \
setup_proxy_none
setup_proxy_usage_body() {
test_usage setup-proxy
}
setup_proxy_url_body() {
init_env
atf_check -s exit:0 \
-o match:'^apk add.*wget' \
-e empty \
setup-proxy https://example.com
grep http_proxy etc/profile.d/proxy.sh || atf_fail "http_proxy not set in etc/profile.d/proxy.sh"
}
setup_proxy_none_body() {
init_env
mkdir -p etc/profile.d
touch etc/profile.d/proxy.sh
atf_check -s exit:0 \
-o empty \
-e empty \
setup-proxy none
if test -e etc/profile.d/proxy.sh; then
atf_fail "etc/profile.d/proxy.sh was not removed"
fi
}
|