blob: 73f0e65e22021ed274d748d27045e6915dd4bcb6 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
|
#!/usr/bin/env atf-sh
. $(atf_get_srcdir)/test_env.sh
init_tests \
lbu_usage \
lbu_include_usage \
lbu_inc_usage \
lbu_add_usage \
lbu_add_delete \
lbu_commit_usage \
lbu_ci_usage \
lbu_exclude_usage \
lbu_ex_usage \
lbu_delete_usage \
lbu_diff_usage \
lbu_list_usage \
lbu_ls_usage \
lbu_list_backup_usage \
lbu_lb_usage \
lbu_package_usage \
lbu_pkg_usage \
lbu_revert_usage \
lbu_status_usage \
lbu_stat_usage \
lbu_st_usage \
lbu_package \
lbu_package_encrypted \
lbu_package_pre_post_hooks
lbu_usage_body() {
test_usage lbu
}
lbu_include_usage_body() {
test_usage "lbu include"
}
lbu_inc_usage_body() {
test_usage "lbu inc"
}
lbu_add_usage_body() {
init_env
atf_check -s exit:0 \
-o match:"usage: lbu include" \
-e empty \
lbu add -h
}
lbu_add_delete_body() {
init_env
mkdir -p root/.ssh
atf_check -s exit:0 \
-o match:"Adding root/.ssh to" \
-e empty \
lbu add -v root/.ssh
atf_check -s exit:0 \
-o match:"root/.ssh" \
cat etc/apk/protected_paths.d/lbu.list
atf_check -s exit:0 \
-o match:"Removing root/.ssh from" \
-e empty \
lbu delete -v root/.ssh
grep 'root/.ssh' etc/apk/protected_paths.d/lbu.list \
|| atf_fail "root/.ssh was not removed"
}
lbu_commit_usage_body() {
test_usage "lbu commit"
}
lbu_ci_usage_body() {
init_env
atf_check -s exit:0 \
-o match:"usage: lbu commit" \
-e empty \
lbu ci -h
}
lbu_exclude_usage_body() {
test_usage "lbu exclude"
}
lbu_ex_usage_body() {
test_usage "lbu ex"
}
lbu_delete_usage_body() {
init_env
atf_check -s exit:0 \
-o match:"usage: lbu exclude" \
-e empty \
lbu delete -h
}
lbu_diff_usage_body() {
test_usage "lbu diff"
}
lbu_list_usage_body() {
test_usage "lbu list"
}
lbu_ls_usage_body() {
init_env
atf_check -s exit:0 \
-o match:"usage: lbu list" \
-e empty \
lbu ls -h
}
lbu_list_backup_usage_body() {
test_usage "lbu list-backup"
}
lbu_lb_usage_body() {
init_env
atf_check -s exit:0 \
-o match:"usage: lbu list-backup" \
-e empty \
lbu lb -h
}
lbu_package_usage_body() {
test_usage "lbu package"
}
lbu_pkg_usage_body() {
init_env
atf_check -s exit:0 \
-o match:"usage: lbu package" \
-e empty \
lbu pkg -h
}
lbu_revert_usage_body() {
test_usage "lbu revert"
}
lbu_status_usage_body() {
test_usage "lbu status"
}
lbu_stat_usage_body() {
init_env
atf_check -s exit:0 \
-o match:"usage: lbu status" \
-e empty \
lbu stat -h
}
lbu_st_usage_body() {
init_env
atf_check -s exit:0 \
-o match:"usage: lbu status" \
-e empty \
lbu st -h
}
create_fake_apk_audit() {
mkdir -p bin etc
cat >bin/apk<<-EOF
#!/bin/sh
# mock apk
echo etc/localtime
echo etc/hosts
EOF
chmod +x bin/apk
touch etc/localtime etc/hosts
export PATH="$PWD/bin:$PATH"
}
lbu_package_body() {
init_env
create_fake_apk_audit
atf_check \
lbu package
atf_check \
-o match:"etc/localtime" \
-o match:"etc/hosts" \
tar -ztf $(hostname).apkovl.tar.gz
}
get_sysconfdir() {
sysconfdir=$(grep "^sysconfdir=" $(atf_get_srcdir)/../lbu \
| cut -d= -f2-)
if [ -z "$sysconfdir" ]; then
atf_fail "sysconfdir is not set"
fi
}
lbu_package_encrypted_body() {
atf_require_prog openssl
init_env
get_sysconfdir
mkdir -p "$PWD"/"$sysconfdir"
(
echo 'DEFAULT_CIPHER=aes-256-cbc'
echo 'ENCRYPTION=$DEFAULT_CIPHER'
echo 'PASSWORD=foobar'
) > "$PWD/$sysconfdir/lbu.conf"
create_fake_apk_audit
atf_check \
-e match:"WARNING" \
lbu package
if ! [ -e "$(hostname).apkovl.tar.gz.aes-256-cbc" ]; then
atf_fail "ecrypted archive not created"
fi
}
lbu_package_pre_post_hooks_body() {
init_env
get_sysconfdir
create_fake_apk_audit
mkdir -p "$PWD/$sysconfdir/pre-package.d" \
"$PWD/$sysconfdir/post-package.d"
cat >"$PWD/$sysconfdir/pre-package.d/foo.sh"<<-EOF
#!/bin/sh
echo \$0
EOF
chmod +x "$PWD/$sysconfdir/pre-package.d/foo.sh"
ln -s ../pre-package.d/foo.sh \
"$PWD/$sysconfdir/post-package.d/foo.sh"
atf_check \
-e match:"pre-package" \
-e match:"post-package" \
lbu package
}
|