summaryrefslogtreecommitdiff
path: root/tests/setup_lbu_test
blob: 018dcade4d2c93d5ff0e8676c45c5bd9c07bcf73 (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
#!/usr/bin/env atf-sh

. $(atf_get_srcdir)/test_env.sh
init_tests \
	setup_lbu_usage \
	setup_lbu_label

setup_lbu_usage_body() {
	test_usage setup-lbu
}

setup_lbu_label_body() {
	init_env
	atf_check -s exit:0 \
		-o empty \
		-e empty \
		setup-lbu LABEL=APKOVL
	grep -q 'LBU_MEDIA=LABEL=APKOVL' etc/lbu/lbu.conf || atf_fail "LBU_MEDIA not set in etc/lbu/lbu.conf"
	test -d media/LABEL=APKOVL || atf_fail "directory /media/LABEL=APKOVL was not created"

	atf_check -s exit:0 \
		-o match:"LABEL=APKOVL.*ro" \
		cat etc/fstab
}