summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Rast <trast@student.ethz.ch>2009-08-13 12:29:40 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-08-14 19:40:09 (GMT)
commitb319ef70a94731a5c6f18d07a49d5dda3f06f5d3 (patch)
tree36b20255ac7dd270f175fe438316ba8ec6e08cfe
parent8f0bef6df91c48d79f982bdb55f784ce445ba5b2 (diff)
downloadgit-b319ef70a94731a5c6f18d07a49d5dda3f06f5d3.zip
git-b319ef70a94731a5c6f18d07a49d5dda3f06f5d3.tar.gz
git-b319ef70a94731a5c6f18d07a49d5dda3f06f5d3.tar.bz2
Add a small patch-mode testing library
The tests for {reset,commit,stash} -p will frequently have to set both worktree and index states to known values, and verify that the outcome (again both worktree and index) are what was expected. Add a small helper library that lets us do these tasks more easily. Signed-off-by: Thomas Rast <trast@student.ethz.ch> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/lib-patch-mode.sh36
1 files changed, 36 insertions, 0 deletions
diff --git a/t/lib-patch-mode.sh b/t/lib-patch-mode.sh
new file mode 100755
index 0000000..afb4b66
--- /dev/null
+++ b/t/lib-patch-mode.sh
@@ -0,0 +1,36 @@
+. ./test-lib.sh
+
+set_state () {
+ echo "$3" > "$1" &&
+ git add "$1" &&
+ echo "$2" > "$1"
+}
+
+save_state () {
+ noslash="$(echo "$1" | tr / _)" &&
+ cat "$1" > _worktree_"$noslash" &&
+ git show :"$1" > _index_"$noslash"
+}
+
+set_and_save_state () {
+ set_state "$@" &&
+ save_state "$1"
+}
+
+verify_state () {
+ test "$(cat "$1")" = "$2" &&
+ test "$(git show :"$1")" = "$3"
+}
+
+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 () {
+ test "$(cat _head)" = "$(git rev-parse HEAD)"
+}