2007-11-05 12:21:47 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2007 Eric Wong
|
2008-09-08 12:02:08 +02:00
|
|
|
test_description='git svn dcommit clobber series'
|
2007-11-05 12:21:47 +01:00
|
|
|
. ./lib-git-svn.sh
|
|
|
|
|
2008-05-04 07:37:59 +02:00
|
|
|
test_expect_success 'initialize repo' '
|
2007-11-05 12:21:47 +01:00
|
|
|
mkdir import &&
|
2010-09-06 20:39:54 +02:00
|
|
|
(cd import &&
|
2008-05-04 07:37:59 +02:00
|
|
|
awk "BEGIN { for (i = 1; i < 64; i++) { print i } }" > file
|
2010-09-06 20:39:54 +02:00
|
|
|
svn_cmd import -m "initial" . "$svnrepo"
|
|
|
|
) &&
|
2008-05-04 07:37:59 +02:00
|
|
|
git svn init "$svnrepo" &&
|
2007-11-05 12:21:47 +01:00
|
|
|
git svn fetch &&
|
|
|
|
test -e file
|
2008-05-04 07:37:59 +02:00
|
|
|
'
|
2007-11-05 12:21:47 +01:00
|
|
|
|
2008-05-04 07:37:59 +02:00
|
|
|
test_expect_success '(supposedly) non-conflicting change from SVN' '
|
|
|
|
test x"`sed -n -e 58p < file`" = x58 &&
|
|
|
|
test x"`sed -n -e 61p < file`" = x61 &&
|
2009-05-08 10:06:16 +02:00
|
|
|
svn_cmd co "$svnrepo" tmp &&
|
2010-09-06 20:39:54 +02:00
|
|
|
(cd tmp &&
|
2008-06-25 20:35:13 +02:00
|
|
|
perl -i.bak -p -e "s/^58$/5588/" file &&
|
|
|
|
perl -i.bak -p -e "s/^61$/6611/" file &&
|
2007-11-21 09:57:33 +01:00
|
|
|
poke file &&
|
2008-05-04 07:37:59 +02:00
|
|
|
test x"`sed -n -e 58p < file`" = x5588 &&
|
|
|
|
test x"`sed -n -e 61p < file`" = x6611 &&
|
2010-09-06 20:39:54 +02:00
|
|
|
svn_cmd commit -m "58 => 5588, 61 => 6611"
|
|
|
|
)
|
2008-05-04 07:37:59 +02:00
|
|
|
'
|
2007-11-05 12:21:47 +01:00
|
|
|
|
|
|
|
test_expect_success 'some unrelated changes to git' "
|
|
|
|
echo hi > life &&
|
|
|
|
git update-index --add life &&
|
|
|
|
git commit -m hi-life &&
|
|
|
|
echo bye >> life &&
|
|
|
|
git commit -m bye-life life
|
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'change file but in unrelated area' "
|
|
|
|
test x\"\`sed -n -e 4p < file\`\" = x4 &&
|
|
|
|
test x\"\`sed -n -e 7p < file\`\" = x7 &&
|
2008-06-25 20:35:13 +02:00
|
|
|
perl -i.bak -p -e 's/^4\$/4444/' file &&
|
|
|
|
perl -i.bak -p -e 's/^7\$/7777/' file &&
|
2007-11-05 12:21:47 +01:00
|
|
|
test x\"\`sed -n -e 4p < file\`\" = x4444 &&
|
|
|
|
test x\"\`sed -n -e 7p < file\`\" = x7777 &&
|
|
|
|
git commit -m '4 => 4444, 7 => 7777' file &&
|
|
|
|
git svn dcommit &&
|
2009-05-08 10:06:16 +02:00
|
|
|
svn_cmd up tmp &&
|
2007-11-05 12:21:47 +01:00
|
|
|
cd tmp &&
|
|
|
|
test x\"\`sed -n -e 4p < file\`\" = x4444 &&
|
|
|
|
test x\"\`sed -n -e 7p < file\`\" = x7777 &&
|
|
|
|
test x\"\`sed -n -e 58p < file\`\" = x5588 &&
|
|
|
|
test x\"\`sed -n -e 61p < file\`\" = x6611
|
|
|
|
"
|
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success 'attempt to dcommit with a dirty index' '
|
2007-11-11 19:41:41 +01:00
|
|
|
echo foo >>file &&
|
|
|
|
git add file &&
|
2008-07-12 17:47:52 +02:00
|
|
|
test_must_fail git svn dcommit
|
2007-11-11 19:41:41 +01:00
|
|
|
'
|
|
|
|
|
2007-11-05 12:21:47 +01:00
|
|
|
test_done
|