Add list.bats.

This commit is contained in:
William Melody 2016-01-26 18:58:32 -08:00
parent 5847cec598
commit 09c375633f
1 changed files with 44 additions and 0 deletions

44
test/list.bats Normal file
View 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" ]]
}