Start the 2.46 cycle
[git.git] / t / t6428-merge-conflicts-sparse.sh
blob9919c3fa7cd4359ebe36e3b4b1cbbe99da227905
1 #!/bin/sh
3 test_description="merge cases"
5 # The setup for all of them, pictorially, is:
7 # A
8 # o
9 # / \
10 # O o ?
11 # \ /
12 # o
13 # B
15 # To help make it easier to follow the flow of tests, they have been
16 # divided into sections and each test will start with a quick explanation
17 # of what commits O, A, and B contain.
19 # Notation:
20 # z/{b,c} means files z/b and z/c both exist
21 # x/d_1 means file x/d exists with content d1. (Purpose of the
22 # underscore notation is to differentiate different
23 # files that might be renamed into each other's paths.)
25 . ./test-lib.sh
26 . "$TEST_DIRECTORY"/lib-merge.sh
29 # Testcase basic, conflicting changes in 'numerals'
31 test_setup_numerals () {
32 git init numerals_$1 &&
34 cd numerals_$1 &&
36 >README &&
37 test_write_lines I II III >numerals &&
38 git add README numerals &&
39 test_tick &&
40 git commit -m "O" &&
42 git branch O &&
43 git branch A &&
44 git branch B &&
46 git checkout A &&
47 test_write_lines I II III IIII >numerals &&
48 git add numerals &&
49 test_tick &&
50 git commit -m "A" &&
52 git checkout B &&
53 test_write_lines I II III IV >numerals &&
54 git add numerals &&
55 test_tick &&
56 git commit -m "B" &&
58 cat <<-EOF >expected-index &&
59 H README
60 M numerals
61 M numerals
62 M numerals
63 EOF
65 cat <<-EOF >expected-merge
68 III
69 <<<<<<< HEAD
70 IIII
71 =======
73 >>>>>>> B^0
74 EOF
79 test_expect_success 'conflicting entries written to worktree even if sparse' '
80 test_setup_numerals plain &&
82 cd numerals_plain &&
84 git checkout A^0 &&
86 test_path_is_file README &&
87 test_path_is_file numerals &&
89 git sparse-checkout init &&
90 git sparse-checkout set --no-cone README &&
92 test_path_is_file README &&
93 test_path_is_missing numerals &&
95 test_must_fail git merge -s recursive B^0 &&
97 git ls-files -t >index_files &&
98 test_cmp expected-index index_files &&
100 test_path_is_file README &&
101 test_path_is_file numerals &&
103 test_cmp expected-merge numerals &&
105 # 4 other files:
106 # * expected-merge
107 # * expected-index
108 # * index_files
109 # * others
110 git ls-files -o >others &&
111 test_line_count = 4 others
115 test_expect_success 'present-despite-SKIP_WORKTREE handled reasonably' '
116 test_setup_numerals in_the_way &&
118 cd numerals_in_the_way &&
120 git checkout A^0 &&
122 test_path_is_file README &&
123 test_path_is_file numerals &&
125 git sparse-checkout init &&
126 git sparse-checkout set --no-cone README &&
128 test_path_is_file README &&
129 test_path_is_missing numerals &&
131 echo foobar >numerals &&
133 test_must_fail git merge -s recursive B^0 &&
135 test_path_is_missing .git/MERGE_HEAD &&
137 test_path_is_file numerals &&
139 # numerals should still have "foobar" in it
140 echo foobar >expect &&
141 test_cmp expect numerals
145 test_done