2016-02-21 13:26:17 +00:00
|
|
|
#!/usr/bin/env bats
|
2021-05-03 16:21:33 +00:00
|
|
|
# shellcheck disable=SC2155
|
2016-02-21 13:26:17 +00:00
|
|
|
|
|
|
|
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")
|
2019-10-09 18:05:31 +00:00
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password"
|
2016-02-21 13:26:17 +00:00
|
|
|
|
|
|
|
[ "$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
|
|
|
}
|
|
|
|
|
2021-05-03 11:43:02 +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")
|
2019-10-09 18:05:31 +00:00
|
|
|
run git secret reveal -Z k-d "$TEST_GPG_HOMEDIR" -p "$password"
|
2019-03-31 00:13:54 +00:00
|
|
|
[ "$status" -ne 0 ]
|
|
|
|
}
|
2016-02-21 13:26:17 +00:00
|
|
|
|
2021-05-03 11:43:02 +00:00
|
|
|
|
2020-01-24 22:04:02 +00:00
|
|
|
@test "run 'reveal' on secret version of file" {
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password" "$FILE_TO_HIDE$SECRETS_EXTENSION"
|
|
|
|
[ "$status" -ne 0 ]
|
|
|
|
}
|
|
|
|
|
2021-05-03 11:43:02 +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")
|
2019-10-09 18:05:31 +00:00
|
|
|
run git secret reveal -f -d "$TEST_GPG_HOMEDIR" -p "$password"
|
2016-05-21 21:20:20 +00:00
|
|
|
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ -f "$FILE_TO_HIDE" ]
|
|
|
|
}
|
|
|
|
|
2021-05-03 11:43:02 +00:00
|
|
|
|
2021-06-26 13:24:26 +00:00
|
|
|
@test "run 'reveal' binary with 'SECRETS_GPG_ARMOR=1'" {
|
|
|
|
rm "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
|
|
|
# Armor should not change anything here:
|
|
|
|
SECRETS_GPG_ARMOR=1 run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ -f "$FILE_TO_HIDE" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@test "run 'reveal' armored with 'SECRETS_GPG_ARMOR=1'" {
|
|
|
|
# We need to clean existing binary files:
|
|
|
|
git secret clean
|
|
|
|
|
|
|
|
# Now, let's hide files once again with `--armor` enabled:
|
|
|
|
set_state_secret_hide '1'
|
|
|
|
|
|
|
|
rm "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
|
|
|
# Armor should not change anything here:
|
|
|
|
SECRETS_GPG_ARMOR=1 run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password"
|
|
|
|
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ -f "$FILE_TO_HIDE" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@test "run 'reveal' armored with 'SECRETS_GPG_ARMOR=0'" {
|
|
|
|
# We need to clean existing binary files:
|
|
|
|
git secret clean
|
|
|
|
|
|
|
|
# Now, let's hide files once again with `--armor` enabled:
|
|
|
|
set_state_secret_hide '1'
|
|
|
|
|
|
|
|
rm "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
|
|
|
# Armor should not change anything here:
|
|
|
|
SECRETS_GPG_ARMOR=0 run git secret reveal -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")
|
2019-10-09 18:05:31 +00:00
|
|
|
run git secret reveal -v -d "$TEST_GPG_HOMEDIR" -p "$password"
|
2019-03-25 15:37:24 +00:00
|
|
|
|
|
|
|
[ "$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"
|
|
|
|
|
2019-10-09 18:05:31 +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
|
|
|
|
2019-08-30 17:17:53 +00:00
|
|
|
## permissions should match.
|
2018-07-23 03:16:01 +00:00
|
|
|
local secret_perm
|
|
|
|
local file_perm
|
2019-08-30 13:35:47 +00:00
|
|
|
file_perm=$($SECRETS_OCTAL_PERMS_COMMAND "$FILE_TO_HIDE")
|
|
|
|
secret_perm=$($SECRETS_OCTAL_PERMS_COMMAND "$FILE_TO_HIDE$SECRETS_EXTENSION")
|
2021-05-03 11:43:02 +00:00
|
|
|
#echo "# secret_perm: $secret_perm, file_perm: $file_perm" >&3
|
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" ]
|
|
|
|
}
|
|
|
|
|
2021-05-03 11:43:02 +00:00
|
|
|
|
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
|
|
|
|
2019-10-09 18:05:31 +00:00
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "WRONG"
|
2016-02-21 13:26:17 +00:00
|
|
|
[ "$status" -eq 2 ]
|
|
|
|
[ ! -f "$FILE_TO_HIDE" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@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
|
|
|
|
2019-10-09 18:05:31 +00:00
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password"
|
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
|
|
|
# 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
|
|
|
}
|
|
|
|
|
2021-05-03 11:43:02 +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")
|
|
|
|
|
2019-10-09 18:05:31 +00:00
|
|
|
run git secret reveal -F -d "$TEST_GPG_HOMEDIR" -p "$password"
|
2018-10-11 01:21:58 +00:00
|
|
|
|
|
|
|
#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
|
|
|
|
2021-05-03 11:43:02 +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:
|
2019-10-09 18:05:31 +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
|
|
|
|
|
|
|
[ "$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:
|
2019-10-09 18:05:31 +00:00
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password"
|
2016-02-21 13:26:17 +00:00
|
|
|
|
|
|
|
[ "$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
|
|
|
}
|
2019-08-16 20:53:57 +00:00
|
|
|
|
2021-05-03 11:43:02 +00:00
|
|
|
|
2019-08-16 20:53:57 +00:00
|
|
|
@test "run 'reveal' with SECRETS_PINENTRY=loopback" {
|
|
|
|
rm -f "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
2021-05-03 11:43:02 +00:00
|
|
|
SECRETS_PINENTRY=loopback run git secret reveal \
|
|
|
|
-d "$TEST_GPG_HOMEDIR" \
|
|
|
|
-p "$password"
|
2019-08-16 20:53:57 +00:00
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
}
|
|
|
|
|
2021-05-03 11:43:02 +00:00
|
|
|
|
2019-08-16 20:53:57 +00:00
|
|
|
@test "run 'reveal' with SECRETS_PINENTRY=error" {
|
|
|
|
if [[ "$GPG_VER_MIN_21" -ne 1 ]]; then
|
|
|
|
skip "this test is skipped on gpg before version 2.1"
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f "$FILE_TO_HIDE"
|
|
|
|
|
|
|
|
local password=$(test_user_password "$TEST_DEFAULT_USER")
|
2021-05-03 11:43:02 +00:00
|
|
|
SECRETS_PINENTRY=error run git secret reveal \
|
|
|
|
-d "$TEST_GPG_HOMEDIR" \
|
|
|
|
-p "$password"
|
2019-08-16 20:53:57 +00:00
|
|
|
[ "$status" -ne 0 ]
|
|
|
|
}
|
2022-01-15 19:54:22 +00:00
|
|
|
|
|
|
|
@test "run 'reveal' with named file from subdir" {
|
|
|
|
local password
|
|
|
|
password=$(test_user_password "$TEST_DEFAULT_USER")
|
|
|
|
|
|
|
|
mkdir subdir
|
|
|
|
echo "content2" > subdir/new_filename.txt
|
|
|
|
|
2022-02-20 15:39:37 +00:00
|
|
|
( # start subshell for subdir tests
|
|
|
|
cd subdir
|
|
|
|
run git secret add new_filename.txt
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
run git secret hide
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
|
|
|
|
run git secret reveal -d "$TEST_GPG_HOMEDIR" -p "$password" new_filename.txt
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
) # end subshell
|
2022-01-15 19:54:22 +00:00
|
|
|
|
|
|
|
# clean up
|
|
|
|
rm -rf subdir
|
|
|
|
}
|