2011-12-25 02:07:32 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2012-04-09 00:18:02 +00:00
|
|
|
test_description='git p4 options'
|
2011-12-25 02:07:32 +00:00
|
|
|
|
2020-11-18 23:44:44 +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
|
|
|
|
|
2011-12-25 02:07:32 +00:00
|
|
|
. ./lib-git-p4.sh
|
|
|
|
|
|
|
|
test_expect_success 'start p4d' '
|
|
|
|
start_p4d
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'init depot' '
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
echo file1 >file1 &&
|
|
|
|
p4 add file1 &&
|
|
|
|
p4 submit -d "change 1" &&
|
|
|
|
echo file2 >file2 &&
|
|
|
|
p4 add file2 &&
|
|
|
|
p4 submit -d "change 2" &&
|
|
|
|
echo file3 >file3 &&
|
|
|
|
p4 add file3 &&
|
|
|
|
p4 submit -d "change 3"
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'clone no --git-dir' '
|
2012-04-09 00:18:02 +00:00
|
|
|
test_must_fail git p4 clone --git-dir=xx //depot
|
2011-12-25 02:07:32 +00:00
|
|
|
'
|
|
|
|
|
2020-11-18 23:44:44 +00:00
|
|
|
test_expect_success 'clone --branch should checkout main' '
|
2012-04-09 00:18:02 +00:00
|
|
|
git p4 clone --branch=refs/remotes/p4/sb --dest="$git" //depot &&
|
2011-12-25 02:07:34 +00:00
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
2013-01-15 00:46:55 +00:00
|
|
|
git rev-parse refs/remotes/p4/sb >sb &&
|
2020-11-18 23:44:44 +00:00
|
|
|
git rev-parse refs/heads/main >main &&
|
|
|
|
test_cmp sb main &&
|
2013-01-15 00:46:55 +00:00
|
|
|
git rev-parse HEAD >head &&
|
|
|
|
test_cmp sb head
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-01-15 00:47:05 +00:00
|
|
|
test_expect_success 'sync when no master branch prints a nice error' '
|
2013-01-15 00:46:55 +00:00
|
|
|
test_when_finished cleanup_git &&
|
2013-01-15 00:47:05 +00:00
|
|
|
git p4 clone --branch=refs/remotes/p4/sb --dest="$git" //depot@2 &&
|
2013-01-15 00:46:55 +00:00
|
|
|
(
|
|
|
|
cd "$git" &&
|
2013-01-15 00:47:05 +00:00
|
|
|
test_must_fail git p4 sync 2>err &&
|
|
|
|
grep "Error: no branch refs/remotes/p4/master" err
|
2013-01-15 00:46:55 +00:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-01-15 00:47:03 +00:00
|
|
|
test_expect_success 'sync --branch builds the full ref name correctly' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git init &&
|
|
|
|
|
|
|
|
git p4 sync --branch=b1 //depot &&
|
|
|
|
git rev-parse --verify refs/remotes/p4/b1 &&
|
|
|
|
git p4 sync --branch=p4/b2 //depot &&
|
|
|
|
git rev-parse --verify refs/remotes/p4/b2 &&
|
|
|
|
|
|
|
|
git p4 sync --import-local --branch=h1 //depot &&
|
|
|
|
git rev-parse --verify refs/heads/p4/h1 &&
|
|
|
|
git p4 sync --import-local --branch=p4/h2 //depot &&
|
|
|
|
git rev-parse --verify refs/heads/p4/h2 &&
|
|
|
|
|
|
|
|
git p4 sync --branch=refs/stuff //depot &&
|
|
|
|
git rev-parse --verify refs/stuff
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-01-15 00:46:55 +00:00
|
|
|
# engages --detect-branches code, which will do filename filtering so
|
|
|
|
# no sync to either b1 or b2
|
|
|
|
test_expect_success 'sync when two branches but no master should noop' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git init &&
|
|
|
|
git p4 sync --branch=refs/remotes/p4/b1 //depot@2 &&
|
|
|
|
git p4 sync --branch=refs/remotes/p4/b2 //depot@2 &&
|
|
|
|
git p4 sync &&
|
|
|
|
git show -s --format=%s refs/remotes/p4/b1 >show &&
|
|
|
|
grep "Initial import" show &&
|
|
|
|
git show -s --format=%s refs/remotes/p4/b2 >show &&
|
|
|
|
grep "Initial import" show
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-01-15 00:47:06 +00:00
|
|
|
test_expect_success 'sync --branch updates specific branch, no detection' '
|
2013-01-15 00:46:55 +00:00
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git init &&
|
2013-01-15 00:47:06 +00:00
|
|
|
git p4 sync --branch=b1 //depot@2 &&
|
|
|
|
git p4 sync --branch=b2 //depot@2 &&
|
|
|
|
git p4 sync --branch=b2 &&
|
2013-01-15 00:46:55 +00:00
|
|
|
git show -s --format=%s refs/remotes/p4/b1 >show &&
|
|
|
|
grep "Initial import" show &&
|
|
|
|
git show -s --format=%s refs/remotes/p4/b2 >show &&
|
|
|
|
grep "change 3" show
|
2011-12-25 02:07:34 +00:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-01-15 00:46:59 +00:00
|
|
|
# allows using the refname "p4" as a short name for p4/master
|
|
|
|
test_expect_success 'clone creates HEAD symbolic reference' '
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git rev-parse --verify refs/remotes/p4/master >master &&
|
|
|
|
git rev-parse --verify p4 >p4 &&
|
|
|
|
test_cmp master p4
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'clone --branch creates HEAD symbolic reference' '
|
|
|
|
git p4 clone --branch=refs/remotes/p4/sb --dest="$git" //depot &&
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git rev-parse --verify refs/remotes/p4/sb >sb &&
|
|
|
|
git rev-parse --verify p4 >p4 &&
|
|
|
|
test_cmp sb p4
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2011-12-25 02:07:35 +00:00
|
|
|
test_expect_success 'clone --changesfile' '
|
2012-06-27 12:00:56 +00:00
|
|
|
test_when_finished "rm cf" &&
|
|
|
|
printf "1\n3\n" >cf &&
|
|
|
|
git p4 clone --changesfile="$TRASH_DIRECTORY/cf" --dest="$git" //depot &&
|
2011-12-25 02:07:35 +00:00
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git log --oneline p4/master >lines &&
|
2018-07-02 00:24:04 +00:00
|
|
|
test_line_count = 2 lines &&
|
2011-12-25 02:07:35 +00:00
|
|
|
test_path_is_file file1 &&
|
|
|
|
test_path_is_missing file2 &&
|
|
|
|
test_path_is_file file3
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'clone --changesfile, @all' '
|
2012-06-27 12:00:56 +00:00
|
|
|
test_when_finished "rm cf" &&
|
|
|
|
printf "1\n3\n" >cf &&
|
|
|
|
test_must_fail git p4 clone --changesfile="$TRASH_DIRECTORY/cf" --dest="$git" //depot@all
|
2011-12-25 02:07:35 +00:00
|
|
|
'
|
|
|
|
|
2020-11-18 23:44:44 +00:00
|
|
|
# imports both main and p4/master in refs/heads
|
2011-12-25 02:07:36 +00:00
|
|
|
# requires --import-local on sync to find p4 refs/heads
|
2020-11-18 23:44:44 +00:00
|
|
|
# does not update main on sync, just p4/master
|
2011-12-25 02:07:36 +00:00
|
|
|
test_expect_success 'clone/sync --import-local' '
|
2012-04-09 00:18:02 +00:00
|
|
|
git p4 clone --import-local --dest="$git" //depot@1,2 &&
|
2011-12-25 02:07:36 +00:00
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
2020-11-18 23:44:44 +00:00
|
|
|
git log --oneline refs/heads/main >lines &&
|
2011-12-25 02:07:36 +00:00
|
|
|
test_line_count = 2 lines &&
|
|
|
|
git log --oneline refs/heads/p4/master >lines &&
|
|
|
|
test_line_count = 2 lines &&
|
2012-04-09 00:18:02 +00:00
|
|
|
test_must_fail git p4 sync &&
|
2011-12-25 02:07:36 +00:00
|
|
|
|
2012-04-09 00:18:02 +00:00
|
|
|
git p4 sync --import-local &&
|
2020-11-18 23:44:44 +00:00
|
|
|
git log --oneline refs/heads/main >lines &&
|
2011-12-25 02:07:36 +00:00
|
|
|
test_line_count = 2 lines &&
|
|
|
|
git log --oneline refs/heads/p4/master >lines &&
|
|
|
|
test_line_count = 3 lines
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2011-12-25 02:07:37 +00:00
|
|
|
test_expect_success 'clone --max-changes' '
|
2012-04-09 00:18:02 +00:00
|
|
|
git p4 clone --dest="$git" --max-changes 2 //depot@all &&
|
2011-12-25 02:07:37 +00:00
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
2020-11-18 23:44:44 +00:00
|
|
|
git log --oneline refs/heads/main >lines &&
|
2011-12-25 02:07:37 +00:00
|
|
|
test_line_count = 2 lines
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2011-12-25 02:07:38 +00:00
|
|
|
test_expect_success 'clone --keep-path' '
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
mkdir -p sub/dir &&
|
|
|
|
echo f4 >sub/dir/f4 &&
|
|
|
|
p4 add sub/dir/f4 &&
|
|
|
|
p4 submit -d "change 4"
|
|
|
|
) &&
|
2012-04-09 00:18:02 +00:00
|
|
|
git p4 clone --dest="$git" --keep-path //depot/sub/dir@all &&
|
2011-12-25 02:07:38 +00:00
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_path_is_missing f4 &&
|
|
|
|
test_path_is_file sub/dir/f4
|
|
|
|
) &&
|
|
|
|
cleanup_git &&
|
2012-04-09 00:18:02 +00:00
|
|
|
git p4 clone --dest="$git" //depot/sub/dir@all &&
|
2011-12-25 02:07:38 +00:00
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_path_is_file f4 &&
|
|
|
|
test_path_is_missing sub/dir/f4
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2011-12-25 02:07:39 +00:00
|
|
|
# clone --use-client-spec must still specify a depot path
|
|
|
|
# if given, it should rearrange files according to client spec
|
|
|
|
# when it has view lines that match the depot path
|
|
|
|
# XXX: should clone/sync just use the client spec exactly, rather
|
|
|
|
# than needing depot paths?
|
|
|
|
test_expect_success 'clone --use-client-spec' '
|
|
|
|
(
|
|
|
|
# big usage message
|
|
|
|
exec >/dev/null &&
|
2012-04-09 00:18:02 +00:00
|
|
|
test_must_fail git p4 clone --dest="$git" --use-client-spec
|
2011-12-25 02:07:39 +00:00
|
|
|
) &&
|
2013-01-27 03:11:09 +00:00
|
|
|
# build a different client
|
2013-01-27 03:11:11 +00:00
|
|
|
cli2="$TRASH_DIRECTORY/cli2" &&
|
2011-12-25 02:07:39 +00:00
|
|
|
mkdir -p "$cli2" &&
|
|
|
|
test_when_finished "rmdir \"$cli2\"" &&
|
|
|
|
test_when_finished cleanup_git &&
|
2013-01-15 00:47:07 +00:00
|
|
|
(
|
2013-01-27 03:11:09 +00:00
|
|
|
# group P4CLIENT and cli changes in a sub-shell
|
2013-01-15 00:47:07 +00:00
|
|
|
P4CLIENT=client2 &&
|
2013-01-27 03:11:09 +00:00
|
|
|
cli="$cli2" &&
|
|
|
|
client_view "//depot/sub/... //client2/bus/..." &&
|
|
|
|
git p4 clone --dest="$git" --use-client-spec //depot/... &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_path_is_file bus/dir/f4 &&
|
|
|
|
test_path_is_missing file1
|
|
|
|
) &&
|
|
|
|
cleanup_git &&
|
|
|
|
# same thing again, this time with variable instead of option
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git init &&
|
|
|
|
git config git-p4.useClientSpec true &&
|
|
|
|
git p4 sync //depot/... &&
|
2020-11-18 23:44:44 +00:00
|
|
|
git checkout -b main p4/master &&
|
2013-01-27 03:11:09 +00:00
|
|
|
test_path_is_file bus/dir/f4 &&
|
|
|
|
test_path_is_missing file1
|
|
|
|
)
|
2011-12-25 02:07:39 +00:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-01-15 00:47:08 +00:00
|
|
|
test_expect_success 'submit works with no p4/master' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --branch=b1 //depot@1,2 --destination="$git" &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_commit submit-1-branch &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git p4 submit --branch=b1
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
# The sync/rebase part post-submit will engage detect-branches
|
|
|
|
# machinery which will not do anything in this particular test.
|
|
|
|
test_expect_success 'submit works with two branches' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --branch=b1 //depot@1,2 --destination="$git" &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git p4 sync --branch=b2 //depot@1,3 &&
|
|
|
|
test_commit submit-2-branches &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git p4 submit
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2016-12-13 21:51:28 +00:00
|
|
|
test_expect_success 'use --git-dir option and GIT_DIR' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone //depot --destination="$git" &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
test_commit first-change &&
|
|
|
|
git p4 submit --git-dir "$git"
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
p4 sync &&
|
|
|
|
test_path_is_file first-change.t &&
|
|
|
|
echo "cli_file" >cli_file.t &&
|
|
|
|
p4 add cli_file.t &&
|
|
|
|
p4 submit -d "cli change"
|
|
|
|
) &&
|
|
|
|
(git --git-dir "$git" p4 sync) &&
|
|
|
|
(cd "$git" && git checkout -q p4/master) &&
|
|
|
|
test_path_is_file "$git"/cli_file.t &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
echo "cli_file2" >cli_file2.t &&
|
|
|
|
p4 add cli_file2.t &&
|
|
|
|
p4 submit -d "cli change2"
|
|
|
|
) &&
|
|
|
|
(GIT_DIR="$git" git p4 sync) &&
|
|
|
|
(cd "$git" && git checkout -q p4/master) &&
|
|
|
|
test_path_is_file "$git"/cli_file2.t
|
|
|
|
'
|
|
|
|
|
2011-12-25 02:07:32 +00:00
|
|
|
test_done
|