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
77 lines
1.3 KiB
Bash
77 lines
1.3 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load _test_base
|
|
|
|
|
|
function setup {
|
|
set_state_initial
|
|
set_state_git
|
|
}
|
|
|
|
|
|
function teardown {
|
|
unset_current_state
|
|
}
|
|
|
|
|
|
@test "run 'init' without '.git'" {
|
|
remove_git_repository
|
|
|
|
run git secret init
|
|
[ "$status" -eq 1 ]
|
|
}
|
|
|
|
|
|
@test "run 'init' normally" {
|
|
run git secret init
|
|
[ "$status" -eq 0 ]
|
|
|
|
[[ -d "${_SECRETS_DIR}" ]]
|
|
}
|
|
|
|
|
|
@test "run 'init' in subfolder" {
|
|
# This test covers this issue:
|
|
# https://github.com/sobolevn/git-secret/issues/83
|
|
|
|
if [[ "$BATS_RUNNING_FROM_GIT" -eq 1 ]]; then
|
|
skip "this test is skiped while 'git commmit'"
|
|
fi
|
|
|
|
# Preparations
|
|
local test_dir='test_dir'
|
|
local nested_dir="$test_dir/nested/dirs"
|
|
local current_dir=$(pwd)
|
|
|
|
mkdir -p "$nested_dir"
|
|
cd "$nested_dir"
|
|
|
|
# Test:
|
|
run git secret init
|
|
[ "$status" -eq 0 ]
|
|
|
|
# It should not be created in the current folder:
|
|
[[ ! -d "${_SECRETS_DIR}" ]]
|
|
|
|
# It should be created here:
|
|
local secrets_dir
|
|
secrets_dir=$(_get_secrets_dir)
|
|
[[ -d "$secrets_dir" ]]
|
|
|
|
# Cleaning up:
|
|
cd "$current_dir"
|
|
rm -r "$test_dir"
|
|
}
|
|
|
|
|
|
@test "run 'init' with '.gitsecret' already inited" {
|
|
local secrets_dir
|
|
secrets_dir=$(_get_secrets_dir)
|
|
|
|
mkdir "$secrets_dir"
|
|
|
|
run git secret init
|
|
[ "$output" = "already inited. abort." ]
|
|
[ "$status" -eq 1 ]
|
|
}
|