summaryrefslogtreecommitdiff
path: root/test/libremakepkg-test.sh
blob: 5ea3b59ce8cd60443ad2e62c85687b6085e6d3ae (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
#!/usr/bin/env roundup

describe libremakepkg

before() {
	tmpdir=$(mktemp -d --tmpdir test-libremakepkg.XXXXXXXXXXXX)
	mkdir -p "$XDG_CONFIG_HOME"/libretools
	echo "CHROOTDIR='$tmpdir/chrootdir'" > "$XDG_CONFIG_HOME"/libretools/chroot.conf
	stat=0
}

after() {
	rm -rf -- "$tmpdir" "$XDG_CONFIG_HOME"
}

it_builds_a_trivial_package() {
	cp libremakepkg.d/PKGBUILD-hello "$tmpdir/PKGBUILD"
	cd "$tmpdir"

	sudo libremakepkg &>/dev/null
	[[ -f $(echo libretools-hello-1.0-1-any.pkg.tar.?z) ]]
}

it_displays_help_as_normal_user() {
	libremakepkg -h >$tmpdir/stdout 2>$tmpdir/stderr

	[[ "$(sed 1q $tmpdir/stdout)" =~ Usage:.* ]]
	[[ -z "$(cat $tmpdir/stderr)" ]]
}

it_otherwise_fails_as_normal_user() {
	# I do this to give it a chance of passing
	cp libremakepkg.d/PKGBUILD-hello "$tmpdir/PKGBUILD"
	cd "$tmpdir"

	libremakepkg >$tmpdir/stdout 2>$tmpdir/stderr || stat=$?

	[[ $stat != 0 ]]
	[[ -z "$(cat $tmpdir/stdout)" ]]
	[[ -n "$(cat $tmpdir/stderr)" ]]
}