diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:34:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:34:27 +0000 |
commit | 4dbdc42d9e7c3968ff7f690d00680419c9b8cb0f (patch) | |
tree | 47c1d492e9c956c1cd2b74dbd3b9d8b0db44dc4e /t/lib-patch-mode.sh | |
parent | Initial commit. (diff) | |
download | git-4dbdc42d9e7c3968ff7f690d00680419c9b8cb0f.tar.xz git-4dbdc42d9e7c3968ff7f690d00680419c9b8cb0f.zip |
Adding upstream version 1:2.43.0.upstream/1%2.43.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 't/lib-patch-mode.sh')
-rw-r--r-- | t/lib-patch-mode.sh | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/t/lib-patch-mode.sh b/t/lib-patch-mode.sh new file mode 100644 index 0000000..89ca1f7 --- /dev/null +++ b/t/lib-patch-mode.sh @@ -0,0 +1,55 @@ +: included from t2016 and others + +. ./test-lib.sh + +# set_state <path> <worktree-content> <index-content> +# +# Prepare the content for path in worktree and the index as specified. +set_state () { + echo "$3" > "$1" && + git add "$1" && + echo "$2" > "$1" +} + +# save_state <path> +# +# Save index/worktree content of <path> in the files _worktree_<path> +# and _index_<path> +save_state () { + noslash="$(echo "$1" | tr / _)" && + cat "$1" > _worktree_"$noslash" && + git show :"$1" > _index_"$noslash" +} + +# set_and_save_state <path> <worktree-content> <index-content> +set_and_save_state () { + set_state "$@" && + save_state "$1" +} + +# verify_state <path> <expected-worktree-content> <expected-index-content> +verify_state () { + echo "$2" >expect && + test_cmp expect "$1" && + + echo "$3" >expect && + git show :"$1" >actual && + test_cmp expect actual +} + +# verify_saved_state <path> +# +# Call verify_state with expected contents from the last save_state +verify_saved_state () { + noslash="$(echo "$1" | tr / _)" && + verify_state "$1" "$(cat _worktree_"$noslash")" "$(cat _index_"$noslash")" +} + +save_head () { + git rev-parse HEAD > _head +} + +verify_saved_head () { + git rev-parse HEAD >actual && + test_cmp _head actual +} |