]> git.ipfire.org Git - thirdparty/git.git/blob - t/t9151-svn-mergeinfo.sh
The sixth batch
[thirdparty/git.git] / t / t9151-svn-mergeinfo.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2007, 2009 Sam Vilain
4 #
5
6 test_description='git-svn svn mergeinfo properties'
7
8 . ./lib-git-svn.sh
9
10 test_expect_success 'load svn dump' "
11 svnadmin load -q '$rawsvnrepo' \
12 < '$TEST_DIRECTORY/t9151/svn-mergeinfo.dump' &&
13 git svn init --minimize-url -R svnmerge \
14 --rewrite-root=http://svn.example.org \
15 -T trunk -b branches '$svnrepo' &&
16 git svn fetch --all
17 "
18
19 test_expect_success 'all svn merges became git merge commits' '
20 unmarked=$(git rev-list --parents --all --grep=Merge |
21 grep -v " .* " | cut -f1 -d" ") &&
22 [ -z "$unmarked" ]
23 '
24
25 test_expect_success 'cherry picks did not become git merge commits' '
26 bad_cherries=$(git rev-list --parents --all --grep=Cherry |
27 grep " .* " | cut -f1 -d" ") &&
28 [ -z "$bad_cherries" ]
29 '
30
31 test_expect_success 'svn non-merge merge commits did not become git merge commits' '
32 bad_non_merges=$(git rev-list --parents --all --grep=non-merge |
33 grep " .* " | cut -f1 -d" ") &&
34 [ -z "$bad_non_merges" ]
35 '
36
37 test_expect_success 'commit made to merged branch is reachable from the merge' '
38 before_commit=$(git rev-list --all --grep="trunk commit before merging trunk to b2") &&
39 merge_commit=$(git rev-list --all --grep="Merge trunk to b2") &&
40 not_reachable=$(git rev-list -1 $before_commit --not $merge_commit) &&
41 [ -z "$not_reachable" ]
42 '
43
44 test_expect_success 'merging two branches in one commit is detected correctly' '
45 f1_commit=$(git rev-list --all --grep="make f1 branch from trunk") &&
46 f2_commit=$(git rev-list --all --grep="make f2 branch from trunk") &&
47 merge_commit=$(git rev-list --all --grep="Merge f1 and f2 to trunk") &&
48 not_reachable=$(git rev-list -1 $f1_commit $f2_commit --not $merge_commit) &&
49 [ -z "$not_reachable" ]
50 '
51
52 test_expect_failure 'everything got merged in the end' '
53 unmerged=$(git rev-list --all --not master) &&
54 [ -z "$unmerged" ]
55 '
56
57 test_done