summaryrefslogtreecommitdiff
path: root/test/lib-blacklist-test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib-blacklist-test.sh')
-rwxr-xr-x[-rw-r--r--]test/lib-blacklist-test.sh26
1 files changed, 15 insertions, 11 deletions
diff --git a/test/lib-blacklist-test.sh b/test/lib-blacklist-test.sh
index 49c756e..ef99f91 100644..100755
--- a/test/lib-blacklist-test.sh
+++ b/test/lib-blacklist-test.sh
@@ -6,32 +6,36 @@ describe libreblacklist
_blacklist_url=https://projects.parabola.nu/blacklist.git/plain/blacklist.txt
it_works_with_just_pkgname() {
- v="$(libreblacklist normalize <<<skype)"; [[ $v == 'skype::' ]]
+ 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'
+ line='linux:linux-libre:fsf:id:[semifree] blobs and firmware'
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' ]]
+ v="$(libreblacklist get-reason <<<"$line")"; [[ $v == '[semifree] blobs and firmware' ]]
}
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:' ]]
+ v="$(libreblacklist normalize <<<'#comment')"; [[ -z $v ]]
+ 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:ref)"; [[ $v == 'pkg:rep:ref::' ]]
+ v="$(libreblacklist normalize <<<pkg:rep:ref:)"; [[ $v == 'pkg:rep:ref::' ]]
+ v="$(libreblacklist normalize <<<pkg:rep:ref:id)"; [[ $v == 'pkg:rep:ref:id:' ]]
+ v="$(libreblacklist normalize <<<pkg:rep:ref:id:)"; [[ $v == 'pkg:rep:ref:id:' ]]
+ v="$(libreblacklist normalize <<<pkg:rep:ref:id:reason)"; [[ $v == 'pkg:rep:ref:id:reason' ]]
}
it_works_with_colons_in_reason() {
- line='package:replacement:my:reason'
+ line='package:replacement:ref:id:my:reason'
v="$(libreblacklist normalize <<<"$line")"; [[ $v == "$line" ]]
v="$(libreblacklist get-pkg <<<"$line")"; [[ $v == 'package' ]]
v="$(libreblacklist get-rep <<<"$line")"; [[ $v == 'replacement' ]]