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
59 lines
1.1 KiB
Bash
59 lines
1.1 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 'list' normally" {
|
|
run git secret list
|
|
[ "$status" -eq 0 ]
|
|
[ "$output" = "$FILE_TO_HIDE" ]
|
|
}
|
|
|
|
|
|
@test "run 'list' with multiple files" {
|
|
# Preparations:
|
|
local second_file="second_file.txt"
|
|
set_state_secret_add "$second_file" "$FILE_CONTENTS"
|
|
|
|
run git secret list
|
|
[ "$status" -eq 0 ]
|
|
|
|
# Now it should list two files:
|
|
[[ "$output" == *"$FILE_TO_HIDE"* ]]
|
|
[[ "$output" == *"$second_file"* ]]
|
|
|
|
# Cleaning up:
|
|
rm "$second_file"
|
|
}
|
|
|
|
|
|
@test "run 'list' on empty repo" {
|
|
git secret remove "$FILE_TO_HIDE"
|
|
|
|
# Running `list` on empty mapping should result an error:
|
|
run git secret list
|
|
[ "$status" -eq 1 ]
|
|
}
|