mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-02 21:40:18 +00:00
9d0a2ac1c1
Changes: 1. Fixes #86, now all variables are accessed as functions 2. Fixes #85, now these use cases are working correctly 3. Fixes #83, now init works relative to `.git` folder 4. Closes #77, zsh-plugin is deprecated 5. Refs #53, done some refactoring to tests 6. Closes #82, added additional information to pull-request template 7. Refs #22, plugins are deprecated 8. Also made a lot of improvments into both code and tests
75 lines
1.5 KiB
Bash
75 lines
1.5 KiB
Bash
#!/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 'killperson' without arguments" {
|
|
run git secret killperson
|
|
[ "$status" -eq 1 ]
|
|
}
|
|
|
|
|
|
@test "run 'killperson' with key name" {
|
|
run git secret killperson "$TEST_DEFAULT_USER"
|
|
[ "$status" -eq 0 ]
|
|
|
|
# Testing output:
|
|
[[ "$output" == *"$TEST_DEFAULT_USER"* ]]
|
|
|
|
# Then whoknows must return an error with status code 1:
|
|
run git secret whoknows
|
|
[ "$status" -eq 1 ]
|
|
}
|
|
|
|
|
|
@test "run 'killperson' with email" {
|
|
local email=$(test_user_email "$TEST_DEFAULT_USER")
|
|
|
|
run git secret killperson "$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 'killperson' with multiple arguments" {
|
|
# Adding second user:
|
|
install_fixture_key "$TEST_SECOND_USER"
|
|
set_state_secret_tell "$TEST_SECOND_USER"
|
|
|
|
local default_email=$(test_user_email "$TEST_DEFAULT_USER")
|
|
local second_email=$(test_user_email "$TEST_SECOND_USER")
|
|
|
|
run git secret killperson "$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 ]
|
|
}
|