Adding siteciphers tests

This commit is contained in:
Alex Epstein 2017-07-15 12:34:14 -04:00
parent 0b16cfedad
commit 21b70e3daf
2 changed files with 36 additions and 0 deletions

View File

@ -5,5 +5,6 @@ before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq bats
- sudo apt-get install -qq vlc
- sudo apt-get install -qq openssl
script:
- bats tests

35
tests/siteciphers.bats Executable file
View File

@ -0,0 +1,35 @@
@test "Testing siteciphers tool" {
echo siteciphers
}
@test "Check for latest version of bash-snippets on update" {
run siteciphers update
[ "$status" -eq 0 ]
[ "$output" = "Bash-Snippets is already the latest version" ]
}
@test "No arguments prints usage instructions" {
run siteciphers
[ "$status" -eq 1 ]
[ "${lines[0]}" = "Siteciphers" ]
}
@test "The -h option should print usage" {
run siteciphers -h
[ "$status" -eq 0 ]
[ "${lines[0]}" = "Siteciphers" ]
}
@test "Running siteciphers on travis-ci" {
run siteciphers travis-ci.org
[ "$status" -eq 0 ]
[ "${lines[0]}" = "ECDHE-RSA-AES256-GCM-SHA384 - NO (tlsv1 alert insufficient security)" ]
}
@test "Get the tools version with -v" {
run siteciphers -v
[ "$status" -eq 0 ]
result=$( echo $(cheat -v) | grep -Eo "Version")
[ "$result" = "Version" ]
}