2005-08-17 09:01:07 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
#
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
test_description='git apply handling copy/rename patch.
|
2005-08-17 09:01:07 +02:00
|
|
|
|
|
|
|
'
|
|
|
|
. ./test-lib.sh
|
2010-08-13 22:40:04 +02:00
|
|
|
. "$TEST_DIRECTORY"/lib-prereq-FILEMODE.sh
|
2005-08-17 09:01:07 +02:00
|
|
|
|
|
|
|
# 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 \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git update-index --add foo'
|
2005-08-17 09:01:07 +02:00
|
|
|
|
|
|
|
test_expect_success apply \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git apply --index --stat --summary --apply test-patch'
|
2005-08-17 09:01:07 +02:00
|
|
|
|
2009-02-27 22:20:57 +01:00
|
|
|
test_expect_success FILEMODE validate \
|
|
|
|
'test -f bar && ls -l bar | grep "^-..x......"'
|
|
|
|
|
2006-07-28 17:46:11 +02:00
|
|
|
test_expect_success 'apply reverse' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git apply -R --index --stat --summary --apply test-patch &&
|
2006-07-28 17:46:11 +02:00
|
|
|
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' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git apply --index --stat --summary --apply test-patch &&
|
2006-07-28 17:46:11 +02:00
|
|
|
test "$(cat bar)" = "This is bar" -a "$(cat foo)" = "This is foo"'
|
|
|
|
|
2005-08-17 09:01:07 +02:00
|
|
|
test_done
|