2006-02-20 18:57:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2006 Eric Wong
|
|
|
|
#
|
|
|
|
|
2008-09-08 10:02:08 +00:00
|
|
|
test_description='git svn basic tests'
|
git-svn: SVN 1.1.x library compatibility
Tested on a plain Ubuntu Hoary installation
using subversion 1.1.1-2ubuntu3
1.1.x issues I had to deal with:
* Avoid the noisy command-line client compatibility check if we
use the libraries.
* get_log() arguments differ (now using a nice wrapper from
Junio's suggestion)
* get_file() is picky about what kind of file handles it gets,
so I ended up redirecting STDOUT. I'm probably overflushing
my file handles, but that's the safest thing to do...
* BDB kept segfaulting on me during tests, so svnadmin will use FSFS
whenever we can.
* If somebody used an expanded CVS $Id$ line inside a file, then
propsetting it to use svn:keywords will cause the original CVS
$Id$ to be retained when asked for the original file. As far as
I can see, this is a server-side issue. We won't care in the
test anymore, as long as it's not expanded by SVN, a static
CVS $Id$ line is fine.
While we're at making ourselves more compatible, avoid grep
along with the -q flag, which is GNU-specific. (grep avoidance
tip from Junio, too)
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-28 10:07:14 +00:00
|
|
|
|
2020-11-18 23:44:42 +00:00
|
|
|
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
tests: mark tests relying on the current default for `init.defaultBranch`
In addition to the manual adjustment to let the `linux-gcc` CI job run
the test suite with `master` and then with `main`, this patch makes sure
that GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME is set in all test scripts
that currently rely on the initial branch name being `master by default.
To determine which test scripts to mark up, the first step was to
force-set the default branch name to `master` in
- all test scripts that contain the keyword `master`,
- t4211, which expects `t/t4211/history.export` with a hard-coded ref to
initialize the default branch,
- t5560 because it sources `t/t556x_common` which uses `master`,
- t8002 and t8012 because both source `t/annotate-tests.sh` which also
uses `master`)
This trick was performed by this command:
$ sed -i '/^ *\. \.\/\(test-lib\|lib-\(bash\|cvs\|git-svn\)\|gitweb-lib\)\.sh$/i\
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master\
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME\
' $(git grep -l master t/t[0-9]*.sh) \
t/t4211*.sh t/t5560*.sh t/t8002*.sh t/t8012*.sh
After that, careful, manual inspection revealed that some of the test
scripts containing the needle `master` do not actually rely on a
specific default branch name: either they mention `master` only in a
comment, or they initialize that branch specificially, or they do not
actually refer to the current default branch. Therefore, the
aforementioned modification was undone in those test scripts thusly:
$ git checkout HEAD -- \
t/t0027-auto-crlf.sh t/t0060-path-utils.sh \
t/t1011-read-tree-sparse-checkout.sh \
t/t1305-config-include.sh t/t1309-early-config.sh \
t/t1402-check-ref-format.sh t/t1450-fsck.sh \
t/t2024-checkout-dwim.sh \
t/t2106-update-index-assume-unchanged.sh \
t/t3040-subprojects-basic.sh t/t3301-notes.sh \
t/t3308-notes-merge.sh t/t3423-rebase-reword.sh \
t/t3436-rebase-more-options.sh \
t/t4015-diff-whitespace.sh t/t4257-am-interactive.sh \
t/t5323-pack-redundant.sh t/t5401-update-hooks.sh \
t/t5511-refspec.sh t/t5526-fetch-submodules.sh \
t/t5529-push-errors.sh t/t5530-upload-pack-error.sh \
t/t5548-push-porcelain.sh \
t/t5552-skipping-fetch-negotiator.sh \
t/t5572-pull-submodule.sh t/t5608-clone-2gb.sh \
t/t5614-clone-submodules-shallow.sh \
t/t7508-status.sh t/t7606-merge-custom.sh \
t/t9302-fast-import-unpack-limit.sh
We excluded one set of test scripts in these commands, though: the range
of `git p4` tests. The reason? `git p4` stores the (foreign) remote
branch in the branch called `p4/master`, which is obviously not the
default branch. Manual analysis revealed that only five of these tests
actually require a specific default branch name to pass; They were
modified thusly:
$ sed -i '/^ *\. \.\/lib-git-p4\.sh$/i\
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master\
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME\
' t/t980[0167]*.sh t/t9811*.sh
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-18 23:44:19 +00:00
|
|
|
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
|
|
|
|
2009-02-24 20:13:39 +00:00
|
|
|
. ./lib-git-svn.sh
|
|
|
|
|
t: use user-specified utf-8 locale for testing svn
In some test-cases, UTF-8 locale is required. To find such locale,
we're using the first available UTF-8 locale that returned by
"locale -a".
However, the locale(1) utility is unavailable on some systems,
e.g. Linux with musl libc.
However, without "locale -a", we can't guess provided UTF-8 locale.
Add a Makefile knob GIT_TEST_UTF8_LOCALE and activate it for
linux-musl in our CI system.
Rename t/lib-git-svn.sh:prepare_a_utf8_locale to prepare_utf8_locale,
since we no longer prepare the variable named "a_utf8_locale",
but set up a fallback value for GIT_TEST_UTF8_LOCALE instead.
The fallback will be LC_ALL, LANG environment variable,
or the first UTF-8 locale from output of "locale -a", in that order.
Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2021-06-08 06:56:28 +00:00
|
|
|
prepare_utf8_locale
|
git-svn: SVN 1.1.x library compatibility
Tested on a plain Ubuntu Hoary installation
using subversion 1.1.1-2ubuntu3
1.1.x issues I had to deal with:
* Avoid the noisy command-line client compatibility check if we
use the libraries.
* get_log() arguments differ (now using a nice wrapper from
Junio's suggestion)
* get_file() is picky about what kind of file handles it gets,
so I ended up redirecting STDOUT. I'm probably overflushing
my file handles, but that's the safest thing to do...
* BDB kept segfaulting on me during tests, so svnadmin will use FSFS
whenever we can.
* If somebody used an expanded CVS $Id$ line inside a file, then
propsetting it to use svn:keywords will cause the original CVS
$Id$ to be retained when asked for the original file. As far as
I can see, this is a server-side issue. We won't care in the
test anymore, as long as it's not expanded by SVN, a static
CVS $Id$ line is fine.
While we're at making ourselves more compatible, avoid grep
along with the -q flag, which is GNU-specific. (grep avoidance
tip from Junio, too)
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-28 10:07:14 +00:00
|
|
|
|
2016-07-22 20:17:31 +00:00
|
|
|
test_expect_success 'git svn --version works anywhere' '
|
2016-12-16 02:31:59 +00:00
|
|
|
nongit git svn --version
|
2016-07-22 20:17:31 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git svn help works anywhere' '
|
2016-12-16 02:31:59 +00:00
|
|
|
nongit git svn help
|
2016-07-22 20:17:31 +00:00
|
|
|
'
|
|
|
|
|
2006-02-20 18:57:29 +00:00
|
|
|
test_expect_success \
|
2023-05-20 16:13:55 +00:00
|
|
|
'initialize git svn' '
|
2006-12-27 00:27:37 +00:00
|
|
|
mkdir import &&
|
2010-09-07 01:42:54 +00:00
|
|
|
(
|
|
|
|
cd import &&
|
|
|
|
echo foo >foo &&
|
2018-07-02 00:24:04 +00:00
|
|
|
ln -s foo foo.link &&
|
2010-09-07 01:42:54 +00:00
|
|
|
mkdir -p dir/a/b/c/d/e &&
|
|
|
|
echo "deep dir" >dir/a/b/c/d/e/file &&
|
|
|
|
mkdir bar &&
|
|
|
|
echo "zzz" >bar/zzz &&
|
2016-02-07 19:11:37 +00:00
|
|
|
echo "#!/bin/sh" >exec.sh &&
|
|
|
|
chmod +x exec.sh &&
|
2010-09-07 01:42:54 +00:00
|
|
|
svn_cmd import -m "import for git svn" . "$svnrepo" >/dev/null
|
2010-09-06 18:39:54 +00:00
|
|
|
) &&
|
2006-12-27 00:27:37 +00:00
|
|
|
rm -rf import &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn init "$svnrepo"'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
2023-05-20 16:13:55 +00:00
|
|
|
test_expect_success 'import an SVN revision into git' '
|
|
|
|
git svn fetch
|
|
|
|
'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
2008-05-04 05:37:59 +00:00
|
|
|
test_expect_success "checkout from svn" 'svn co "$svnrepo" "$SVN_TREE"'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
|
|
|
name='try a deep --rmdir with a commit'
|
2008-05-04 05:37:59 +00:00
|
|
|
test_expect_success "$name" '
|
2016-05-13 20:47:14 +00:00
|
|
|
git checkout -f -b mybranch remotes/git-svn &&
|
2006-12-27 00:27:37 +00:00
|
|
|
mv dir/a/b/c/d/e/file dir/file &&
|
|
|
|
cp dir/file file &&
|
|
|
|
git update-index --add --remove dir/a/b/c/d/e/file dir/file file &&
|
2008-05-04 05:37:59 +00:00
|
|
|
git commit -m "$name" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch &&
|
2009-05-08 08:06:16 +00:00
|
|
|
svn_cmd up "$SVN_TREE" &&
|
2008-05-04 05:37:59 +00:00
|
|
|
test -d "$SVN_TREE"/dir && test ! -d "$SVN_TREE"/dir/a'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
name='detect node change from file to directory #1'
|
t: don't spuriously close and reopen quotes
In the test scripts, the recommended style is, e.g.:
test_expect_success 'name' '
do-something somehow &&
do-some-more testing
'
When using this style, any single quote in the multi-line test section
is actually closing the lone single quotes that surround it.
It can be a non-issue in practice:
test_expect_success 'sed a little' '
sed -e 's/hi/lo/' in >out # "ok": no whitespace in s/hi/lo/
'
Or it can be a bug in the test, e.g., because variable interpolation
happens before the test even begins executing:
v=abc
test_expect_success 'variable interpolation' '
v=def &&
echo '"$v"' # abc
'
Change several such in-test single quotes to use double quotes instead
or, in a few cases, drop them altogether. These were identified using
some crude grepping. We're not fixing any test bugs here, but we're
hopefully making these tests slightly easier to grok and to maintain.
There are legitimate use cases for closing a quote and opening a new
one, e.g., both '\'' and '"'"' can be used to produce a literal single
quote. I'm not touching any of those here.
In t9401, tuck the redirecting ">" to the filename while we're touching
those lines.
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-08-06 20:08:53 +00:00
|
|
|
test_expect_success "$name" '
|
2006-12-27 00:27:37 +00:00
|
|
|
mkdir dir/new_file &&
|
|
|
|
mv dir/file dir/new_file/file &&
|
|
|
|
mv dir/new_file dir/file &&
|
|
|
|
git update-index --remove dir/file &&
|
|
|
|
git update-index --add dir/file/file &&
|
t: don't spuriously close and reopen quotes
In the test scripts, the recommended style is, e.g.:
test_expect_success 'name' '
do-something somehow &&
do-some-more testing
'
When using this style, any single quote in the multi-line test section
is actually closing the lone single quotes that surround it.
It can be a non-issue in practice:
test_expect_success 'sed a little' '
sed -e 's/hi/lo/' in >out # "ok": no whitespace in s/hi/lo/
'
Or it can be a bug in the test, e.g., because variable interpolation
happens before the test even begins executing:
v=abc
test_expect_success 'variable interpolation' '
v=def &&
echo '"$v"' # abc
'
Change several such in-test single quotes to use double quotes instead
or, in a few cases, drop them altogether. These were identified using
some crude grepping. We're not fixing any test bugs here, but we're
hopefully making these tests slightly easier to grok and to maintain.
There are legitimate use cases for closing a quote and opening a new
one, e.g., both '\'' and '"'"' can be used to produce a literal single
quote. I'm not touching any of those here.
In t9401, tuck the redirecting ">" to the filename while we're touching
those lines.
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-08-06 20:08:53 +00:00
|
|
|
git commit -m "$name" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
test_must_fail git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch
|
t: don't spuriously close and reopen quotes
In the test scripts, the recommended style is, e.g.:
test_expect_success 'name' '
do-something somehow &&
do-some-more testing
'
When using this style, any single quote in the multi-line test section
is actually closing the lone single quotes that surround it.
It can be a non-issue in practice:
test_expect_success 'sed a little' '
sed -e 's/hi/lo/' in >out # "ok": no whitespace in s/hi/lo/
'
Or it can be a bug in the test, e.g., because variable interpolation
happens before the test even begins executing:
v=abc
test_expect_success 'variable interpolation' '
v=def &&
echo '"$v"' # abc
'
Change several such in-test single quotes to use double quotes instead
or, in a few cases, drop them altogether. These were identified using
some crude grepping. We're not fixing any test bugs here, but we're
hopefully making these tests slightly easier to grok and to maintain.
There are legitimate use cases for closing a quote and opening a new
one, e.g., both '\'' and '"'"' can be used to produce a literal single
quote. I'm not touching any of those here.
In t9401, tuck the redirecting ">" to the filename while we're touching
those lines.
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-08-06 20:08:53 +00:00
|
|
|
'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
name='detect node change from directory to file #1'
|
2008-05-04 05:37:59 +00:00
|
|
|
test_expect_success "$name" '
|
|
|
|
rm -rf dir "$GIT_DIR"/index &&
|
2016-05-13 20:47:14 +00:00
|
|
|
git checkout -f -b mybranch2 remotes/git-svn &&
|
2006-12-27 00:27:37 +00:00
|
|
|
mv bar/zzz zzz &&
|
|
|
|
rm -rf bar &&
|
|
|
|
mv zzz bar &&
|
|
|
|
git update-index --remove -- bar/zzz &&
|
|
|
|
git update-index --add -- bar &&
|
2008-05-04 05:37:59 +00:00
|
|
|
git commit -m "$name" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
test_must_fail git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch2
|
2012-02-22 05:10:33 +00:00
|
|
|
'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
name='detect node change from file to directory #2'
|
2008-05-04 05:37:59 +00:00
|
|
|
test_expect_success "$name" '
|
|
|
|
rm -f "$GIT_DIR"/index &&
|
2016-05-13 20:47:14 +00:00
|
|
|
git checkout -f -b mybranch3 remotes/git-svn &&
|
2006-12-27 00:27:37 +00:00
|
|
|
rm bar/zzz &&
|
2007-07-03 05:52:14 +00:00
|
|
|
git update-index --remove bar/zzz &&
|
2006-12-27 00:27:37 +00:00
|
|
|
mkdir bar/zzz &&
|
|
|
|
echo yyy > bar/zzz/yyy &&
|
2007-07-03 05:52:14 +00:00
|
|
|
git update-index --add bar/zzz/yyy &&
|
2008-05-04 05:37:59 +00:00
|
|
|
git commit -m "$name" &&
|
2012-02-20 14:17:54 +00:00
|
|
|
git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch3 &&
|
2012-02-20 14:17:54 +00:00
|
|
|
svn_cmd up "$SVN_TREE" &&
|
|
|
|
test -d "$SVN_TREE"/bar/zzz &&
|
2012-02-22 05:10:33 +00:00
|
|
|
test -e "$SVN_TREE"/bar/zzz/yyy
|
|
|
|
'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
|
|
|
name='detect node change from directory to file #2'
|
2008-05-04 05:37:59 +00:00
|
|
|
test_expect_success "$name" '
|
|
|
|
rm -f "$GIT_DIR"/index &&
|
2016-05-13 20:47:14 +00:00
|
|
|
git checkout -f -b mybranch4 remotes/git-svn &&
|
2006-12-27 00:27:37 +00:00
|
|
|
rm -rf dir &&
|
|
|
|
git update-index --remove -- dir/file &&
|
|
|
|
touch dir &&
|
|
|
|
echo asdf > dir &&
|
|
|
|
git update-index --add -- dir &&
|
2008-05-04 05:37:59 +00:00
|
|
|
git commit -m "$name" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
test_must_fail git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch4
|
2012-02-22 05:10:33 +00:00
|
|
|
'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
name='remove executable bit from a file'
|
2016-01-27 16:20:08 +00:00
|
|
|
test_expect_success POSIXPERM "$name" '
|
2008-05-04 05:37:59 +00:00
|
|
|
rm -f "$GIT_DIR"/index &&
|
2016-05-13 20:47:14 +00:00
|
|
|
git checkout -f -b mybranch5 remotes/git-svn &&
|
2006-12-27 00:27:37 +00:00
|
|
|
chmod -x exec.sh &&
|
|
|
|
git update-index exec.sh &&
|
2008-05-04 05:37:59 +00:00
|
|
|
git commit -m "$name" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch5 &&
|
2009-05-08 08:06:16 +00:00
|
|
|
svn_cmd up "$SVN_TREE" &&
|
2008-05-04 05:37:59 +00:00
|
|
|
test ! -x "$SVN_TREE"/exec.sh'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
name='add executable bit back file'
|
2016-01-27 16:20:08 +00:00
|
|
|
test_expect_success POSIXPERM "$name" '
|
2006-12-27 00:27:37 +00:00
|
|
|
chmod +x exec.sh &&
|
|
|
|
git update-index exec.sh &&
|
2008-05-04 05:37:59 +00:00
|
|
|
git commit -m "$name" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch5 &&
|
2009-05-08 08:06:16 +00:00
|
|
|
svn_cmd up "$SVN_TREE" &&
|
2008-05-04 05:37:59 +00:00
|
|
|
test -x "$SVN_TREE"/exec.sh'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
|
|
|
|
2012-02-20 14:17:54 +00:00
|
|
|
name='executable file becomes a symlink to file'
|
2016-01-27 16:20:08 +00:00
|
|
|
test_expect_success SYMLINKS "$name" '
|
2007-01-01 05:49:46 +00:00
|
|
|
rm exec.sh &&
|
2012-02-20 14:17:54 +00:00
|
|
|
ln -s file exec.sh &&
|
2007-01-01 05:49:46 +00:00
|
|
|
git update-index exec.sh &&
|
2008-05-04 05:37:59 +00:00
|
|
|
git commit -m "$name" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch5 &&
|
2009-05-08 08:06:16 +00:00
|
|
|
svn_cmd up "$SVN_TREE" &&
|
2010-09-22 00:35:59 +00:00
|
|
|
test -h "$SVN_TREE"/exec.sh'
|
2006-06-16 02:51:05 +00:00
|
|
|
|
2007-01-01 05:49:46 +00:00
|
|
|
name='new symlink is added to a file that was also just made executable'
|
2006-06-16 02:51:05 +00:00
|
|
|
|
2016-01-27 16:20:08 +00:00
|
|
|
test_expect_success POSIXPERM,SYMLINKS "$name" '
|
2012-02-20 14:17:54 +00:00
|
|
|
chmod +x file &&
|
|
|
|
ln -s file exec-2.sh &&
|
|
|
|
git update-index --add file exec-2.sh &&
|
2008-05-04 05:37:59 +00:00
|
|
|
git commit -m "$name" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch5 &&
|
2009-05-08 08:06:16 +00:00
|
|
|
svn_cmd up "$SVN_TREE" &&
|
2012-02-20 14:17:54 +00:00
|
|
|
test -x "$SVN_TREE"/file &&
|
2010-09-22 00:35:59 +00:00
|
|
|
test -h "$SVN_TREE"/exec-2.sh'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
2007-01-01 05:49:46 +00:00
|
|
|
name='modify a symlink to become a file'
|
2016-01-27 16:20:08 +00:00
|
|
|
test_expect_success POSIXPERM,SYMLINKS "$name" '
|
2012-02-22 05:10:33 +00:00
|
|
|
echo git help >help &&
|
2007-01-01 05:49:46 +00:00
|
|
|
rm exec-2.sh &&
|
|
|
|
cp help exec-2.sh &&
|
|
|
|
git update-index exec-2.sh &&
|
2008-05-04 05:37:59 +00:00
|
|
|
git commit -m "$name" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn set-tree --find-copies-harder --rmdir \
|
2016-05-13 20:47:14 +00:00
|
|
|
remotes/git-svn..mybranch5 &&
|
2009-05-08 08:06:16 +00:00
|
|
|
svn_cmd up "$SVN_TREE" &&
|
2008-05-04 05:37:59 +00:00
|
|
|
test -f "$SVN_TREE"/exec-2.sh &&
|
2010-09-22 00:35:59 +00:00
|
|
|
test ! -h "$SVN_TREE"/exec-2.sh &&
|
2008-05-24 05:28:56 +00:00
|
|
|
test_cmp help "$SVN_TREE"/exec-2.sh'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
t: use user-specified utf-8 locale for testing svn
In some test-cases, UTF-8 locale is required. To find such locale,
we're using the first available UTF-8 locale that returned by
"locale -a".
However, the locale(1) utility is unavailable on some systems,
e.g. Linux with musl libc.
However, without "locale -a", we can't guess provided UTF-8 locale.
Add a Makefile knob GIT_TEST_UTF8_LOCALE and activate it for
linux-musl in our CI system.
Rename t/lib-git-svn.sh:prepare_a_utf8_locale to prepare_utf8_locale,
since we no longer prepare the variable named "a_utf8_locale",
but set up a fallback value for GIT_TEST_UTF8_LOCALE instead.
The fallback will be LC_ALL, LANG environment variable,
or the first UTF-8 locale from output of "locale -a", in that order.
Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2021-06-08 06:56:28 +00:00
|
|
|
name="commit with UTF-8 message: locale: $GIT_TEST_UTF8_LOCALE"
|
|
|
|
LC_ALL="$GIT_TEST_UTF8_LOCALE"
|
2009-02-24 20:13:39 +00:00
|
|
|
export LC_ALL
|
2016-01-27 16:20:08 +00:00
|
|
|
# This test relies on the previous test, hence requires POSIXPERM,SYMLINKS
|
|
|
|
test_expect_success UTF8,POSIXPERM,SYMLINKS "$name" "
|
2009-02-24 20:13:39 +00:00
|
|
|
echo '# hello' >> exec-2.sh &&
|
|
|
|
git update-index exec-2.sh &&
|
|
|
|
git commit -m 'éï∏' &&
|
|
|
|
git svn set-tree HEAD"
|
|
|
|
unset LC_ALL
|
2006-02-20 18:57:29 +00:00
|
|
|
|
|
|
|
name='test fetch functionality (svn => git) with alternate GIT_SVN_ID'
|
|
|
|
GIT_SVN_ID=alt
|
|
|
|
export GIT_SVN_ID
|
|
|
|
test_expect_success "$name" \
|
2008-09-08 10:02:08 +00:00
|
|
|
'git svn init "$svnrepo" && git svn fetch &&
|
2020-07-15 07:42:50 +00:00
|
|
|
git log --format="tree %T %s" remotes/git-svn |
|
|
|
|
awk "!seen[\$0]++ { print \$1, \$2 }" >a &&
|
|
|
|
git log --format="tree %T" alt >b &&
|
2008-05-24 05:28:56 +00:00
|
|
|
test_cmp a b'
|
2006-02-20 18:57:29 +00:00
|
|
|
|
2006-06-13 11:02:23 +00:00
|
|
|
name='check imported tree checksums expected tree checksums'
|
2006-06-16 02:13:56 +00:00
|
|
|
rm -f expected
|
2009-02-24 20:13:39 +00:00
|
|
|
if test_have_prereq UTF8
|
2006-06-16 02:13:56 +00:00
|
|
|
then
|
2020-06-19 22:39:37 +00:00
|
|
|
echo tree dc68b14b733e4ec85b04ab6f712340edc5dc936e > expected.sha1
|
|
|
|
echo tree b95b55b29d771f5eb73aa9b9d52d02fe11a2538c2feb0829f754ce20a91d98eb > expected.sha256
|
2006-06-16 02:13:56 +00:00
|
|
|
fi
|
2020-06-19 22:39:37 +00:00
|
|
|
cat >> expected.sha1 <<\EOF
|
2012-02-20 14:17:54 +00:00
|
|
|
tree c3322890dcf74901f32d216f05c5044f670ce632
|
|
|
|
tree d3ccd5035feafd17b030c5732e7808cc49122853
|
|
|
|
tree d03e1630363d4881e68929d532746b20b0986b83
|
|
|
|
tree 149d63cd5878155c846e8c55d7d8487de283f89e
|
|
|
|
tree 312b76e4f64ce14893aeac8591eb3960b065e247
|
|
|
|
tree 149d63cd5878155c846e8c55d7d8487de283f89e
|
2006-06-13 11:02:23 +00:00
|
|
|
tree d667270a1f7b109f5eb3aaea21ede14b56bfdd6e
|
|
|
|
tree 8f51f74cf0163afc9ad68a4b1537288c4558b5a4
|
|
|
|
EOF
|
2020-06-19 22:39:37 +00:00
|
|
|
cat >> expected.sha256 <<\EOF
|
|
|
|
tree 8d12756699d0b5b110514240a0ff141f6cbf8891fd69ab05e5594196fb437c9f
|
|
|
|
tree 8187168d33f7d4ccb8c1cc6e99532810aaccb47658f35d19b3803072d1128d7a
|
|
|
|
tree 74e535d85da8ee25eb23d7b506790c5ab3ccdb1ba0826bd57625ed44ef361650
|
|
|
|
tree 6fd7dd963e3cdca0cbd6368ed3cfcc8037cc154d2e7719d9d369a0952364fd95
|
|
|
|
tree 1fd6cec6aa95102d69266e20419bb62ec2a06372d614b9850ef23ff204103bb4
|
|
|
|
tree 6fd7dd963e3cdca0cbd6368ed3cfcc8037cc154d2e7719d9d369a0952364fd95
|
|
|
|
tree deb2b7ac79cd8ce6f52af6a5a0a08691e94ba74a2ed55966bb27dbec551730eb
|
|
|
|
tree 59e2e936761188476a7752034e8aa0a822b34050c8504b0dfd946407f4bc9215
|
|
|
|
EOF
|
2006-11-28 05:46:50 +00:00
|
|
|
|
2020-06-19 22:39:37 +00:00
|
|
|
test_expect_success POSIXPERM,SYMLINKS "$name" '
|
|
|
|
test_cmp expected.$(test_oid algo) a
|
|
|
|
'
|
2006-06-13 11:02:23 +00:00
|
|
|
|
2016-05-13 20:47:18 +00:00
|
|
|
test_expect_success 'exit if remote refs are ambigious' '
|
2023-05-20 16:13:55 +00:00
|
|
|
git config --add svn-remote.svn.fetch \
|
2016-05-13 20:47:14 +00:00
|
|
|
bar:refs/remotes/git-svn &&
|
2008-09-08 10:02:08 +00:00
|
|
|
test_must_fail git svn migrate
|
2016-05-13 20:47:18 +00:00
|
|
|
'
|
2007-01-24 00:29:23 +00:00
|
|
|
|
2008-05-04 05:37:59 +00:00
|
|
|
test_expect_success 'exit if init-ing a would clobber a URL' '
|
2023-05-20 16:13:55 +00:00
|
|
|
svnadmin create "${PWD}/svnrepo2" &&
|
|
|
|
svn mkdir -m "mkdir bar" "${svnrepo}2/bar" &&
|
|
|
|
git config --unset svn-remote.svn.fetch \
|
2016-05-13 20:47:14 +00:00
|
|
|
"^bar:refs/remotes/git-svn$" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
test_must_fail git svn init "${svnrepo}2/bar"
|
2008-05-04 05:37:59 +00:00
|
|
|
'
|
2007-01-24 00:29:23 +00:00
|
|
|
|
2023-05-20 16:13:55 +00:00
|
|
|
test_expect_success 'init allows us to connect to another directory in the same repo' '
|
|
|
|
git svn init --minimize-url -i bar "$svnrepo/bar" &&
|
|
|
|
git config --get svn-remote.svn.fetch \
|
|
|
|
"^bar:refs/remotes/bar$" &&
|
|
|
|
git config --get svn-remote.svn.fetch \
|
|
|
|
"^:refs/remotes/git-svn$"
|
|
|
|
'
|
2007-01-22 21:52:04 +00:00
|
|
|
|
2009-05-29 15:09:42 +00:00
|
|
|
test_expect_success 'dcommit $rev does not clobber current branch' '
|
|
|
|
git svn fetch -i bar &&
|
|
|
|
git checkout -b my-bar refs/remotes/bar &&
|
|
|
|
echo 1 > foo &&
|
|
|
|
git add foo &&
|
|
|
|
git commit -m "change 1" &&
|
|
|
|
echo 2 > foo &&
|
|
|
|
git add foo &&
|
|
|
|
git commit -m "change 2" &&
|
|
|
|
old_head=$(git rev-parse HEAD) &&
|
|
|
|
git svn dcommit -i bar HEAD^ &&
|
|
|
|
test $old_head = $(git rev-parse HEAD) &&
|
|
|
|
test refs/heads/my-bar = $(git symbolic-ref HEAD) &&
|
|
|
|
git log refs/remotes/bar | grep "change 1" &&
|
|
|
|
! git log refs/remotes/bar | grep "change 2" &&
|
2020-11-18 23:44:42 +00:00
|
|
|
git checkout main &&
|
2009-05-29 15:09:42 +00:00
|
|
|
git branch -D my-bar
|
|
|
|
'
|
|
|
|
|
2016-05-13 20:47:18 +00:00
|
|
|
test_expect_success 'able to dcommit to a subdirectory' '
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn fetch -i bar &&
|
2007-01-26 09:32:45 +00:00
|
|
|
git checkout -b my-bar refs/remotes/bar &&
|
|
|
|
echo abc > d &&
|
|
|
|
git update-index --add d &&
|
2016-05-13 20:47:18 +00:00
|
|
|
git commit -m "/bar/d should be in the log" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn dcommit -i bar &&
|
2016-05-13 20:47:18 +00:00
|
|
|
test -z "$(git diff refs/heads/my-bar refs/remotes/bar)" &&
|
2007-01-26 09:32:45 +00:00
|
|
|
mkdir newdir &&
|
|
|
|
echo new > newdir/dir &&
|
|
|
|
git update-index --add newdir/dir &&
|
2016-05-13 20:47:18 +00:00
|
|
|
git commit -m "add a new directory" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn dcommit -i bar &&
|
2016-05-13 20:47:18 +00:00
|
|
|
test -z "$(git diff refs/heads/my-bar refs/remotes/bar)" &&
|
2007-01-26 09:32:45 +00:00
|
|
|
echo foo >> newdir/dir &&
|
|
|
|
git update-index newdir/dir &&
|
2016-05-13 20:47:18 +00:00
|
|
|
git commit -m "modify a file in new directory" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn dcommit -i bar &&
|
2016-05-13 20:47:18 +00:00
|
|
|
test -z "$(git diff refs/heads/my-bar refs/remotes/bar)"
|
|
|
|
'
|
2007-01-26 09:32:45 +00:00
|
|
|
|
2010-08-02 19:58:19 +00:00
|
|
|
test_expect_success 'dcommit should not fail with a touched file' '
|
|
|
|
test_commit "commit-new-file-foo2" foo2 &&
|
2018-03-24 07:44:31 +00:00
|
|
|
test-tool chmtime =-60 foo &&
|
2010-08-02 19:58:19 +00:00
|
|
|
git svn dcommit
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'rebase should not fail with a touched file' '
|
2018-03-24 07:44:31 +00:00
|
|
|
test-tool chmtime =-60 foo &&
|
2010-08-02 19:58:19 +00:00
|
|
|
git svn rebase
|
|
|
|
'
|
|
|
|
|
2016-05-13 20:47:18 +00:00
|
|
|
test_expect_success 'able to set-tree to a subdirectory' '
|
2007-01-26 09:32:45 +00:00
|
|
|
echo cba > d &&
|
|
|
|
git update-index d &&
|
2016-05-13 20:47:18 +00:00
|
|
|
git commit -m "update /bar/d" &&
|
2008-09-08 10:02:08 +00:00
|
|
|
git svn set-tree -i bar HEAD &&
|
2016-05-13 20:47:18 +00:00
|
|
|
test -z "$(git diff refs/heads/my-bar refs/remotes/bar)"
|
|
|
|
'
|
2007-01-26 09:32:45 +00:00
|
|
|
|
2008-11-06 05:07:39 +00:00
|
|
|
test_expect_success 'git-svn works in a bare repository' '
|
|
|
|
mkdir bare-repo &&
|
|
|
|
( cd bare-repo &&
|
|
|
|
git init --bare &&
|
|
|
|
GIT_DIR=. git svn init "$svnrepo" &&
|
|
|
|
git svn fetch ) &&
|
|
|
|
rm -rf bare-repo
|
|
|
|
'
|
2021-06-11 11:18:50 +00:00
|
|
|
test_expect_success 'git-svn works in a repository with a gitdir: link' '
|
2013-01-21 01:22:02 +00:00
|
|
|
mkdir worktree gitdir &&
|
|
|
|
( cd worktree &&
|
|
|
|
git svn init "$svnrepo" &&
|
|
|
|
git init --separate-git-dir ../gitdir &&
|
|
|
|
git svn fetch ) &&
|
|
|
|
rm -rf worktree gitdir
|
|
|
|
'
|
2008-11-06 05:07:39 +00:00
|
|
|
|
2006-02-20 18:57:29 +00:00
|
|
|
test_done
|