mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-02 21:40:18 +00:00
078729a0c6
When searching for files to be removed after being hidden we must use find with -path instead of -name if we want to remove files in subdirectories as well.
134 lines
2.8 KiB
Bash
134 lines
2.8 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load _test_base
|
|
|
|
FILE_TO_HIDE="file_to_hide"
|
|
FILE_CONTENTS="hidden content юникод"
|
|
|
|
|
|
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"
|
|
set_state_secret_add "$FILE_TO_HIDE" "$FILE_CONTENTS"
|
|
}
|
|
|
|
|
|
function teardown {
|
|
rm "$FILE_TO_HIDE"
|
|
|
|
uninstall_fixture_key $TEST_DEFAULT_USER
|
|
unset_current_state
|
|
}
|
|
|
|
|
|
@test "run 'hide' normally" {
|
|
run git secret hide
|
|
|
|
# Command must execute normally:
|
|
[ "$status" -eq 0 ]
|
|
[ "$output" = "done. all 1 files are hidden." ]
|
|
|
|
# New files should be crated:
|
|
local encrypted_file=$(_get_encrypted_filename "$FILE_TO_HIDE")
|
|
[ -f "$encrypted_file" ]
|
|
}
|
|
|
|
|
|
@test "run 'hide' with multiple files" {
|
|
# Preparations:
|
|
local second_file="second_file.txt"
|
|
local second_content="some content"
|
|
set_state_secret_add "$second_file" "$second_content"
|
|
|
|
# Now it should hide 2 files:
|
|
run git secret hide
|
|
[ "$status" -eq 0 ]
|
|
[ "$output" = "done. all 2 files are hidden." ]
|
|
|
|
# Cleaning up:
|
|
rm "$second_file"
|
|
}
|
|
|
|
|
|
@test "run 'hide' with '-c' and '-v'" {
|
|
# Preparations:
|
|
local encrypted_filename=$(_get_encrypted_filename "$FILE_TO_HIDE")
|
|
set_state_secret_hide # so it would be data to clean
|
|
|
|
run git secret hide -v -c
|
|
[ "$status" -eq 0 ]
|
|
|
|
# File should be still there (it is not deletion):
|
|
[ -f "$FILE_TO_HIDE" ]
|
|
|
|
# Output should be verbose:
|
|
[[ "$output" == *"cleaning"* ]]
|
|
[[ "$output" == *"$encrypted_filename"* ]]
|
|
}
|
|
|
|
|
|
@test "run 'hide' with '-d'" {
|
|
run git secret hide -d
|
|
[ "$status" -eq 0 ]
|
|
|
|
ls && pwd
|
|
|
|
# File must be removed:
|
|
[ ! -f "$FILE_TO_HIDE" ]
|
|
}
|
|
|
|
|
|
@test "run 'hide' with '-d' and '-v'" {
|
|
run git secret hide -v -d
|
|
[ "$status" -eq 0 ]
|
|
|
|
ls && pwd
|
|
|
|
# File must be removed:
|
|
[ ! -f "$FILE_TO_HIDE" ]
|
|
|
|
# It should be verbose:
|
|
[[ "$output" == *"removing unencrypted files"* ]]
|
|
[[ "$output" == *"$FILE_TO_HIDE"* ]]
|
|
}
|
|
|
|
|
|
@test "run 'hide' with '-d' and '-v' and files in subdirectories" {
|
|
# Preparations:
|
|
local root_dir='test_sub_dir'
|
|
mkdir -p "$root_dir"
|
|
local second_file="$root_dir/second_file.txt"
|
|
local second_content="some content"
|
|
set_state_secret_add "$second_file" "$second_content"
|
|
|
|
# Verify that the second file is there:
|
|
[ -f "$second_file" ]
|
|
|
|
# Now it should hide 2 files:
|
|
run git secret hide -v -d
|
|
[ "$status" -eq 0 ]
|
|
|
|
# File must be removed:
|
|
[ ! -f "$FILE_TO_HIDE" ]
|
|
[ ! -f "$second_file" ]
|
|
|
|
# It should be verbose:
|
|
[[ "$output" == *"removing unencrypted files"* ]]
|
|
[[ "$output" == *"$FILE_TO_HIDE"* ]]
|
|
[[ "$output" == *"$second_file"* ]]
|
|
}
|
|
|
|
|
|
@test "run 'hide' with multiple users" {
|
|
install_fixture_key "$TEST_SECOND_USER"
|
|
set_state_secret_tell "$TEST_SECOND_USER"
|
|
|
|
run git secret hide
|
|
[ "$status" -eq 0 ]
|
|
[ "$output" = "done. all 1 files are hidden." ]
|
|
}
|