Memorialize Python 3.7 support
[stgit.git] / t / t1302-repair-interop.sh
blobcce3cf1f40c00c1ca763410ac0f66f67e7c6c5ee
1 #!/bin/sh
2 test_description='Test git/StGit interoperability with "stg repair"'
3 . ./test-lib.sh
5 test_expect_success 'Create some git-only history' '
6 echo foo > foo.txt &&
7 stg add foo.txt &&
8 git commit -a -m foo &&
9 git tag foo-tag &&
10 for i in 0 1 2 3 4; do
11 echo foo$i >> foo.txt &&
12 git commit -a -m foo$i;
13 done
16 test_expect_success 'Initialize the StGit repository' '
17 stg init
20 test_expect_success 'Create five patches' '
21 for i in 0 1 2 3 4; do
22 stg new p$i -m p$i;
23 done &&
24 [ "$(echo $(stg series --applied --noprefix))" = "p0 p1 p2 p3 p4" ] &&
25 [ "$(echo $(stg series --unapplied --noprefix))" = "" ]
28 test_expect_success 'Pop two patches with git reset' '
29 git reset --hard HEAD~2 &&
30 command_error stg refresh &&
31 stg repair &&
32 stg refresh &&
33 [ "$(echo $(stg series --applied --noprefix))" = "p0 p1 p2" ] &&
34 [ "$(echo $(stg series --unapplied --noprefix))" = "p3 p4" ]
37 test_expect_success 'Create a new patch' '
38 stg new q0 -m q0 &&
39 [ "$(echo $(stg series --applied --noprefix))" = "p0 p1 p2 q0" ] &&
40 [ "$(echo $(stg series --unapplied --noprefix))" = "p3 p4" ]
43 test_expect_success 'Go to an unapplied patch with with git reset' '
44 git reset --hard $(stg id p3) &&
45 command_error stg refresh &&
46 stg repair &&
47 stg refresh &&
48 [ "$(echo $(stg series --applied --noprefix))" = "p0 p1 p2 p3" ] &&
49 [ "$(echo $(stg series --unapplied --noprefix))" = "q0 p4" ]
52 test_expect_success 'Go back to below the stack base with git reset' '
53 git reset --hard foo-tag &&
54 stg repair &&
55 [ "$(echo $(stg series --applied --noprefix))" = "" ] &&
56 [ "$(echo $(stg series --unapplied --noprefix))" = "p0 p1 p2 p3 q0 p4" ]
59 test_done