2005-08-17 09:01:07 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='git-apply handling copy/rename patch.
|
|
|
|
|
|
|
|
'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
# setup
|
|
|
|
|
|
|
|
cat >test-patch <<\EOF
|
|
|
|
diff --git a/foo b/bar
|
|
|
|
similarity index 47%
|
2006-07-28 17:46:11 +02:00
|
|
|
rename from foo
|
|
|
|
rename to bar
|
2005-08-17 09:01:07 +02:00
|
|
|
--- a/foo
|
|
|
|
+++ b/bar
|
|
|
|
@@ -1 +1 @@
|
|
|
|
-This is foo
|
|
|
|
+This is bar
|
|
|
|
EOF
|
|
|
|
|
|
|
|
echo 'This is foo' >foo
|
|
|
|
chmod +x foo
|
|
|
|
|
|
|
|
test_expect_success setup \
|
2005-09-08 02:26:23 +02:00
|
|
|
'git-update-index --add foo'
|
2005-08-17 09:01:07 +02:00
|
|
|
|
|
|
|
test_expect_success apply \
|
|
|
|
'git-apply --index --stat --summary --apply test-patch'
|
|
|
|
|
2007-01-29 01:16:53 +01:00
|
|
|
if [ "$(git config --get core.filemode)" = false ]
|
2006-01-05 12:55:58 +01:00
|
|
|
then
|
|
|
|
say 'filemode disabled on the filesystem'
|
|
|
|
else
|
|
|
|
test_expect_success validate \
|
|
|
|
'test -f bar && ls -l bar | grep "^-..x......"'
|
|
|
|
fi
|
2005-08-17 09:01:07 +02:00
|
|
|
|
2006-07-28 17:46:11 +02:00
|
|
|
test_expect_success 'apply reverse' \
|
|
|
|
'git-apply -R --index --stat --summary --apply test-patch &&
|
|
|
|
test "$(cat foo)" = "This is foo"'
|
|
|
|
|
|
|
|
cat >test-patch <<\EOF
|
|
|
|
diff --git a/foo b/bar
|
|
|
|
similarity index 47%
|
|
|
|
copy from foo
|
|
|
|
copy to bar
|
|
|
|
--- a/foo
|
|
|
|
+++ b/bar
|
|
|
|
@@ -1 +1 @@
|
|
|
|
-This is foo
|
|
|
|
+This is bar
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success 'apply copy' \
|
|
|
|
'git-apply --index --stat --summary --apply test-patch &&
|
|
|
|
test "$(cat bar)" = "This is bar" -a "$(cat foo)" = "This is foo"'
|
|
|
|
|
2005-08-17 09:01:07 +02:00
|
|
|
test_done
|