mirror of
https://github.com/octoleo/hosts.git
synced 2024-11-24 13:47:35 +00:00
Add list.bats.
This commit is contained in:
parent
5847cec598
commit
09c375633f
44
test/list.bats
Normal file
44
test/list.bats
Normal file
@ -0,0 +1,44 @@
|
||||
#!/usr/bin/env bats
|
||||
|
||||
load test_helper
|
||||
|
||||
# `hosts list` #############################################################
|
||||
|
||||
@test "\`list\` exits with status 0." {
|
||||
{
|
||||
run "$_HOSTS" add 0.0.0.0 example.com
|
||||
run "$_HOSTS" add 0.0.0.0 example.net
|
||||
run "$_HOSTS" add 127.0.0.2 example.com
|
||||
run "$_HOSTS" disable 0.0.0.0
|
||||
}
|
||||
|
||||
run "$_HOSTS" list
|
||||
printf "\$status: %s\n" "$status"
|
||||
printf "\$output: '%s'\n" "$output"
|
||||
[[ $status -eq 0 ]]
|
||||
}
|
||||
|
||||
@test "\`list\` prints lists of enabled and disabled records." {
|
||||
{
|
||||
run "$_HOSTS" add 0.0.0.0 example.com
|
||||
run "$_HOSTS" add 0.0.0.0 example.net
|
||||
run "$_HOSTS" add 127.0.0.2 example.com
|
||||
run "$_HOSTS" disable 0.0.0.0
|
||||
}
|
||||
|
||||
run "$_HOSTS" list
|
||||
printf "\$status: %s\n" "$status"
|
||||
printf "\$output: '%s'\n" "$output"
|
||||
_expected="\
|
||||
127.0.0.1 localhost
|
||||
255.255.255.255 broadcasthost
|
||||
::1 localhost
|
||||
fe80::1%lo0 localhost
|
||||
127.0.0.2 example.com
|
||||
|
||||
Disabled:
|
||||
0.0.0.0 example.com
|
||||
0.0.0.0 example.net"
|
||||
_compare "'$_expected'" "'$output'"
|
||||
[[ "$output" == "$_expected" ]]
|
||||
}
|
Loading…
Reference in New Issue
Block a user