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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
#!/usr/bin/env bats
load _test_base
function setup {
install_fixture_key "$TEST_DEFAULT_USER"
set_state_initial
set_state_git
set_state_secret_init
set_state_secret_tell "$TEST_DEFAULT_USER"
}
function teardown {
uninstall_fixture_key "$TEST_DEFAULT_USER"
unset_current_state
}
@test "run 'removeperson' without arguments" {
run git secret removeperson
[ "$status" -eq 1 ]
}
@test "run 'removeperson' with short name" {
local name
# don't complain about sed
# shellcheck disable=SC2001
name=$(echo "$TEST_DEFAULT_USER" | sed -e 's/@.*//')
# removeperson must use full email, not short name
run git secret removeperson "$name"
[ "$status" -eq 1 ]
# Then whoknows will be ok because user3@gitsecret.io still knows
run git secret whoknows
[ "$status" -eq 0 ]
# Testing output:
[[ "$output" == *"$TEST_DEFAULT_USER"* ]]
}
@test "run 'removeperson' with email" {
local email="$TEST_DEFAULT_USER"
run git secret removeperson "$email"
[ "$status" -eq 0 ]
# Testing output:
[[ "$output" == *"$email"* ]]
# Then whoknows must return an error with status code 1:
run git secret whoknows
[ "$status" -eq 1 ]
}
@test "run 'removeperson' with multiple arguments" {
# Adding second user:
install_fixture_key "$TEST_SECOND_USER"
set_state_secret_tell "$TEST_SECOND_USER"
local default_email="$TEST_DEFAULT_USER"
local second_email="$TEST_SECOND_USER"
run git secret removeperson "$default_email" "$second_email"
[ "$status" -eq 0 ]
# Testing output:
[[ "$output" == *"$default_email"* ]]
[[ "$output" == *"$second_email"* ]]
# Nothing to show:
run git secret whoknows
[ "$status" -eq 1 ]
}
@test "run 'removeperson' with bad arg" {
local email="$TEST_DEFAULT_USER"
run git secret removeperson -Z "$email"
[ "$status" -ne 0 ]
}
@test "run the 'killperson' alias" {
run git secret killperson
[ "$status" -eq 1 ]
}
@test "run 'removeperson' with email added twice" {
local email="$TEST_DEFAULT_USER"
# This should fail because you can't add the same email twice
run git secret tell "$email"
[ "$status" -ne 0 ]
# Then test that the normal remove test runs
run git secret removeperson "$email"
[ "$status" -eq 0 ]
# Testing output:
[[ "$output" == *"$email"* ]]
# Then whoknows must return an error with status code 1, because no one is in list
run git secret whoknows
[ "$status" -eq 1 ]
}
|