summaryrefslogtreecommitdiff
path: root/test/cases/librerelease.bats
blob: 26049bcce65c054af03a1ccce6e6cc6a060113ad (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
load ../lib/common

@test "librerelease displays usage text" {
	rm -rf "$XDG_CONFIG_HOME"
	LC_ALL=C librerelease -h >"$tmpdir/stdout" 2>"$tmpdir/stderr"

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

@test "librerelease lists all files" {
	WORKDIR="$tmpdir/workdir"
	mkdir -p "$WORKDIR/staging/repo1" "$WORKDIR/staging/repo2/sub"
	touch \
		"$WORKDIR/staging/repo1/file1" \
		"$WORKDIR/staging/repo1/file2" \
		"$WORKDIR/staging/repo2/file with spaces" \
		"$WORKDIR/staging/repo2/sub/subfolder"
	unset WORKDIR
	LC_ALL=C librerelease -l &>"$tmpdir/list" || { status=$?; cat "$tmpdir/list"; return $status; }

	cat > "$tmpdir/list-correct" <<-eot
		  -> repo1
		     file1
		     file2
		  -> repo2
		     file with spaces
		     sub/subfolder
		eot

	diff "$tmpdir/list-correct" "$tmpdir/list"
}

@test "librerelease fails if gpgkey not set" {
	unset GPGKEY

	WORKDIR="$tmpdir/workdir"
	mkdir -p "$WORKDIR/staging/repo1" "$WORKDIR/staging/repo2/sub"
	touch \
		"$WORKDIR/staging/repo1/file1" \
		"$WORKDIR/staging/repo1/file2" \
		"$WORKDIR/staging/repo2/file with spaces" \
		"$WORKDIR/staging/repo2/sub/subfolder"
	unset WORKDIR
	LC_ALL=C librerelease -l >"$tmpdir/stdout" 2>"$tmpdir/stderr" || status=$?

	[[ $status != 0 ]]
	empty "$tmpdir/stdout"
	grep GPGKEY "$tmpdir/stderr"
}