From: Yann Dirson Date: Sun, 16 Apr 2006 20:40:29 +0000 (+0200) Subject: Test that pulls a patch creating a file that got modified afterwards X-Git-Tag: v0.14.3~504 X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/8c8be628038f425c90c2101e362bf77f9a8bd948 Test that pulls a patch creating a file that got modified afterwards This demonstrates an issue wite has bitten me more than once: the stg branch adds a file in one patch, and modifies it in a later patch; then all patches get integrated in upstream tree, and at "stg pull" time, stgit believes there is a conflict, even when the patches are exactly the same. This is normal as it requires the --merged flag on push or pull. So we rollback with "push --undo" and "push --merge" to finish. --- diff --git a/t/t1200-push-modified.sh b/t/t1200-push-modified.sh new file mode 100755 index 0000000..7847a38 --- /dev/null +++ b/t/t1200-push-modified.sh @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Copyright (c) 2006 Yann Dirson +# + +test_description='Exercise pushing patches applied upstream. + +Especially, consider the case of a patch that adds a file, while a +subsequent one modifies it, so we have to use --merged for push to +detect the merge. Reproduce the common workflow where one does not +specify --merged, then rollback and retry with the correct flag.' + +. ./test-lib.sh + +# don't need this repo, but better not drop it, see t1100 +#rm -rf .git + +# Need a repo to clone +test_create_repo foo + +test_expect_success \ + 'Clone tree and setup changes' \ + "stg clone foo bar && + (cd bar && stg new p1 -m p1 + printf 'a\nc\n' > file && stg add file && stg refresh && + stg new p2 -m p2 + printf 'a\nb\nc\n' > file && stg refresh + ) +" + +test_expect_success \ + 'Port those patches to orig tree' \ + "(cd foo && + GIT_DIR=../bar/.git git-format-patch --stdout bases/master..HEAD | + git-am -3 -k + ) +" + +test_expect_success \ + 'Pull to sync with parent, preparing for the problem' \ + "(cd bar && stg pop --all && + stg pull + ) +" + +test_expect_failure \ + 'Attempt to push the first of those patches without --merged' \ + "(cd bar && stg push + ) +" + +test_expect_success \ + 'Rollback the push' \ + "(cd bar && stg push --undo + ) +" + +test_expect_success \ + 'Push those patches while checking they were merged upstream' \ + "(cd bar && stg push --merged --all + ) +" + +test_done