blob: e8133439c2efc9ae9726a19c9aafb729979946c8 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/usr/bin/env atf-sh
PATH=$(atf_get_srcdir)/..:$PATH
init_env() {
export ROOT=$PWD LIBDIR=$(atf_get_srcdir)/.. MOCK=echo
}
atf_test_case setup_sshd_help
setup_sshd_help_body() {
init_env
atf_check -s exit:0 \
-o match:'^usage:' \
-e empty \
setup-sshd -h
}
atf_test_case setup_sshd_empty
setup_sshd_empty_body() {
init_env
atf_check -s exit:0 \
-e empty \
-o empty \
setup-sshd none
}
atf_test_case setup_sshd_dropbear
setup_sshd_dropbear_body() {
init_env
atf_check -s exit:0 \
-e empty \
-o match:"^apk add .* dropbear" \
-o match:"^rc-update add dropbear" \
-o match:"^rc-service dropbear start" \
setup-sshd dropbear
}
atf_test_case setup_sshd_openssh
setup_sshd_openssh_body() {
init_env
atf_check -s exit:0 \
-e empty \
-o match:"^apk add .* openssh" \
-o match:"^rc-update add sshd" \
-o match:"^rc-service sshd start" \
setup-sshd -k 'https://example.com/user.keys' openssh
grep '^wget .*https://example.com/user.keys$' root/.ssh/authorized_keys || atf_fail "failed to wget ssh key"
}
atf_init_test_cases() {
atf_add_test_case setup_sshd_help
atf_add_test_case setup_sshd_empty
atf_add_test_case setup_sshd_dropbear
atf_add_test_case setup_sshd_openssh
}
|