git-secret/tests/test_add.bats
sobolevn 3577c165ec Added -i flag to the git-secret-add command, which now auto-ignores unignored files.
Also added a test case for this feature.
Other changes:
1. refactored `Makefile` to have `.PHONY` marks
2. added install target to the `Makefile`, now one can run `make install` (with optional `$PREFIX` variable)
3. updated docs for `git-secret.7`, `git-secret-add.1`
4. refactored some commands to `shift` arguments
5. added a test case to the 'other-file-extension' situation
5. added `.github` folder to store templates

Closed #18
2016-05-14 14:03:33 +03:00

94 lines
1.8 KiB
Bash

#!/usr/bin/env bats
load _test_base
function setup {
install_fixture_key "$TEST_DEFAULT_USER"
set_state_git
set_state_secret_init
set_state_secret_tell "$TEST_DEFAULT_USER"
}
function teardown {
uninstall_fixture_key "$TEST_DEFAULT_USER"
unset_current_state
}
@test "run 'add' for unignored file" {
local TEST_FILE='test_file'
touch "$TEST_FILE"
echo "content" > "$TEST_FILE"
run git secret add "$TEST_FILE"
rm -f "$TEST_FILE"
[ "$status" -eq 1 ]
}
@test "run 'add' for unignored file with '-i' option" {
local TEST_FILE='test_file.auto_ignore'
touch "$TEST_FILE"
echo "content" > "$TEST_FILE"
run git secret add -i "$TEST_FILE"
[ "$status" -eq 0 ]
run _file_has_line "$TEST_FILE" ".gitignore"
[ "$status" -eq 0 ]
rm -f "$TEST_FILE"
}
@test "run 'add' normally" {
local filename="local_file"
echo "content" > "$filename"
echo "$filename" > ".gitignore"
run git secret add "$filename"
rm -f "$filename" ".gitignore"
[ "$status" -eq 0 ]
local files_list=$(cat "$SECRETS_DIR_PATHS_MAPPING")
[ "$files_list" = "$filename" ]
}
@test "run 'add' twice for one file" {
local filename="local_file"
echo "content" > "$filename"
echo "$filename" > ".gitignore"
run git secret add "$filename"
run git secret add "$filename"
rm -f "$filename" ".gitignore"
[ "$status" -eq 0 ]
[ "$output" = "1 items added." ]
local files_list=`cat "$SECRETS_DIR_PATHS_MAPPING"`
[ "$files_list" = "$filename" ]
}
@test "run 'add' for multiple files" {
local filename1="local_file1"
echo "content1" > "$filename1"
echo "$filename1" > ".gitignore"
local filename2="local_file2"
echo "content2" > "$filename2"
echo "$filename2" >> ".gitignore"
run git secret add "$filename1" "$filename2"
rm -f "$filename1" "$filename2" ".gitignore"
[ "$status" -eq 0 ]
[ "$output" = "2 items added." ]
}