bug fix for 'reveal' in a subdir (#903) (#905)

pull/906/head
Ochan Kwon 2 years ago committed by GitHub
parent 68a05aa632
commit b0378617e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -44,8 +44,10 @@ function reveal {
local counter=0
local to_show=( "$@" )
local path_prepend_func='_prepend_relative_root_path'
if [ ${#to_show[@]} -eq 0 ]; then
path_prepend_func='_prepend_root_path'
while read -r record; do
to_show+=("$record") # add record to array
done < "$path_mappings"
@ -55,7 +57,7 @@ function reveal {
local filename
local path
filename=$(_get_record_filename "$line")
path=$(_prepend_relative_root_path "$filename") # this uses the _relative version because of #710
path=$("$path_prepend_func" "$filename")
if [[ "$filename" == *"$SECRETS_EXTENSION" ]]; then
_abort "cannot decrypt to secret version of file: $filename"

@ -293,3 +293,25 @@ function teardown {
# clean up
rm -rf subdir
}
@test "run 'reveal' for all files from subdir" {
local password
password=$(test_user_password "$TEST_DEFAULT_USER")
mkdir -p subdir
echo "content2" > subdir/new_filename.txt
( # 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"
[ "$status" -eq 0 ]
) # end subshell
# clean up
rm -rf subdir
}

Loading…
Cancel
Save