2016-02-21 13:26:17 +00:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load _test_base
|
|
|
|
|
|
|
|
|
|
|
|
function setup {
|
|
|
|
install_fixture_key "$TEST_DEFAULT_USER"
|
Version 0.2.2 pre-release
There are a lot of changes, multiple things were refactored: tests,
some commands, building and meta.
Several critical bugs fixed.
Changes:
1. Fixed #74, when `_user_required` was not working after reimporting keys
2. Closes #73, now it is possible to provide multiple emails to the `killperson` command
3. Closes #72, now it is possible to provide multiple emails to the `tell` command
4. Closes #71, now every doc in this project refer to `git-secret.io` instead of old `gh-pages` website
5. Closes #70, now installation section is removed from main `man` file
6. Closes #69, now "See also" section in the `man`s are clickable
7. Closes #61, added "Manual" section to the manuals
8. Refs #38, added `centos` Dockerfile, but `ci` testing is still failing
9. Refs #52, tests are refactored. Added `clean` command tests, removed a lot of hardcoded things, moved tests execution from `./temp` folder to `/tmp`, added a lot of new check in old tests, and some new test cases
10. Refactored `hide` and `clean` commands to be shorter
11. `shellcheck` is now supported with `make lint`
Additional features are not comming to 0.2.2 after this commit.
2017-02-26 13:38:46 +00:00
|
|
|
|
|
|
|
set_state_initial
|
2016-02-21 13:26:17 +00:00
|
|
|
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"
|
|
|
|
[ "$status" -eq 1 ]
|
2016-10-03 15:44:37 +00:00
|
|
|
|
|
|
|
rm -f "$TEST_FILE"
|
2016-02-21 13:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Version 0.2.2 pre-release
There are a lot of changes, multiple things were refactored: tests,
some commands, building and meta.
Several critical bugs fixed.
Changes:
1. Fixed #74, when `_user_required` was not working after reimporting keys
2. Closes #73, now it is possible to provide multiple emails to the `killperson` command
3. Closes #72, now it is possible to provide multiple emails to the `tell` command
4. Closes #71, now every doc in this project refer to `git-secret.io` instead of old `gh-pages` website
5. Closes #70, now installation section is removed from main `man` file
6. Closes #69, now "See also" section in the `man`s are clickable
7. Closes #61, added "Manual" section to the manuals
8. Refs #38, added `centos` Dockerfile, but `ci` testing is still failing
9. Refs #52, tests are refactored. Added `clean` command tests, removed a lot of hardcoded things, moved tests execution from `./temp` folder to `/tmp`, added a lot of new check in old tests, and some new test cases
10. Refactored `hide` and `clean` commands to be shorter
11. `shellcheck` is now supported with `make lint`
Additional features are not comming to 0.2.2 after this commit.
2017-02-26 13:38:46 +00:00
|
|
|
@test "run 'add' for unignored file with '-i'" {
|
2016-05-14 11:03:33 +00:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-21 13:26:17 +00:00
|
|
|
@test "run 'add' normally" {
|
|
|
|
local filename="local_file"
|
|
|
|
echo "content" > "$filename"
|
|
|
|
echo "$filename" > ".gitignore"
|
|
|
|
|
|
|
|
run git secret add "$filename"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
2016-10-03 15:44:37 +00:00
|
|
|
rm -f "$filename" ".gitignore"
|
|
|
|
|
2016-02-21 13:26:17 +00:00
|
|
|
local files_list=$(cat "$SECRETS_DIR_PATHS_MAPPING")
|
|
|
|
[ "$files_list" = "$filename" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-01 20:07:36 +00:00
|
|
|
@test "run 'add' for file in subdirectory" {
|
|
|
|
local TEST_FILE='test_file'
|
|
|
|
local TEST_DIR='test_dir'
|
|
|
|
|
Version 0.2.2 pre-release
There are a lot of changes, multiple things were refactored: tests,
some commands, building and meta.
Several critical bugs fixed.
Changes:
1. Fixed #74, when `_user_required` was not working after reimporting keys
2. Closes #73, now it is possible to provide multiple emails to the `killperson` command
3. Closes #72, now it is possible to provide multiple emails to the `tell` command
4. Closes #71, now every doc in this project refer to `git-secret.io` instead of old `gh-pages` website
5. Closes #70, now installation section is removed from main `man` file
6. Closes #69, now "See also" section in the `man`s are clickable
7. Closes #61, added "Manual" section to the manuals
8. Refs #38, added `centos` Dockerfile, but `ci` testing is still failing
9. Refs #52, tests are refactored. Added `clean` command tests, removed a lot of hardcoded things, moved tests execution from `./temp` folder to `/tmp`, added a lot of new check in old tests, and some new test cases
10. Refactored `hide` and `clean` commands to be shorter
11. `shellcheck` is now supported with `make lint`
Additional features are not comming to 0.2.2 after this commit.
2017-02-26 13:38:46 +00:00
|
|
|
mkdir -p "$TEST_DIR"
|
2016-10-01 20:07:36 +00:00
|
|
|
touch "$TEST_DIR/$TEST_FILE"
|
|
|
|
echo "content" > "$TEST_DIR/$TEST_FILE"
|
|
|
|
echo "$TEST_DIR/$TEST_FILE" > ".gitignore"
|
|
|
|
|
|
|
|
run git secret add "$TEST_DIR/$TEST_FILE"
|
|
|
|
[ "$status" -eq 0 ]
|
2016-10-03 15:44:37 +00:00
|
|
|
[[ "$output" == *"1 items added."* ]]
|
|
|
|
|
|
|
|
rm -rf "$TEST_DIR"
|
2016-10-01 20:07:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-21 13:26:17 +00:00
|
|
|
@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"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ "$output" = "1 items added." ]
|
|
|
|
|
2016-10-03 15:44:37 +00:00
|
|
|
rm -f "$filename" ".gitignore"
|
|
|
|
|
2016-02-21 13:26:17 +00:00
|
|
|
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"
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ "$output" = "2 items added." ]
|
2016-10-03 15:44:37 +00:00
|
|
|
|
|
|
|
rm -f "$filename1" "$filename2" ".gitignore"
|
2016-02-21 13:26:17 +00:00
|
|
|
}
|