git-secret/tests/test_list.bats
sobolevn 9d0a2ac1c1
Adds fixes to subdirectories bug.
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
2017-03-06 00:46:49 +03:00

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 ]
}