2011-12-10 00:48:15 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2012-04-09 02:18:02 +02:00
|
|
|
test_description='git p4 submit'
|
2011-12-10 00:48:15 +01: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"
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2014-01-22 00:16:42 +01:00
|
|
|
test_expect_success 'is_cli_file_writeable function' '
|
git p4: cygwin p4 client does not mark read-only
There are some old versions of p4, compiled for cygwin, that
treat read-only files differently.
Normally, a file that is not open is read-only, meaning that
"test -w" on the file is false. This works on unix, and it works
on windows using the NT version of p4. The cygwin version
of p4, though, changes the permissions, but does not set the
windows read-only attribute, so "test -w" returns false.
Notice this oddity and make the tests work, even on cygiwn.
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-01-27 04:11:17 +01:00
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
echo a >a &&
|
|
|
|
is_cli_file_writeable a &&
|
|
|
|
! is_cli_file_writeable file1 &&
|
|
|
|
rm a
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2011-12-10 00:48:15 +01:00
|
|
|
test_expect_success 'submit with no client dir' '
|
|
|
|
test_when_finished cleanup_git &&
|
2012-04-09 02:18:02 +02:00
|
|
|
git p4 clone --dest="$git" //depot &&
|
2011-12-10 00:48:15 +01:00
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
echo file2 >file2 &&
|
|
|
|
git add file2 &&
|
|
|
|
git commit -m "git commit 2" &&
|
|
|
|
rm -rf "$cli" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
2012-04-09 02:18:02 +02:00
|
|
|
git p4 submit
|
2012-04-30 02:57:14 +02:00
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_file file1 &&
|
|
|
|
test_path_is_file file2
|
2011-12-10 00:48:15 +01:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2011-12-25 03:07:40 +01:00
|
|
|
# make two commits, but tell it to apply only from HEAD^
|
|
|
|
test_expect_success 'submit --origin' '
|
|
|
|
test_when_finished cleanup_git &&
|
2012-04-09 02:18:02 +02:00
|
|
|
git p4 clone --dest="$git" //depot &&
|
2011-12-25 03:07:40 +01:00
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_commit "file3" &&
|
|
|
|
test_commit "file4" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
2012-04-09 02:18:02 +02:00
|
|
|
git p4 submit --origin=HEAD^
|
2011-12-25 03:07:40 +01:00
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_missing "file3.t" &&
|
|
|
|
test_path_is_file "file4.t"
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2012-09-09 22:16:11 +02:00
|
|
|
test_expect_success 'submit --dry-run' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_commit "dry-run1" &&
|
|
|
|
test_commit "dry-run2" &&
|
|
|
|
git p4 submit --dry-run >out &&
|
|
|
|
test_i18ngrep "Would apply" out
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_missing "dry-run1.t" &&
|
|
|
|
test_path_is_missing "dry-run2.t"
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'submit --dry-run --export-labels' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
echo dry-run1 >dry-run1 &&
|
|
|
|
git add dry-run1 &&
|
|
|
|
git commit -m "dry-run1" dry-run1 &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git p4 submit &&
|
|
|
|
echo dry-run2 >dry-run2 &&
|
|
|
|
git add dry-run2 &&
|
|
|
|
git commit -m "dry-run2" dry-run2 &&
|
|
|
|
git tag -m "dry-run-tag1" dry-run-tag1 HEAD^ &&
|
|
|
|
git p4 submit --dry-run --export-labels >out &&
|
|
|
|
test_i18ngrep "Would create p4 label" out
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_file "dry-run1" &&
|
|
|
|
test_path_is_missing "dry-run2"
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2011-12-25 03:07:40 +01:00
|
|
|
test_expect_success 'submit with allowSubmit' '
|
|
|
|
test_when_finished cleanup_git &&
|
2012-04-09 02:18:02 +02:00
|
|
|
git p4 clone --dest="$git" //depot &&
|
2011-12-25 03:07:40 +01:00
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_commit "file5" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git config git-p4.allowSubmit "nobranch" &&
|
2012-04-09 02:18:02 +02:00
|
|
|
test_must_fail git p4 submit &&
|
2011-12-25 03:07:40 +01:00
|
|
|
git config git-p4.allowSubmit "nobranch,master" &&
|
2012-04-09 02:18:02 +02:00
|
|
|
git p4 submit
|
2011-12-25 03:07:40 +01:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'submit with master branch name from argv' '
|
|
|
|
test_when_finished cleanup_git &&
|
2012-04-09 02:18:02 +02:00
|
|
|
git p4 clone --dest="$git" //depot &&
|
2011-12-25 03:07:40 +01:00
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_commit "file6" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
2012-04-09 02:18:02 +02:00
|
|
|
test_must_fail git p4 submit nobranch &&
|
2011-12-25 03:07:40 +01:00
|
|
|
git branch otherbranch &&
|
|
|
|
git reset --hard HEAD^ &&
|
|
|
|
test_commit "file7" &&
|
2012-04-09 02:18:02 +02:00
|
|
|
git p4 submit otherbranch
|
2011-12-25 03:07:40 +01:00
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_file "file6.t" &&
|
|
|
|
test_path_is_missing "file7.t"
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2017-04-15 12:36:09 +02:00
|
|
|
test_expect_success 'allow submit from branch with same revision but different name' '
|
2017-04-15 12:36:07 +02:00
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_commit "file8" &&
|
|
|
|
git checkout -b branch1 &&
|
|
|
|
git checkout -b branch2 &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git config git-p4.allowSubmit "branch1" &&
|
|
|
|
test_must_fail git p4 submit &&
|
|
|
|
git checkout branch1 &&
|
|
|
|
git p4 submit
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2018-06-01 09:46:14 +02:00
|
|
|
# make two commits, but tell it to apply only one
|
|
|
|
|
|
|
|
test_expect_success 'submit --commit one' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_commit "file9" &&
|
|
|
|
test_commit "file10" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git p4 submit --commit HEAD
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_missing "file9.t" &&
|
|
|
|
test_path_is_file "file10.t"
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
# make three commits, but tell it to apply only range
|
|
|
|
|
|
|
|
test_expect_success 'submit --commit range' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
test_commit "file11" &&
|
|
|
|
test_commit "file12" &&
|
|
|
|
test_commit "file13" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git p4 submit --commit HEAD~2..HEAD
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_missing "file11.t" &&
|
|
|
|
test_path_is_file "file12.t" &&
|
|
|
|
test_path_is_file "file13.t"
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2012-04-30 02:57:15 +02:00
|
|
|
#
|
|
|
|
# Basic submit tests, the five handled cases
|
|
|
|
#
|
|
|
|
|
|
|
|
test_expect_success 'submit modify' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
echo line >>file1 &&
|
|
|
|
git add file1 &&
|
|
|
|
git commit -m file1 &&
|
|
|
|
git p4 submit
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_file file1 &&
|
|
|
|
test_line_count = 2 file1
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'submit add' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
echo file13 >file13 &&
|
|
|
|
git add file13 &&
|
|
|
|
git commit -m file13 &&
|
|
|
|
git p4 submit
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_file file13
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'submit delete' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git rm file4.t &&
|
|
|
|
git commit -m "delete file4.t" &&
|
|
|
|
git p4 submit
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_missing file4.t
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'submit copy' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git config git-p4.detectCopies true &&
|
|
|
|
git config git-p4.detectCopiesHarder true &&
|
|
|
|
cp file5.t file5.ta &&
|
|
|
|
git add file5.ta &&
|
|
|
|
git commit -m "copy to file5.ta" &&
|
|
|
|
git p4 submit
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
2012-04-30 02:57:16 +02:00
|
|
|
test_path_is_file file5.ta &&
|
git p4: cygwin p4 client does not mark read-only
There are some old versions of p4, compiled for cygwin, that
treat read-only files differently.
Normally, a file that is not open is read-only, meaning that
"test -w" on the file is false. This works on unix, and it works
on windows using the NT version of p4. The cygwin version
of p4, though, changes the permissions, but does not set the
windows read-only attribute, so "test -w" returns false.
Notice this oddity and make the tests work, even on cygiwn.
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-01-27 04:11:17 +01:00
|
|
|
! is_cli_file_writeable file5.ta
|
2012-04-30 02:57:15 +02:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'submit rename' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git config git-p4.detectRenames true &&
|
|
|
|
git mv file6.t file6.ta &&
|
|
|
|
git commit -m "rename file6.t to file6.ta" &&
|
|
|
|
git p4 submit
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_missing file6.t &&
|
2012-04-30 02:57:16 +02:00
|
|
|
test_path_is_file file6.ta &&
|
git p4: cygwin p4 client does not mark read-only
There are some old versions of p4, compiled for cygwin, that
treat read-only files differently.
Normally, a file that is not open is read-only, meaning that
"test -w" on the file is false. This works on unix, and it works
on windows using the NT version of p4. The cygwin version
of p4, though, changes the permissions, but does not set the
windows read-only attribute, so "test -w" returns false.
Notice this oddity and make the tests work, even on cygiwn.
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-01-27 04:11:17 +01:00
|
|
|
! is_cli_file_writeable file6.ta
|
2012-04-30 02:57:15 +02:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2012-07-04 15:34:20 +02:00
|
|
|
#
|
|
|
|
# Converting git commit message to p4 change description, including
|
|
|
|
# parsing out the optional Jobs: line.
|
|
|
|
#
|
|
|
|
test_expect_success 'simple one-line description' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
echo desc2 >desc2 &&
|
|
|
|
git add desc2 &&
|
|
|
|
cat >msg <<-EOF &&
|
|
|
|
One-line description line for desc2.
|
|
|
|
EOF
|
|
|
|
git commit -F - <msg &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git p4 submit &&
|
|
|
|
change=$(p4 -G changes -m 1 //depot/... | \
|
|
|
|
marshal_dump change) &&
|
|
|
|
# marshal_dump always adds a newline
|
|
|
|
p4 -G describe $change | marshal_dump desc | sed \$d >pmsg &&
|
|
|
|
test_cmp msg pmsg
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'description with odd formatting' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
echo desc3 >desc3 &&
|
|
|
|
git add desc3 &&
|
|
|
|
(
|
|
|
|
printf "subject line\n\n\tExtra tab\nline.\n\n" &&
|
|
|
|
printf "Description:\n\tBogus description marker\n\n" &&
|
|
|
|
# git commit eats trailing newlines; only use one
|
|
|
|
printf "Files:\n\tBogus descs marker\n"
|
|
|
|
) >msg &&
|
|
|
|
git commit -F - <msg &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
git p4 submit &&
|
|
|
|
change=$(p4 -G changes -m 1 //depot/... | \
|
|
|
|
marshal_dump change) &&
|
|
|
|
# marshal_dump always adds a newline
|
|
|
|
p4 -G describe $change | marshal_dump desc | sed \$d >pmsg &&
|
|
|
|
test_cmp msg pmsg
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
make_job() {
|
|
|
|
name="$1" &&
|
|
|
|
tab="$(printf \\t)" &&
|
|
|
|
p4 job -o | \
|
|
|
|
sed -e "/^Job:/s/.*/Job: $name/" \
|
|
|
|
-e "/^Description/{ n; s/.*/$tab job text/; }" | \
|
|
|
|
p4 job -i
|
|
|
|
}
|
|
|
|
|
|
|
|
test_expect_success 'description with Jobs section at end' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
echo desc4 >desc4 &&
|
|
|
|
git add desc4 &&
|
|
|
|
echo 6060842 >jobname &&
|
|
|
|
(
|
|
|
|
printf "subject line\n\n\tExtra tab\nline.\n\n" &&
|
|
|
|
printf "Files:\n\tBogus files marker\n" &&
|
|
|
|
printf "Junk: 3164175\n" &&
|
|
|
|
printf "Jobs: $(cat jobname)\n"
|
|
|
|
) >msg &&
|
|
|
|
git commit -F - <msg &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
# build a job
|
|
|
|
make_job $(cat jobname) &&
|
|
|
|
git p4 submit &&
|
|
|
|
change=$(p4 -G changes -m 1 //depot/... | \
|
|
|
|
marshal_dump change) &&
|
|
|
|
# marshal_dump always adds a newline
|
|
|
|
p4 -G describe $change | marshal_dump desc | sed \$d >pmsg &&
|
|
|
|
# make sure Jobs line and all following is gone
|
|
|
|
sed "/^Jobs:/,\$d" msg >jmsg &&
|
|
|
|
test_cmp jmsg pmsg &&
|
|
|
|
# make sure p4 knows about job
|
|
|
|
p4 -G describe $change | marshal_dump job0 >job0 &&
|
|
|
|
test_cmp jobname job0
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'description with Jobs and values on separate lines' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
echo desc5 >desc5 &&
|
|
|
|
git add desc5 &&
|
|
|
|
echo PROJ-6060842 >jobname1 &&
|
|
|
|
echo PROJ-6060847 >jobname2 &&
|
|
|
|
(
|
|
|
|
printf "subject line\n\n\tExtra tab\nline.\n\n" &&
|
|
|
|
printf "Files:\n\tBogus files marker\n" &&
|
|
|
|
printf "Junk: 3164175\n" &&
|
|
|
|
printf "Jobs:\n" &&
|
|
|
|
printf "\t$(cat jobname1)\n" &&
|
|
|
|
printf "\t$(cat jobname2)\n"
|
|
|
|
) >msg &&
|
|
|
|
git commit -F - <msg &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
# build two jobs
|
|
|
|
make_job $(cat jobname1) &&
|
|
|
|
make_job $(cat jobname2) &&
|
|
|
|
git p4 submit &&
|
|
|
|
change=$(p4 -G changes -m 1 //depot/... | \
|
|
|
|
marshal_dump change) &&
|
|
|
|
# marshal_dump always adds a newline
|
|
|
|
p4 -G describe $change | marshal_dump desc | sed \$d >pmsg &&
|
|
|
|
# make sure Jobs line and all following is gone
|
|
|
|
sed "/^Jobs:/,\$d" msg >jmsg &&
|
|
|
|
test_cmp jmsg pmsg &&
|
|
|
|
# make sure p4 knows about the two jobs
|
|
|
|
p4 -G describe $change >change &&
|
|
|
|
(
|
|
|
|
marshal_dump job0 <change &&
|
|
|
|
marshal_dump job1 <change
|
|
|
|
) | sort >jobs &&
|
|
|
|
cat jobname1 jobname2 | sort >expected &&
|
|
|
|
test_cmp expected jobs
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'description with Jobs section and bogus following text' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
echo desc6 >desc6 &&
|
|
|
|
git add desc6 &&
|
|
|
|
echo 6060843 >jobname &&
|
|
|
|
(
|
|
|
|
printf "subject line\n\n\tExtra tab\nline.\n\n" &&
|
|
|
|
printf "Files:\n\tBogus files marker\n" &&
|
|
|
|
printf "Junk: 3164175\n" &&
|
|
|
|
printf "Jobs: $(cat jobname)\n" &&
|
|
|
|
printf "MoreJunk: 3711\n"
|
|
|
|
) >msg &&
|
|
|
|
git commit -F - <msg &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
# build a job
|
|
|
|
make_job $(cat jobname) &&
|
|
|
|
test_must_fail git p4 submit 2>err &&
|
|
|
|
test_i18ngrep "Unknown field name" err
|
2012-09-09 22:16:12 +02:00
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
p4 revert desc6 &&
|
2015-11-24 08:43:59 +01:00
|
|
|
rm -f desc6
|
2012-09-09 22:16:12 +02:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'submit --prepare-p4-only' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
echo prep-only-add >prep-only-add &&
|
|
|
|
git add prep-only-add &&
|
|
|
|
git commit -m "prep only add" &&
|
|
|
|
git p4 submit --prepare-p4-only >out &&
|
|
|
|
test_i18ngrep "prepared for submission" out &&
|
2014-05-24 19:40:35 +02:00
|
|
|
test_i18ngrep "must be deleted" out &&
|
2014-08-13 21:30:11 +02:00
|
|
|
test_i18ngrep ! "everything below this line is just the diff" out
|
2012-09-09 22:16:12 +02:00
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
test_path_is_file prep-only-add &&
|
|
|
|
p4 fstat -T action prep-only-add | grep -w add
|
2012-07-04 15:34:20 +02:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2016-11-28 10:33:18 +01:00
|
|
|
test_expect_success 'submit --shelve' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
p4 revert ... &&
|
|
|
|
cd "$git" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
test_commit "shelveme1" &&
|
|
|
|
git p4 submit --origin=HEAD^ &&
|
|
|
|
|
|
|
|
echo 654321 >shelveme2.t &&
|
|
|
|
echo 123456 >>shelveme1.t &&
|
|
|
|
git add shelveme* &&
|
|
|
|
git commit -m"shelvetest" &&
|
|
|
|
git p4 submit --shelve --origin=HEAD^ &&
|
|
|
|
|
|
|
|
test_path_is_file shelveme1.t &&
|
|
|
|
test_path_is_file shelveme2.t
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
change=$(p4 -G changes -s shelved -m 1 //depot/... | \
|
|
|
|
marshal_dump change) &&
|
|
|
|
p4 describe -S $change | grep shelveme2 &&
|
|
|
|
p4 describe -S $change | grep 123456 &&
|
|
|
|
test_path_is_file shelveme1.t &&
|
|
|
|
test_path_is_missing shelveme2.t
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2019-01-18 10:36:55 +01:00
|
|
|
last_shelve () {
|
|
|
|
p4 -G changes -s shelved -m 1 //depot/... | marshal_dump change
|
|
|
|
}
|
|
|
|
|
2017-12-21 12:06:14 +01:00
|
|
|
make_shelved_cl() {
|
|
|
|
test_commit "$1" >/dev/null &&
|
|
|
|
git p4 submit --origin HEAD^ --shelve >/dev/null &&
|
|
|
|
p4 -G changes -s shelved -m 1 | marshal_dump change
|
|
|
|
}
|
|
|
|
|
|
|
|
# Update existing shelved changelists
|
2016-12-02 23:43:19 +01:00
|
|
|
|
|
|
|
test_expect_success 'submit --update-shelve' '
|
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
p4 revert ... &&
|
|
|
|
cd "$git" &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
2017-12-21 12:06:14 +01:00
|
|
|
shelved_cl0=$(make_shelved_cl "shelved-change-0") &&
|
|
|
|
echo shelved_cl0=$shelved_cl0 &&
|
|
|
|
shelved_cl1=$(make_shelved_cl "shelved-change-1") &&
|
2016-12-02 23:43:19 +01:00
|
|
|
|
2017-12-21 12:06:14 +01:00
|
|
|
echo "updating shelved change lists $shelved_cl0 and $shelved_cl1" &&
|
2016-12-02 23:43:19 +01:00
|
|
|
|
|
|
|
echo "updated-line" >>shelf.t &&
|
|
|
|
echo added-file.t >added-file.t &&
|
|
|
|
git add shelf.t added-file.t &&
|
2017-12-21 12:06:14 +01:00
|
|
|
git rm -f shelved-change-1.t &&
|
2016-12-02 23:43:19 +01:00
|
|
|
git commit --amend -C HEAD &&
|
|
|
|
git show --stat HEAD &&
|
2017-12-21 12:06:14 +01:00
|
|
|
git p4 submit -v --origin HEAD~2 --update-shelve $shelved_cl0 --update-shelve $shelved_cl1 &&
|
2016-12-02 23:43:19 +01:00
|
|
|
echo "done git p4 submit"
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
2019-01-18 10:36:55 +01:00
|
|
|
change=$(last_shelve) &&
|
2016-12-02 23:43:19 +01:00
|
|
|
p4 unshelve -c $change -s $change &&
|
|
|
|
grep -q updated-line shelf.t &&
|
|
|
|
p4 describe -S $change | grep added-file.t &&
|
2019-01-18 10:36:55 +01:00
|
|
|
test_path_is_missing shelved-change-1.t &&
|
|
|
|
p4 revert ...
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2019-01-18 10:36:56 +01:00
|
|
|
test_expect_success 'update a shelve involving moved and copied files' '
|
2019-01-18 10:36:55 +01:00
|
|
|
test_when_finished cleanup_git &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
: >file_to_move &&
|
|
|
|
p4 add file_to_move &&
|
|
|
|
p4 submit -d "change1" &&
|
|
|
|
p4 edit file_to_move &&
|
|
|
|
echo change >>file_to_move &&
|
|
|
|
p4 submit -d "change2" &&
|
|
|
|
p4 opened
|
|
|
|
) &&
|
|
|
|
git p4 clone --dest="$git" //depot &&
|
|
|
|
(
|
|
|
|
cd "$git" &&
|
|
|
|
git config git-p4.detectCopies true &&
|
|
|
|
git config git-p4.detectRenames true &&
|
|
|
|
git config git-p4.skipSubmitEdit true &&
|
|
|
|
mkdir moved &&
|
|
|
|
cp file_to_move copy_of_file &&
|
|
|
|
git add copy_of_file &&
|
|
|
|
git mv file_to_move moved/ &&
|
|
|
|
git commit -m "rename a file" &&
|
|
|
|
git p4 submit -M --shelve --origin HEAD^ &&
|
|
|
|
: >new_file &&
|
|
|
|
git add new_file &&
|
|
|
|
git commit --amend &&
|
|
|
|
git show --stat HEAD &&
|
|
|
|
change=$(last_shelve) &&
|
|
|
|
git p4 submit -M --update-shelve $change --commit HEAD
|
|
|
|
) &&
|
|
|
|
(
|
|
|
|
cd "$cli" &&
|
|
|
|
change=$(last_shelve) &&
|
|
|
|
echo change=$change &&
|
|
|
|
p4 unshelve -s $change &&
|
|
|
|
p4 submit -d "Testing update-shelve" &&
|
|
|
|
test_path_is_file copy_of_file &&
|
|
|
|
test_path_is_file moved/file_to_move &&
|
|
|
|
test_path_is_missing file_to_move &&
|
|
|
|
test_path_is_file new_file &&
|
|
|
|
echo "unshelved and submitted change $change" &&
|
|
|
|
p4 changes moved/file_to_move | grep "Testing update-shelve" &&
|
|
|
|
p4 changes copy_of_file | grep "Testing update-shelve"
|
2016-12-02 23:43:19 +01:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2011-12-10 00:48:15 +01:00
|
|
|
test_done
|