2016-02-21 13:26:17 +00:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load _test_base
|
|
|
|
|
2018-07-14 19:23:17 +00:00
|
|
|
FILE_TO_HIDE="$TEST_DEFAULT_FILENAME"
|
2016-02-21 13:26:17 +00:00
|
|
|
FILE_CONTENTS="hidden content юникод"
|
|
|
|
|
2016-04-10 11:14:41 +00:00
|
|
|
FINGERPRINT=""
|
|
|
|
|
2016-02-21 13:26:17 +00:00
|
|
|
|
|
|
|
function setup {
|
2016-04-10 11:14:41 +00:00
|
|
|
FINGERPRINT=$(install_fixture_full_key "$TEST_DEFAULT_USER")
|
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
|
|
|
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"
|
|
|
|
set_state_secret_add "$FILE_TO_HIDE" "$FILE_CONTENTS"
|
|
|
|
set_state_secret_hide
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function teardown {
|
2017-03-05 21:46:49 +00:00
|
|
|
rm "$FILE_TO_HIDE"
|
|
|
|
|
2016-04-10 11:14:41 +00:00
|
|
|
uninstall_fixture_full_key "$TEST_DEFAULT_USER" "$FINGERPRINT"
|
2016-02-21 13:26:17 +00:00
|
|
|
unset_current_state
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@test "run 'reveal' with password argument" {
|
|
|
|
cp "$FILE_TO_HIDE" "${FILE_TO_HIDE}2"
|
|
|
|
rm -f "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ -f "$FILE_TO_HIDE" ]
|
|
|
|
|
2017-09-28 23:59:15 +00:00
|
|
|
cmp -s "$FILE_TO_HIDE" "${FILE_TO_HIDE}2"
|
2016-02-21 13:26:17 +00:00
|
|
|
|
2017-03-05 21:46:49 +00:00
|
|
|
rm "${FILE_TO_HIDE}2"
|
2016-02-21 13:26:17 +00:00
|
|
|
}
|
|
|
|
|
2019-03-31 00:13:54 +00:00
|
|
|
@test "run 'reveal' with bad arg" {
|
|
|
|
cp "$FILE_TO_HIDE" "${FILE_TO_HIDE}2"
|
|
|
|
rm -f "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
|
|
|
run git secret reveal -Z k-d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
[ "$status" -ne 0 ]
|
|
|
|
}
|
2016-02-21 13:26:17 +00:00
|
|
|
|
2016-05-21 21:20:20 +00:00
|
|
|
@test "run 'reveal' with '-f'" {
|
2017-03-05 21:46:49 +00:00
|
|
|
rm "$FILE_TO_HIDE"
|
2016-05-21 21:20:20 +00:00
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
|
|
|
run git secret reveal -f -d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ -f "$FILE_TO_HIDE" ]
|
|
|
|
}
|
|
|
|
|
2019-03-25 15:37:24 +00:00
|
|
|
@test "run 'reveal' with '-v'" {
|
|
|
|
rm "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
|
|
|
run git secret reveal -v -d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ -f "$FILE_TO_HIDE" ]
|
|
|
|
}
|
|
|
|
|
2016-05-21 21:20:20 +00:00
|
|
|
|
2018-08-18 14:09:58 +00:00
|
|
|
@test "run 'reveal' with '-P'" {
|
2018-07-22 20:13:06 +00:00
|
|
|
rm "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
2018-07-23 03:13:12 +00:00
|
|
|
|
|
|
|
local secret_file=$(_get_encrypted_filename "$FILE_TO_HIDE")
|
|
|
|
chmod o-rwx "$secret_file"
|
|
|
|
|
2018-08-18 14:09:58 +00:00
|
|
|
run git secret reveal -P -d "$TEST_GPG_HOMEDIR" -p "$password"
|
2018-07-22 20:13:06 +00:00
|
|
|
|
|
|
|
[ "$status" -eq 0 ]
|
2018-07-23 02:43:37 +00:00
|
|
|
|
2018-07-23 03:16:01 +00:00
|
|
|
local secret_perm
|
|
|
|
local file_perm
|
2019-03-05 13:41:13 +00:00
|
|
|
secret_perm=$(ls -l "$FILE_TO_HIDE$SECRETS_EXTENSION" | cut -d' ' -f1)
|
2018-07-23 03:13:12 +00:00
|
|
|
file_perm=$(ls -l "$FILE_TO_HIDE" | cut -d' ' -f1)
|
2018-08-18 14:31:57 +00:00
|
|
|
|
2018-08-18 14:34:48 +00:00
|
|
|
# text prefixed with '# ' and sent to file descriptor 3 is 'diagnostic' (debug) output for devs
|
2018-08-18 14:31:57 +00:00
|
|
|
#echo "# secret_perm: $secret_perm, file_perm: $file_perm" >&3
|
2018-07-23 02:43:37 +00:00
|
|
|
|
2018-07-23 03:13:12 +00:00
|
|
|
[ "$secret_perm" = "$file_perm" ]
|
2018-07-23 02:43:37 +00:00
|
|
|
|
2018-07-22 20:13:06 +00:00
|
|
|
[ -f "$FILE_TO_HIDE" ]
|
|
|
|
}
|
|
|
|
|
2016-02-21 13:26:17 +00:00
|
|
|
@test "run 'reveal' with wrong password" {
|
2017-03-05 21:46:49 +00:00
|
|
|
rm "$FILE_TO_HIDE"
|
2016-02-21 13:26:17 +00:00
|
|
|
|
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "WRONG"
|
|
|
|
[ "$status" -eq 2 ]
|
|
|
|
[ ! -f "$FILE_TO_HIDE" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-31 00:13:54 +00:00
|
|
|
|
2016-02-21 13:26:17 +00:00
|
|
|
@test "run 'reveal' for attacker" {
|
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
|
|
|
# Preparations
|
2017-03-05 21:46:49 +00:00
|
|
|
rm "$FILE_TO_HIDE"
|
2016-02-21 13:26:17 +00:00
|
|
|
|
2018-10-11 01:21:58 +00:00
|
|
|
local attacker_fingerprint=$(install_fixture_full_key "$TEST_ATTACKER_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
|
|
|
local password=$(test_user_password "$TEST_ATTACKER_USER")
|
2016-02-21 13:26:17 +00:00
|
|
|
|
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
|
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
|
|
|
# This should fail, nothing should be created:
|
2016-02-21 13:26:17 +00:00
|
|
|
[ "$status" -eq 2 ]
|
|
|
|
[ ! -f "$FILE_TO_HIDE" ]
|
|
|
|
|
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
|
|
|
# Cleaning up:
|
2018-10-11 01:21:58 +00:00
|
|
|
uninstall_fixture_full_key "$TEST_ATTACKER_USER" "$attacker_fingerprint"
|
2016-02-21 13:26:17 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 01:21:58 +00:00
|
|
|
@test "run 'reveal' for attacker with -F (force)" {
|
|
|
|
# Preparations
|
|
|
|
rm "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local attacker_fingerprint=$(install_fixture_full_key "$TEST_ATTACKER_USER")
|
|
|
|
local password=$(test_user_password "$TEST_ATTACKER_USER")
|
|
|
|
|
|
|
|
run git secret reveal -F -d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
|
|
|
|
#echo "# status is $status" >&3
|
|
|
|
|
|
|
|
# This should return a status code of 1 also. Not sure how to test that we don't die early
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ ! -f "$FILE_TO_HIDE" ]
|
|
|
|
|
|
|
|
|
|
|
|
touch "$FILE_TO_HIDE" #create this file so uninstall below works
|
|
|
|
|
|
|
|
# Cleaning up:
|
|
|
|
uninstall_fixture_full_key "$TEST_ATTACKER_USER" "$attacker_fingerprint"
|
|
|
|
}
|
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 'reveal' for multiple users (with key deletion)" {
|
|
|
|
# Preparations:
|
|
|
|
local second_fingerprint=$(install_fixture_full_key "$TEST_SECOND_USER")
|
|
|
|
local password=$(test_user_password "$TEST_SECOND_USER")
|
|
|
|
set_state_secret_tell "$TEST_SECOND_USER"
|
2016-02-21 13:26:17 +00:00
|
|
|
set_state_secret_hide
|
|
|
|
|
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
|
|
|
# We are removing a secret key of the first user to be sure
|
|
|
|
# that it is not used in decryption:
|
2016-04-10 11:14:41 +00:00
|
|
|
uninstall_fixture_full_key "$TEST_DEFAULT_USER" "$FINGERPRINT"
|
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
|
|
|
# Testing:
|
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ -f "$FILE_TO_HIDE" ]
|
|
|
|
|
|
|
|
# Cleaning up:
|
|
|
|
uninstall_fixture_full_key "$TEST_SECOND_USER" "$second_fingerprint"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@test "run 'reveal' for multiple users (normally)" {
|
|
|
|
# Preparations:
|
|
|
|
local second_fingerprint=$(install_fixture_full_key "$TEST_SECOND_USER")
|
2017-09-27 19:48:35 +00:00
|
|
|
# bug in gpg v2.0.22, need to use default password
|
|
|
|
local password=$(test_user_password "$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_secret_tell "$TEST_SECOND_USER"
|
|
|
|
set_state_secret_hide
|
|
|
|
|
|
|
|
# Testing:
|
2016-02-21 13:26:17 +00:00
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ -f "$FILE_TO_HIDE" ]
|
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
|
|
|
|
|
|
|
# Cleaning up:
|
|
|
|
uninstall_fixture_full_key "$TEST_SECOND_USER" "$second_fingerprint"
|
2016-02-21 13:26:17 +00:00
|
|
|
}
|