2007-07-16 06:53:50 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2007 Eric Wong
|
|
|
|
|
|
|
|
|
2008-09-08 12:02:08 +02:00
|
|
|
test_description='git svn dcommit can commit renames of files with ugly names'
|
2007-07-16 06:53:50 +02:00
|
|
|
|
|
|
|
. ./lib-git-svn.sh
|
|
|
|
|
2008-05-04 07:37:59 +02:00
|
|
|
test_expect_success 'load repository with strange names' '
|
2008-08-08 11:26:28 +02:00
|
|
|
svnadmin load -q "$rawsvnrepo" < "$TEST_DIRECTORY"/t9115/funky-names.dump &&
|
2008-05-11 02:14:49 +02:00
|
|
|
start_httpd gtk+
|
2008-05-04 07:37:59 +02:00
|
|
|
'
|
2007-07-16 06:53:50 +02:00
|
|
|
|
2008-05-04 07:37:59 +02:00
|
|
|
test_expect_success 'init and fetch repository' '
|
|
|
|
git svn init "$svnrepo" &&
|
2007-07-16 06:53:50 +02:00
|
|
|
git svn fetch &&
|
|
|
|
git reset --hard git-svn
|
2008-05-04 07:37:59 +02:00
|
|
|
'
|
2007-07-16 06:53:50 +02:00
|
|
|
|
|
|
|
test_expect_success 'create file in existing ugly and empty dir' '
|
2009-11-16 03:57:16 +01:00
|
|
|
mkdir -p "#{bad_directory_name}" &&
|
2007-07-16 06:53:50 +02:00
|
|
|
echo hi > "#{bad_directory_name}/ foo" &&
|
|
|
|
git update-index --add "#{bad_directory_name}/ foo" &&
|
|
|
|
git commit -m "new file in ugly parent" &&
|
|
|
|
git svn dcommit
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'rename ugly file' '
|
|
|
|
git mv "#{bad_directory_name}/ foo" "file name with feces" &&
|
|
|
|
git commit -m "rename ugly file" &&
|
|
|
|
git svn dcommit
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'rename pretty file' '
|
|
|
|
echo :x > pretty &&
|
|
|
|
git update-index --add pretty &&
|
|
|
|
git commit -m "pretty :x" &&
|
|
|
|
git svn dcommit &&
|
2009-11-16 03:57:16 +01:00
|
|
|
mkdir -p regular_dir_name &&
|
2007-07-16 06:53:50 +02:00
|
|
|
git mv pretty regular_dir_name/pretty &&
|
|
|
|
git commit -m "moved pretty file" &&
|
|
|
|
git svn dcommit
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'rename pretty file into ugly one' '
|
|
|
|
git mv regular_dir_name/pretty "#{bad_directory_name}/ booboo" &&
|
|
|
|
git commit -m booboo &&
|
|
|
|
git svn dcommit
|
|
|
|
'
|
|
|
|
|
2008-05-11 02:14:49 +02:00
|
|
|
test_expect_success 'add a file with plus signs' '
|
|
|
|
echo .. > +_+ &&
|
|
|
|
git update-index --add +_+ &&
|
|
|
|
git commit -m plus &&
|
|
|
|
mkdir gtk+ &&
|
|
|
|
git mv +_+ gtk+/_+_ &&
|
|
|
|
git commit -m plus_dir &&
|
|
|
|
git svn dcommit
|
|
|
|
'
|
|
|
|
|
2008-05-14 22:45:16 +02:00
|
|
|
test_expect_success 'clone the repository to test rebase' '
|
|
|
|
git svn clone "$svnrepo" test-rebase &&
|
2010-09-07 03:42:54 +02:00
|
|
|
(
|
|
|
|
cd test-rebase &&
|
|
|
|
echo test-rebase >test-rebase &&
|
2008-05-11 02:14:49 +02:00
|
|
|
git add test-rebase &&
|
2010-09-06 20:39:54 +02:00
|
|
|
git commit -m test-rebase
|
2010-09-07 03:42:54 +02:00
|
|
|
)
|
2008-05-14 22:45:16 +02:00
|
|
|
'
|
2008-05-11 02:14:49 +02:00
|
|
|
|
2008-05-14 22:45:16 +02:00
|
|
|
test_expect_success 'make a commit to test rebase' '
|
2008-05-11 02:14:49 +02:00
|
|
|
echo test-rebase-main > test-rebase-main &&
|
|
|
|
git add test-rebase-main &&
|
|
|
|
git commit -m test-rebase-main &&
|
|
|
|
git svn dcommit
|
2008-05-14 22:45:16 +02:00
|
|
|
'
|
2008-05-11 02:14:49 +02:00
|
|
|
|
2008-09-08 12:02:08 +02:00
|
|
|
test_expect_success 'git svn rebase works inside a fresh-cloned repository' '
|
2008-05-11 02:14:49 +02:00
|
|
|
cd test-rebase &&
|
|
|
|
git svn rebase &&
|
|
|
|
test -e test-rebase-main &&
|
|
|
|
test -e test-rebase
|
2008-05-14 22:45:16 +02:00
|
|
|
'
|
2008-05-11 02:14:49 +02:00
|
|
|
|
2007-07-16 06:53:50 +02:00
|
|
|
stop_httpd
|
|
|
|
|
|
|
|
test_done
|