summaryrefslogtreecommitdiff
path: root/test/lib-blacklist-test.sh
blob: 1432ff68777f3a7e92bfaf7f3ac10e5cf1fe2e68 (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
#!/usr/bin/env roundup

describe libreblacklist

before() {
	tmpdir=$(mktemp -d --tmpdir test-libreblacklist.XXXXXXXXXXXX)
	stat=0
}

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

it_works_with_just_pkgname() {
	v="$(libreblacklist normalize <<<skype)"; [[ $v == 'skype::' ]]
	v="$(libreblacklist get-pkg <<<skype)"; [[ $v == skype ]]
	v="$(libreblacklist get-rep <<<skype)"; [[ -z $v ]]
	v="$(libreblacklist get-reason <<<skype)"; [[ -z $v ]]
}

it_works_with_everything_set() {
	line='linux:linux-libre:nonfree blobs and firmwares'
	v="$(libreblacklist normalize <<<"$line")"; [[ $v == "$line" ]]
	v="$(libreblacklist get-pkg <<<"$line")"; [[ $v == 'linux' ]]
	v="$(libreblacklist get-rep <<<"$line")"; [[ $v == 'linux-libre' ]]
	v="$(libreblacklist get-reason <<<"$line")"; [[ $v == 'nonfree blobs and firmwares' ]]
}

it_normalizes_correctly() {
	v="$(libreblacklist normalize <<<pkg)"; [[ $v == 'pkg::' ]]
	v="$(libreblacklist normalize <<<pkg:)"; [[ $v == 'pkg::' ]]
	v="$(libreblacklist normalize <<<pkg::)"; [[ $v == 'pkg::' ]]
	v="$(libreblacklist normalize <<<pkg:rep)"; [[ $v == 'pkg:rep:' ]]
	v="$(libreblacklist normalize <<<pkg:rep:)"; [[ $v == 'pkg:rep:' ]]
	v="$(libreblacklist normalize <<<pkg:rep:reason)"; [[ $v == 'pkg:rep:reason' ]]
	v="$(libreblacklist normalize <<<pkg:rep:reason:)"; [[ $v == 'pkg:rep:reason:' ]]
}

it_works_with_colons_in_reason() {
	line='package:replacement:my:reason'
	v="$(libreblacklist normalize <<<"$line")"; [[ $v == "$line" ]]
	v="$(libreblacklist get-pkg <<<"$line")"; [[ $v == 'package' ]]
	v="$(libreblacklist get-rep <<<"$line")"; [[ $v == 'replacement' ]]
	v="$(libreblacklist get-reason <<<"$line")"; [[ $v == 'my:reason' ]]
}

it_fails_update_when_there_is_no_blacklist_or_network() {
	mkdir -p $XDG_CONFIG_HOME/libretools
	echo "BLACKLIST='phony://example.com'" >$XDG_CONFIG_HOME/libretools/libretools.conf

	libreblacklist update >$tmpdir/stdout 2>$tmpdir/stderr || stat=$?

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

it_fails_cat_when_there_is_no_blacklist_or_network() {
	mkdir -p $XDG_CONFIG_HOME/libretools
	echo "BLACKLIST='phony://example.com'" >$XDG_CONFIG_HOME/libretools/libretools.conf

	libreblacklist cat >$tmpdir/stdout 2>$tmpdir/stderr || stat=$?

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

it_displays_help_and_fails_with_no_args() {
	libreblacklist >$tmpdir/stdout 2>$tmpdir/stderr || stat=$?

	[[ $stat != 0 ]]
	[[ -z "$(cat $tmpdir/stdout)" ]]
	[[ "$(sed 1q $tmpdir/stderr)" =~ 'Usage: libreblacklist ' ]]
}

it_displays_help_when_given_h() {
	libreblacklist -h >$tmpdir/stdout 2>$tmpdir/stderr

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

it_displays_help_when_given_h_cat() {
	libreblacklist -h cat >$tmpdir/stdout 2>$tmpdir/stderr

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

# TODO: test blacklist-update, but I don't want tests to use network