From: "SZEDER Gábor" <szeder.dev@gmail.com>
To: Luke Diamand <luke@diamand.org>
Cc: "SZEDER Gábor" <szeder.dev@gmail.com>,
git@vger.kernel.org, "Junio C Hamano" <gitster@pobox.com>,
"Romain Merland" <merlorom@yahoo.fr>,
"Miguel Torroja" <miguel.torroja@gmail.com>,
"Lars Schneider" <larsxschneider@gmail.com>,
"George Vanburgh" <gvanburgh@bloomberg.net>
Subject: Re: [PATCHv4 1/1] git-p4: add unshelve command
Date: Mon, 21 May 2018 23:39:24 +0200 [thread overview]
Message-ID: <20180521213924.4491-1-szeder.dev@gmail.com> (raw)
In-Reply-To: <20180519100020.616-2-luke@diamand.org>
> diff --git a/t/t9832-unshelve.sh b/t/t9832-unshelve.sh
> new file mode 100755
> index 0000000000..cca2dec536
> --- /dev/null
> +++ b/t/t9832-unshelve.sh
> @@ -0,0 +1,153 @@
> +#!/bin/sh
> +
> +last_shelved_change() {
> + p4 changes -s shelved -m1 | cut -d " " -f 2
> +}
> +
> +test_description='git p4 unshelve'
> +
> +. ./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"
> + : >file_to_delete &&
> + p4 add file_to_delete &&
> + p4 submit -d "file to delete"
> + )
> +'
> +
> +test_expect_success 'initial clone' '
> + git p4 clone --dest="$git" //depot/@all
> +'
> +
> +test_expect_success 'create shelved changelist' '
> + (
> + cd "$cli" &&
> + p4 edit file1 &&
> + echo "a change" >>file1 &&
> + echo "new file" >file2 &&
> + p4 add file2 &&
> + p4 delete file_to_delete &&
> + p4 opened &&
> + p4 shelve -i <<EOF
> +Change: new
> +Description:
> + Test commit
> +
> + Further description
> +Files:
> + //depot/file1
> + //depot/file2
> + //depot/file_to_delete
> +EOF
> +
> + ) &&
> + (
> + cd "$git" &&
> + change=$(last_shelved_change) &&
> + git p4 unshelve $change &&
> + git show refs/remotes/p4/unshelved/$change | grep -q "Further description" &&
> + git cherry-pick refs/remotes/p4/unshelved/$change &&
> + test_path_is_file file2 &&
> + test_cmp file1 "$cli"/file1 &&
> + test_cmp file2 "$cli"/file2 &&
> + test_path_is_missing file_to_delete
> + )
> +'
This test fails on my box and on Travis CI (in all four standard Linux
and OSX build jobs) with:
+ cd /home/szeder/src/git/t/trash directory.t9832-unshelve/cli
+ p4 edit file1
//depot/file1#1 - opened for edit
+ echo a change
+ echo new file
+ p4 add file2
//depot/file2#1 - opened for add
+ p4 delete file_to_delete
//depot/file_to_delete#1 - opened for delete
+ p4 opened
//depot/file1#1 - edit default change (text)
//depot/file2#1 - add default change (text)
//depot/file_to_delete#1 - delete default change (text)
+ p4 shelve -i
Change 3 created with 3 open file(s).
Shelving files for change 3.
edit //depot/file1#1
add //depot/file2#1
delete //depot/file_to_delete#1
Change 3 files shelved.
+ cd /home/szeder/src/git/t/trash directory.t9832-unshelve/git
+ last_shelved_change
+ p4 changes -s shelved -m1
+ cut -d -f 2
+ change=3
+ git p4 unshelve 3
Traceback (most recent call last):
File "/home/szeder/src/git/git-p4", line 3975, in <module>
main()
File "/home/szeder/src/git/git-p4", line 3969, in main
if not cmd.run(args):
File "/home/szeder/src/git/git-p4", line 3851, in run
sync.importChanges(changes, shelved=True,
origin_revision=origin_revision)
File "/home/szeder/src/git/git-p4", line 3296, in importChanges
files = self.extractFilesFromCommit(description, shelved, change,
origin_revision)
File "/home/szeder/src/git/git-p4", line 2496, in
extractFilesFromCommit
not self.cmp_shelved(path, file["rev"], origin_revision):
File "/home/szeder/src/git/git-p4", line 2467, in cmp_shelved
return ret["status"] == "identical"
KeyError: 'status'
error: last command exited with $?=1
not ok 4 - create shelved changelist
The next test fails with the same backtrace, too, so I won't include
it.
> +
> +test_expect_success 'update shelved changelist and re-unshelve' '
> + test_when_finished cleanup_git &&
> + (
> + cd "$cli" &&
> + change=$(last_shelved_change) &&
> + echo "file3" >file3 &&
> + p4 add -c $change file3 &&
> + p4 shelve -i -r <<EOF &&
> +Change: $change
> +Description:
> + Test commit
> +
> + Further description
> +Files:
> + //depot/file1
> + //depot/file2
> + //depot/file3
> + //depot/file_to_delete
> +EOF
> + p4 describe $change
> + ) &&
> + (
> + cd "$git" &&
> + change=$(last_shelved_change) &&
> + git p4 unshelve $change &&
> + git diff refs/remotes/p4/unshelved/$change.0 refs/remotes/p4/unshelved/$change | grep -q file3
> + )
> +'
next prev parent reply other threads:[~2018-05-21 21:39 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-19 10:00 [PATCHv4 0/1] git-p4: unshelving: fix for python2.6 Luke Diamand
2018-05-19 10:00 ` [PATCHv4 1/1] git-p4: add unshelve command Luke Diamand
2018-05-20 14:49 ` SZEDER Gábor
2018-05-21 7:07 ` Junio C Hamano
2018-05-21 14:59 ` Luke Diamand
2018-05-21 21:39 ` SZEDER Gábor [this message]
2018-05-21 22:09 ` Luke Diamand
2018-05-21 22:19 ` Luke Diamand
2018-05-21 22:22 ` SZEDER Gábor
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180521213924.4491-1-szeder.dev@gmail.com \
--to=szeder.dev@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=gvanburgh@bloomberg.net \
--cc=larsxschneider@gmail.com \
--cc=luke@diamand.org \
--cc=merlorom@yahoo.fr \
--cc=miguel.torroja@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.