2005-11-29 23:10:24 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
test_description='git mv in subdirs'
|
2005-11-29 23:10:24 +01:00
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'prepare reference tree' \
|
|
|
|
'mkdir path0 path1 &&
|
2008-08-08 11:26:28 +02:00
|
|
|
cp "$TEST_DIRECTORY"/../COPYING path0/COPYING &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git add path0/COPYING &&
|
2008-09-03 10:59:31 +02:00
|
|
|
git commit -m add -a'
|
2005-11-29 23:10:24 +01:00
|
|
|
|
|
|
|
test_expect_success \
|
2006-03-03 17:23:32 +01:00
|
|
|
'moving the file out of subdirectory' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'cd path0 && git mv COPYING ../path1/COPYING'
|
2005-11-29 23:10:24 +01:00
|
|
|
|
|
|
|
# in path0 currently
|
|
|
|
test_expect_success \
|
|
|
|
'commiting the change' \
|
2008-09-03 10:59:31 +02:00
|
|
|
'cd .. && git commit -m move-out -a'
|
2005-11-29 23:10:24 +01:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'checking the commit' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git diff-tree -r -M --name-status HEAD^ HEAD | \
|
2008-01-05 05:06:48 +01:00
|
|
|
grep "^R100..*path0/COPYING..*path1/COPYING"'
|
2005-11-29 23:10:24 +01:00
|
|
|
|
2006-03-03 17:23:32 +01:00
|
|
|
test_expect_success \
|
|
|
|
'moving the file back into subdirectory' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'cd path0 && git mv ../path1/COPYING COPYING'
|
2006-03-03 17:23:32 +01:00
|
|
|
|
|
|
|
# in path0 currently
|
|
|
|
test_expect_success \
|
|
|
|
'commiting the change' \
|
2008-09-03 10:59:31 +02:00
|
|
|
'cd .. && git commit -m move-in -a'
|
2006-03-03 17:23:32 +01:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'checking the commit' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git diff-tree -r -M --name-status HEAD^ HEAD | \
|
2008-01-05 05:06:48 +01:00
|
|
|
grep "^R100..*path1/COPYING..*path0/COPYING"'
|
2006-03-03 17:23:32 +01:00
|
|
|
|
2009-01-14 18:03:21 +01:00
|
|
|
test_expect_success \
|
|
|
|
'checking -k on non-existing file' \
|
|
|
|
'git mv -k idontexist path0'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'checking -k on untracked file' \
|
|
|
|
'touch untracked1 &&
|
|
|
|
git mv -k untracked1 path0 &&
|
|
|
|
test -f untracked1 &&
|
|
|
|
test ! -f path0/untracked1'
|
|
|
|
|
2009-01-14 18:03:22 +01:00
|
|
|
test_expect_success \
|
2009-01-14 18:03:21 +01:00
|
|
|
'checking -k on multiple untracked files' \
|
|
|
|
'touch untracked2 &&
|
|
|
|
git mv -k untracked1 untracked2 path0 &&
|
|
|
|
test -f untracked1 &&
|
|
|
|
test -f untracked2 &&
|
2009-02-04 10:32:06 +01:00
|
|
|
test ! -f path0/untracked1 &&
|
2009-01-14 18:03:21 +01:00
|
|
|
test ! -f path0/untracked2'
|
|
|
|
|
2009-02-04 10:32:08 +01:00
|
|
|
test_expect_success \
|
2009-02-04 10:32:07 +01:00
|
|
|
'checking -f on untracked file with existing target' \
|
|
|
|
'touch path0/untracked1 &&
|
2010-10-03 22:00:10 +02:00
|
|
|
test_must_fail git mv -f untracked1 path0 &&
|
2009-02-04 10:32:07 +01:00
|
|
|
test ! -f .git/index.lock &&
|
|
|
|
test -f untracked1 &&
|
|
|
|
test -f path0/untracked1'
|
|
|
|
|
2009-01-14 18:03:21 +01:00
|
|
|
# clean up the mess in case bad things happen
|
|
|
|
rm -f idontexist untracked1 untracked2 \
|
|
|
|
path0/idontexist path0/untracked1 path0/untracked2 \
|
|
|
|
.git/index.lock
|
|
|
|
|
2006-07-26 15:44:08 +02:00
|
|
|
test_expect_success \
|
|
|
|
'adding another file' \
|
2008-08-08 11:26:28 +02:00
|
|
|
'cp "$TEST_DIRECTORY"/../README path0/README &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git add path0/README &&
|
2008-09-03 10:59:31 +02:00
|
|
|
git commit -m add2 -a'
|
2006-07-26 15:44:08 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'moving whole subdirectory' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git mv path0 path2'
|
2006-07-26 15:44:08 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'commiting the change' \
|
2008-09-03 10:59:31 +02:00
|
|
|
'git commit -m dir-move -a'
|
2006-07-26 15:44:08 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'checking the commit' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git diff-tree -r -M --name-status HEAD^ HEAD | \
|
2008-01-05 05:06:48 +01:00
|
|
|
grep "^R100..*path0/COPYING..*path2/COPYING" &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git diff-tree -r -M --name-status HEAD^ HEAD | \
|
2008-01-05 05:06:48 +01:00
|
|
|
grep "^R100..*path0/README..*path2/README"'
|
2006-07-26 15:44:08 +02:00
|
|
|
|
2006-08-16 02:20:32 +02:00
|
|
|
test_expect_success \
|
|
|
|
'succeed when source is a prefix of destination' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git mv path2/COPYING path2/COPYING-renamed'
|
2006-08-16 02:20:32 +02:00
|
|
|
|
2006-07-26 19:41:05 +02:00
|
|
|
test_expect_success \
|
|
|
|
'moving whole subdirectory into subdirectory' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git mv path2 path1'
|
2006-07-26 19:41:05 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'commiting the change' \
|
2008-09-03 10:59:31 +02:00
|
|
|
'git commit -m dir-move -a'
|
2006-07-26 19:41:05 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'checking the commit' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git diff-tree -r -M --name-status HEAD^ HEAD | \
|
2008-01-05 05:06:48 +01:00
|
|
|
grep "^R100..*path2/COPYING..*path1/path2/COPYING" &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git diff-tree -r -M --name-status HEAD^ HEAD | \
|
2008-01-05 05:06:48 +01:00
|
|
|
grep "^R100..*path2/README..*path1/path2/README"'
|
2006-07-26 19:41:05 +02:00
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success \
|
2006-07-26 19:47:54 +02:00
|
|
|
'do not move directory over existing directory' \
|
2008-07-12 17:47:52 +02:00
|
|
|
'mkdir path0 && mkdir path0/path2 && test_must_fail git mv path2 path0'
|
2006-07-26 19:47:54 +02:00
|
|
|
|
2006-08-18 12:42:39 +02:00
|
|
|
test_expect_success \
|
|
|
|
'move into "."' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git mv path1/path2/ .'
|
2006-08-18 12:42:39 +02:00
|
|
|
|
2006-10-02 07:22:07 +02:00
|
|
|
test_expect_success "Michael Cassar's test case" '
|
|
|
|
rm -fr .git papers partA &&
|
2007-01-12 22:01:46 +01:00
|
|
|
git init &&
|
2006-10-02 07:22:07 +02:00
|
|
|
mkdir -p papers/unsorted papers/all-papers partA &&
|
|
|
|
echo a > papers/unsorted/Thesis.pdf &&
|
|
|
|
echo b > partA/outline.txt &&
|
|
|
|
echo c > papers/unsorted/_another &&
|
|
|
|
git add papers partA &&
|
|
|
|
T1=`git write-tree` &&
|
|
|
|
|
|
|
|
git mv papers/unsorted/Thesis.pdf papers/all-papers/moo-blah.pdf &&
|
|
|
|
|
|
|
|
T=`git write-tree` &&
|
|
|
|
git ls-tree -r $T | grep partA/outline.txt || {
|
|
|
|
git ls-tree -r $T
|
|
|
|
(exit 1)
|
|
|
|
}
|
|
|
|
'
|
|
|
|
|
2006-12-03 20:42:47 +01:00
|
|
|
rm -fr papers partA path?
|
|
|
|
|
|
|
|
test_expect_success "Sergey Vlasov's test case" '
|
|
|
|
rm -fr .git &&
|
2007-01-12 22:01:46 +01:00
|
|
|
git init &&
|
2006-12-03 20:42:47 +01:00
|
|
|
mkdir ab &&
|
|
|
|
date >ab.c &&
|
|
|
|
date >ab/d &&
|
|
|
|
git add ab.c ab &&
|
|
|
|
git commit -m 'initial' &&
|
|
|
|
git mv ab a
|
|
|
|
'
|
|
|
|
|
2008-02-04 08:59:17 +01:00
|
|
|
test_expect_success 'absolute pathname' '(
|
|
|
|
|
|
|
|
rm -fr mine &&
|
|
|
|
mkdir mine &&
|
|
|
|
cd mine &&
|
|
|
|
test_create_repo one &&
|
|
|
|
cd one &&
|
|
|
|
mkdir sub &&
|
|
|
|
>sub/file &&
|
|
|
|
git add sub/file &&
|
|
|
|
|
|
|
|
git mv sub "$(pwd)/in" &&
|
|
|
|
! test -d sub &&
|
|
|
|
test -d in &&
|
|
|
|
git ls-files --error-unmatch in/file
|
|
|
|
|
|
|
|
|
|
|
|
)'
|
|
|
|
|
|
|
|
test_expect_success 'absolute pathname outside should fail' '(
|
|
|
|
|
|
|
|
rm -fr mine &&
|
|
|
|
mkdir mine &&
|
|
|
|
cd mine &&
|
|
|
|
out=$(pwd) &&
|
|
|
|
test_create_repo one &&
|
|
|
|
cd one &&
|
|
|
|
mkdir sub &&
|
|
|
|
>sub/file &&
|
|
|
|
git add sub/file &&
|
|
|
|
|
2008-07-12 17:47:52 +02:00
|
|
|
test_must_fail git mv sub "$out/out" &&
|
2008-02-04 08:59:17 +01:00
|
|
|
test -d sub &&
|
|
|
|
! test -d ../in &&
|
|
|
|
git ls-files --error-unmatch sub/file
|
|
|
|
|
|
|
|
)'
|
|
|
|
|
2010-01-22 23:17:06 +01:00
|
|
|
test_expect_success 'git mv to move multiple sources into a directory' '
|
|
|
|
rm -fr .git && git init &&
|
|
|
|
mkdir dir other &&
|
|
|
|
>dir/a.txt &&
|
|
|
|
>dir/b.txt &&
|
|
|
|
git add dir/?.txt &&
|
|
|
|
git mv dir/a.txt dir/b.txt other &&
|
|
|
|
git ls-files >actual &&
|
|
|
|
{ echo other/a.txt; echo other/b.txt; } >expect &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2008-07-21 02:25:56 +02:00
|
|
|
test_expect_success 'git mv should not change sha1 of moved cache entry' '
|
|
|
|
|
|
|
|
rm -fr .git &&
|
|
|
|
git init &&
|
|
|
|
echo 1 >dirty &&
|
|
|
|
git add dirty &&
|
2010-10-31 08:30:58 +01:00
|
|
|
entry="$(git ls-files --stage dirty | cut -f 1)" &&
|
2008-07-21 02:25:56 +02:00
|
|
|
git mv dirty dirty2 &&
|
|
|
|
[ "$entry" = "$(git ls-files --stage dirty2 | cut -f 1)" ] &&
|
|
|
|
echo 2 >dirty2 &&
|
|
|
|
git mv dirty2 dirty &&
|
|
|
|
[ "$entry" = "$(git ls-files --stage dirty | cut -f 1)" ]
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
rm -f dirty dirty2
|
|
|
|
|
2009-03-04 22:38:24 +01:00
|
|
|
test_expect_success SYMLINKS 'git mv should overwrite symlink to a file' '
|
2008-07-21 02:25:56 +02:00
|
|
|
|
|
|
|
rm -fr .git &&
|
|
|
|
git init &&
|
|
|
|
echo 1 >moved &&
|
|
|
|
ln -s moved symlink &&
|
|
|
|
git add moved symlink &&
|
|
|
|
test_must_fail git mv moved symlink &&
|
|
|
|
git mv -f moved symlink &&
|
|
|
|
! test -e moved &&
|
|
|
|
test -f symlink &&
|
|
|
|
test "$(cat symlink)" = 1 &&
|
2008-07-29 07:27:39 +02:00
|
|
|
git update-index --refresh &&
|
2008-07-21 02:25:56 +02:00
|
|
|
git diff-files --quiet
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
rm -f moved symlink
|
|
|
|
|
2009-03-04 22:38:24 +01:00
|
|
|
test_expect_success SYMLINKS 'git mv should overwrite file with a symlink' '
|
2008-07-21 02:25:56 +02:00
|
|
|
|
|
|
|
rm -fr .git &&
|
|
|
|
git init &&
|
|
|
|
echo 1 >moved &&
|
|
|
|
ln -s moved symlink &&
|
|
|
|
git add moved symlink &&
|
|
|
|
test_must_fail git mv symlink moved &&
|
|
|
|
git mv -f symlink moved &&
|
|
|
|
! test -e symlink &&
|
|
|
|
test -h moved &&
|
2008-07-29 07:27:39 +02:00
|
|
|
git update-index --refresh &&
|
2008-07-21 02:25:56 +02:00
|
|
|
git diff-files --quiet
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
rm -f moved symlink
|
|
|
|
|
2005-11-29 23:10:24 +01:00
|
|
|
test_done
|