mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
74f8a07166
* test that hiding secret with expired key fails * add test of user key without username. * revert to performing most tests with 'user1'. * move user4 private/public key fixtures * factor code fetching emails from keyrings, add comments. * use factored _warn_or_abort() * add to, clean up, and clarify comments.
66 lines
1.6 KiB
Bash
66 lines
1.6 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
## this tests using TEST_NONAME_USER, which has a email but no username.
|
|
# This test is copied from the start of test_remove.bats, and exercises an add and a remove.
|
|
|
|
load _test_base
|
|
|
|
FIRST_FILE="$TEST_DEFAULT_FILENAME"
|
|
SECOND_FILE="$TEST_SECOND_FILENAME"
|
|
|
|
function setup {
|
|
install_fixture_key "$TEST_NONAME_USER"
|
|
|
|
set_state_initial
|
|
set_state_git
|
|
set_state_secret_init
|
|
set_state_secret_tell "$TEST_NONAME_USER"
|
|
set_state_secret_add "$FIRST_FILE" "somecontent"
|
|
set_state_secret_add "$SECOND_FILE" "somecontent2"
|
|
set_state_secret_hide
|
|
}
|
|
|
|
|
|
function teardown {
|
|
rm "$FIRST_FILE" "$SECOND_FILE"
|
|
|
|
uninstall_fixture_key "$TEST_NONAME_USER"
|
|
unset_current_state
|
|
}
|
|
|
|
|
|
function _has_line {
|
|
local line="$1"
|
|
|
|
local path_mappings
|
|
path_mappings=$(_get_secrets_dir_paths_mapping)
|
|
|
|
local result=$(grep -q "$line" "$path_mappings"; echo $?)
|
|
echo "$result"
|
|
}
|
|
|
|
|
|
@test "run 'remove' for nameless user normally" {
|
|
run git secret remove "$SECOND_FILE"
|
|
[ "$status" -eq 0 ]
|
|
|
|
# Test output:
|
|
[[ "$output" == *"removed from index."* ]]
|
|
[[ "$output" == *"ensure that files: [$SECOND_FILE] are now not ignored."* ]]
|
|
|
|
# Mapping should not contain the second file:
|
|
local mapping_contains=$(_has_line "$SECOND_FILE")
|
|
[ "$mapping_contains" -eq 1 ]
|
|
|
|
# But the first file must not change:
|
|
local other_files=$(_has_line "$FIRST_FILE")
|
|
[ "$other_files" -eq 0 ]
|
|
|
|
# Both files should be present:
|
|
local first_encrypted_file=$(_get_encrypted_filename "$FIRST_FILE")
|
|
local second_encrypted_file=$(_get_encrypted_filename "$SECOND_FILE")
|
|
|
|
[ -f "$first_encrypted_file" ]
|
|
[ -f "$second_encrypted_file" ]
|
|
}
|