blob: 26d9d7625eca6f4e8461d81ff1e96f7975a90195 (
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
38
39
|
#!/usr/bin/env atf-sh
. $(atf_get_srcdir)/test_env.sh
init_tests \
setup_apkrepos_usage \
setup_apkrepos_https \
setup_apkrepos_random \
setup_apkrepos_first
setup_apkrepos_usage_body() {
test_usage setup-apkrepos
}
setup_apkrepos_https_body() {
init_env
export MIRRORS="https://a.example.com http://b.example.com"
atf_check -s exit:0 \
-o match:"Updating repository indexes..." \
-o match:"apk update" \
-e empty \
setup-apkrepos https://example.com
grep -q 'https://example.com' etc/apk/repositories || atf_fail "example.com was not added to /etc/apk/repositories"
}
setup_apkrepos_random_body() {
init_env
export WGETCONTENT="$(seq 0 9 | awk '{print "https://a" $0 ".example.com"}')"
atf_check -s exit:0 \
-o match:"Added mirror a[0-9].example.com" \
setup-apkrepos -r
}
setup_apkrepos_first_body() {
init_env
export WGETCONTENT="$(seq 0 9 | awk '{print "https://a" $0 ".example.com"}')"
atf_check -s exit:0 \
-o match:"Added mirror a0.example.com" \
setup-apkrepos -1
}
|