Sync with 2.33.5
[alt-git.git] / t / t7064-wtstatus-pv2.sh
blob5a0c5685bd087324674ca9189b0b1e6d68e47035
1 #!/bin/sh
3 test_description='git status --porcelain=v2
5 This test exercises porcelain V2 output for git status.'
8 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
9 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
11 . ./test-lib.sh
14 test_expect_success setup '
15 git checkout -f --orphan initial-branch &&
16 test_tick &&
17 git config core.autocrlf false &&
18 echo x >file_x &&
19 echo y >file_y &&
20 echo z >file_z &&
21 mkdir dir1 &&
22 echo a >dir1/file_a &&
23 echo b >dir1/file_b
26 test_expect_success 'before initial commit, nothing added, only untracked' '
27 cat >expect <<-EOF &&
28 # branch.oid (initial)
29 # branch.head initial-branch
30 ? actual
31 ? dir1/
32 ? expect
33 ? file_x
34 ? file_y
35 ? file_z
36 EOF
38 git status --porcelain=v2 --branch --untracked-files=normal >actual &&
39 test_cmp expect actual
42 test_expect_success 'before initial commit, things added' '
43 git add file_x file_y file_z dir1 &&
44 OID_A=$(git hash-object -t blob -- dir1/file_a) &&
45 OID_B=$(git hash-object -t blob -- dir1/file_b) &&
46 OID_X=$(git hash-object -t blob -- file_x) &&
47 OID_Y=$(git hash-object -t blob -- file_y) &&
48 OID_Z=$(git hash-object -t blob -- file_z) &&
50 cat >expect <<-EOF &&
51 # branch.oid (initial)
52 # branch.head initial-branch
53 1 A. N... 000000 100644 100644 $ZERO_OID $OID_A dir1/file_a
54 1 A. N... 000000 100644 100644 $ZERO_OID $OID_B dir1/file_b
55 1 A. N... 000000 100644 100644 $ZERO_OID $OID_X file_x
56 1 A. N... 000000 100644 100644 $ZERO_OID $OID_Y file_y
57 1 A. N... 000000 100644 100644 $ZERO_OID $OID_Z file_z
58 ? actual
59 ? expect
60 EOF
62 git status --porcelain=v2 --branch --untracked-files=all >actual &&
63 test_cmp expect actual
66 test_expect_success 'before initial commit, things added (-z)' '
67 lf_to_nul >expect <<-EOF &&
68 # branch.oid (initial)
69 # branch.head initial-branch
70 1 A. N... 000000 100644 100644 $ZERO_OID $OID_A dir1/file_a
71 1 A. N... 000000 100644 100644 $ZERO_OID $OID_B dir1/file_b
72 1 A. N... 000000 100644 100644 $ZERO_OID $OID_X file_x
73 1 A. N... 000000 100644 100644 $ZERO_OID $OID_Y file_y
74 1 A. N... 000000 100644 100644 $ZERO_OID $OID_Z file_z
75 ? actual
76 ? expect
77 EOF
79 git status -z --porcelain=v2 --branch --untracked-files=all >actual &&
80 test_cmp expect actual
83 test_expect_success 'make first commit, comfirm HEAD oid and branch' '
84 git commit -m initial &&
85 H0=$(git rev-parse HEAD) &&
86 cat >expect <<-EOF &&
87 # branch.oid $H0
88 # branch.head initial-branch
89 ? actual
90 ? expect
91 EOF
93 git status --porcelain=v2 --branch --untracked-files=all >actual &&
94 test_cmp expect actual
97 test_expect_success 'after first commit, create unstaged changes' '
98 echo x >>file_x &&
99 OID_X1=$(git hash-object -t blob -- file_x) &&
100 rm file_z &&
101 H0=$(git rev-parse HEAD) &&
103 cat >expect <<-EOF &&
104 # branch.oid $H0
105 # branch.head initial-branch
106 1 .M N... 100644 100644 100644 $OID_X $OID_X file_x
107 1 .D N... 100644 100644 000000 $OID_Z $OID_Z file_z
108 ? actual
109 ? expect
112 git status --porcelain=v2 --branch --untracked-files=all >actual &&
113 test_cmp expect actual
116 test_expect_success 'after first commit but omit untracked files and branch' '
117 cat >expect <<-EOF &&
118 1 .M N... 100644 100644 100644 $OID_X $OID_X file_x
119 1 .D N... 100644 100644 000000 $OID_Z $OID_Z file_z
122 git status --porcelain=v2 --untracked-files=no >actual &&
123 test_cmp expect actual
126 test_expect_success 'after first commit, stage existing changes' '
127 git add file_x &&
128 git rm file_z &&
129 H0=$(git rev-parse HEAD) &&
131 cat >expect <<-EOF &&
132 # branch.oid $H0
133 # branch.head initial-branch
134 1 M. N... 100644 100644 100644 $OID_X $OID_X1 file_x
135 1 D. N... 100644 000000 000000 $OID_Z $ZERO_OID file_z
136 ? actual
137 ? expect
140 git status --porcelain=v2 --branch --untracked-files=all >actual &&
141 test_cmp expect actual
144 test_expect_success 'rename causes 2 path lines' '
145 git mv file_y renamed_y &&
146 H0=$(git rev-parse HEAD) &&
148 q_to_tab >expect <<-EOF &&
149 # branch.oid $H0
150 # branch.head initial-branch
151 1 M. N... 100644 100644 100644 $OID_X $OID_X1 file_x
152 1 D. N... 100644 000000 000000 $OID_Z $ZERO_OID file_z
153 2 R. N... 100644 100644 100644 $OID_Y $OID_Y R100 renamed_yQfile_y
154 ? actual
155 ? expect
158 git status --porcelain=v2 --branch --untracked-files=all >actual &&
159 test_cmp expect actual
162 test_expect_success 'rename causes 2 path lines (-z)' '
163 H0=$(git rev-parse HEAD) &&
165 ## Lines use NUL path separator and line terminator, so double transform here.
166 q_to_nul <<-EOF | lf_to_nul >expect &&
167 # branch.oid $H0
168 # branch.head initial-branch
169 1 M. N... 100644 100644 100644 $OID_X $OID_X1 file_x
170 1 D. N... 100644 000000 000000 $OID_Z $ZERO_OID file_z
171 2 R. N... 100644 100644 100644 $OID_Y $OID_Y R100 renamed_yQfile_y
172 ? actual
173 ? expect
176 git status --porcelain=v2 --branch --untracked-files=all -z >actual &&
177 test_cmp expect actual
180 test_expect_success 'make second commit, confirm clean and new HEAD oid' '
181 git commit -m second &&
182 H1=$(git rev-parse HEAD) &&
184 cat >expect <<-EOF &&
185 # branch.oid $H1
186 # branch.head initial-branch
187 ? actual
188 ? expect
191 git status --porcelain=v2 --branch --untracked-files=all >actual &&
192 test_cmp expect actual
195 test_expect_success 'confirm ignored files are not printed' '
196 test_when_finished "rm -f x.ign .gitignore" &&
197 echo x.ign >.gitignore &&
198 echo "ignore me" >x.ign &&
200 cat >expect <<-EOF &&
201 ? .gitignore
202 ? actual
203 ? expect
206 git status --porcelain=v2 --untracked-files=all >actual &&
207 test_cmp expect actual
210 test_expect_success 'ignored files are printed with --ignored' '
211 test_when_finished "rm -f x.ign .gitignore" &&
212 echo x.ign >.gitignore &&
213 echo "ignore me" >x.ign &&
215 cat >expect <<-EOF &&
216 ? .gitignore
217 ? actual
218 ? expect
219 ! x.ign
222 git status --porcelain=v2 --ignored --untracked-files=all >actual &&
223 test_cmp expect actual
226 test_expect_success 'create and commit permanent ignore file' '
227 cat >.gitignore <<-EOF &&
228 actual*
229 expect*
232 git add .gitignore &&
233 git commit -m ignore_trash &&
234 H1=$(git rev-parse HEAD) &&
236 cat >expect <<-EOF &&
237 # branch.oid $H1
238 # branch.head initial-branch
241 git status --porcelain=v2 --branch >actual &&
242 test_cmp expect actual
245 test_expect_success 'verify --intent-to-add output' '
246 test_when_finished "git rm -f intent1.add intent2.add" &&
247 touch intent1.add &&
248 echo test >intent2.add &&
250 git add --intent-to-add intent1.add intent2.add &&
252 cat >expect <<-EOF &&
253 1 .A N... 000000 000000 100644 $ZERO_OID $ZERO_OID intent1.add
254 1 .A N... 000000 000000 100644 $ZERO_OID $ZERO_OID intent2.add
257 git status --porcelain=v2 >actual &&
258 test_cmp expect actual
261 test_expect_success 'verify AA (add-add) conflict' '
262 test_when_finished "git reset --hard" &&
264 git branch AA_A initial-branch &&
265 git checkout AA_A &&
266 echo "Branch AA_A" >conflict.txt &&
267 OID_AA_A=$(git hash-object -t blob -- conflict.txt) &&
268 git add conflict.txt &&
269 git commit -m "branch aa_a" &&
271 git branch AA_B initial-branch &&
272 git checkout AA_B &&
273 echo "Branch AA_B" >conflict.txt &&
274 OID_AA_B=$(git hash-object -t blob -- conflict.txt) &&
275 git add conflict.txt &&
276 git commit -m "branch aa_b" &&
278 git branch AA_M AA_B &&
279 git checkout AA_M &&
280 test_must_fail git merge AA_A &&
282 HM=$(git rev-parse HEAD) &&
284 cat >expect <<-EOF &&
285 # branch.oid $HM
286 # branch.head AA_M
287 u AA N... 000000 100644 100644 100644 $ZERO_OID $OID_AA_B $OID_AA_A conflict.txt
290 git status --porcelain=v2 --branch --untracked-files=all >actual &&
291 test_cmp expect actual
294 test_expect_success 'verify UU (edit-edit) conflict' '
295 test_when_finished "git reset --hard" &&
297 git branch UU_ANC initial-branch &&
298 git checkout UU_ANC &&
299 echo "Ancestor" >conflict.txt &&
300 OID_UU_ANC=$(git hash-object -t blob -- conflict.txt) &&
301 git add conflict.txt &&
302 git commit -m "UU_ANC" &&
304 git branch UU_A UU_ANC &&
305 git checkout UU_A &&
306 echo "Branch UU_A" >conflict.txt &&
307 OID_UU_A=$(git hash-object -t blob -- conflict.txt) &&
308 git add conflict.txt &&
309 git commit -m "branch uu_a" &&
311 git branch UU_B UU_ANC &&
312 git checkout UU_B &&
313 echo "Branch UU_B" >conflict.txt &&
314 OID_UU_B=$(git hash-object -t blob -- conflict.txt) &&
315 git add conflict.txt &&
316 git commit -m "branch uu_b" &&
318 git branch UU_M UU_B &&
319 git checkout UU_M &&
320 test_must_fail git merge UU_A &&
322 HM=$(git rev-parse HEAD) &&
324 cat >expect <<-EOF &&
325 # branch.oid $HM
326 # branch.head UU_M
327 u UU N... 100644 100644 100644 100644 $OID_UU_ANC $OID_UU_B $OID_UU_A conflict.txt
330 git status --porcelain=v2 --branch --untracked-files=all >actual &&
331 test_cmp expect actual
334 test_expect_success 'verify upstream fields in branch header' '
335 git checkout initial-branch &&
336 test_when_finished "rm -rf sub_repo" &&
337 git clone . sub_repo &&
339 ## Confirm local initial-branch tracks remote initial-branch.
340 cd sub_repo &&
341 HUF=$(git rev-parse HEAD) &&
343 cat >expect <<-EOF &&
344 # branch.oid $HUF
345 # branch.head initial-branch
346 # branch.upstream origin/initial-branch
347 # branch.ab +0 -0
350 git status --porcelain=v2 --branch --untracked-files=all >actual &&
351 test_cmp expect actual &&
353 ## Test ahead/behind.
354 echo xyz >file_xyz &&
355 git add file_xyz &&
356 git commit -m xyz &&
358 HUF=$(git rev-parse HEAD) &&
360 cat >expect <<-EOF &&
361 # branch.oid $HUF
362 # branch.head initial-branch
363 # branch.upstream origin/initial-branch
364 # branch.ab +1 -0
367 git status --porcelain=v2 --branch --untracked-files=all >actual &&
368 test_cmp expect actual &&
370 ## Repeat the above but without --branch.
371 git status --porcelain=v2 --untracked-files=all >actual &&
372 test_must_be_empty actual &&
374 ## Test upstream-gone case. Fake this by pointing
375 ## origin/initial-branch at a non-existing commit.
376 git update-ref -d refs/remotes/origin/initial-branch &&
378 HUF=$(git rev-parse HEAD) &&
380 cat >expect <<-EOF &&
381 # branch.oid $HUF
382 # branch.head initial-branch
383 # branch.upstream origin/initial-branch
386 git status --porcelain=v2 --branch --untracked-files=all >actual &&
387 test_cmp expect actual
391 test_expect_success 'verify --[no-]ahead-behind with V2 format' '
392 git checkout initial-branch &&
393 test_when_finished "rm -rf sub_repo" &&
394 git clone . sub_repo &&
396 ## Confirm local initial-branch tracks remote initial-branch.
397 cd sub_repo &&
398 HUF=$(git rev-parse HEAD) &&
400 # Confirm --no-ahead-behind reports traditional branch.ab with 0/0 for equal branches.
401 cat >expect <<-EOF &&
402 # branch.oid $HUF
403 # branch.head initial-branch
404 # branch.upstream origin/initial-branch
405 # branch.ab +0 -0
408 git status --no-ahead-behind --porcelain=v2 --branch --untracked-files=all >actual &&
409 test_cmp expect actual &&
411 # Confirm --ahead-behind reports traditional branch.ab with 0/0.
412 cat >expect <<-EOF &&
413 # branch.oid $HUF
414 # branch.head initial-branch
415 # branch.upstream origin/initial-branch
416 # branch.ab +0 -0
419 git status --ahead-behind --porcelain=v2 --branch --untracked-files=all >actual &&
420 test_cmp expect actual &&
422 ## Test non-equal ahead/behind.
423 echo xyz >file_xyz &&
424 git add file_xyz &&
425 git commit -m xyz &&
427 HUF=$(git rev-parse HEAD) &&
429 # Confirm --no-ahead-behind reports branch.ab with ?/? for non-equal branches.
430 cat >expect <<-EOF &&
431 # branch.oid $HUF
432 # branch.head initial-branch
433 # branch.upstream origin/initial-branch
434 # branch.ab +? -?
437 git status --no-ahead-behind --porcelain=v2 --branch --untracked-files=all >actual &&
438 test_cmp expect actual &&
440 # Confirm --ahead-behind reports traditional branch.ab with 1/0.
441 cat >expect <<-EOF &&
442 # branch.oid $HUF
443 # branch.head initial-branch
444 # branch.upstream origin/initial-branch
445 # branch.ab +1 -0
448 git status --ahead-behind --porcelain=v2 --branch --untracked-files=all >actual &&
449 test_cmp expect actual &&
451 # Confirm that "status.aheadbehind" DOES NOT work on V2 format.
452 git -c status.aheadbehind=false status --porcelain=v2 --branch --untracked-files=all >actual &&
453 test_cmp expect actual &&
455 # Confirm that "status.aheadbehind" DOES NOT work on V2 format.
456 git -c status.aheadbehind=true status --porcelain=v2 --branch --untracked-files=all >actual &&
457 test_cmp expect actual
461 test_expect_success 'create and add submodule, submodule appears clean (A. S...)' '
462 git checkout initial-branch &&
463 git clone . sub_repo &&
464 git clone . super_repo &&
465 test_config_global protocol.file.allow always &&
466 ( cd super_repo &&
467 git submodule add ../sub_repo sub1 &&
469 ## Confirm stage/add of clean submodule.
470 HMOD=$(git hash-object -t blob -- .gitmodules) &&
471 HSUP=$(git rev-parse HEAD) &&
472 HSUB=$HSUP &&
474 cat >expect <<-EOF &&
475 # branch.oid $HSUP
476 # branch.head initial-branch
477 # branch.upstream origin/initial-branch
478 # branch.ab +0 -0
479 1 A. N... 000000 100644 100644 $ZERO_OID $HMOD .gitmodules
480 1 A. S... 000000 160000 160000 $ZERO_OID $HSUB sub1
483 git status --porcelain=v2 --branch --untracked-files=all >actual &&
484 test_cmp expect actual
488 test_expect_success 'untracked changes in added submodule (AM S..U)' '
489 ( cd super_repo &&
490 ## create untracked file in the submodule.
491 ( cd sub1 &&
492 echo "xxxx" >file_in_sub
493 ) &&
495 HMOD=$(git hash-object -t blob -- .gitmodules) &&
496 HSUP=$(git rev-parse HEAD) &&
497 HSUB=$HSUP &&
499 cat >expect <<-EOF &&
500 # branch.oid $HSUP
501 # branch.head initial-branch
502 # branch.upstream origin/initial-branch
503 # branch.ab +0 -0
504 1 A. N... 000000 100644 100644 $ZERO_OID $HMOD .gitmodules
505 1 AM S..U 000000 160000 160000 $ZERO_OID $HSUB sub1
508 git status --porcelain=v2 --branch --untracked-files=all >actual &&
509 test_cmp expect actual
513 test_expect_success 'staged changes in added submodule (AM S.M.)' '
514 ( cd super_repo &&
515 ## stage the changes in the submodule.
516 ( cd sub1 &&
517 git add file_in_sub
518 ) &&
520 HMOD=$(git hash-object -t blob -- .gitmodules) &&
521 HSUP=$(git rev-parse HEAD) &&
522 HSUB=$HSUP &&
524 cat >expect <<-EOF &&
525 # branch.oid $HSUP
526 # branch.head initial-branch
527 # branch.upstream origin/initial-branch
528 # branch.ab +0 -0
529 1 A. N... 000000 100644 100644 $ZERO_OID $HMOD .gitmodules
530 1 AM S.M. 000000 160000 160000 $ZERO_OID $HSUB sub1
533 git status --porcelain=v2 --branch --untracked-files=all >actual &&
534 test_cmp expect actual
538 test_expect_success 'staged and unstaged changes in added (AM S.M.)' '
539 ( cd super_repo &&
540 ( cd sub1 &&
541 ## make additional unstaged changes (on the same file) in the submodule.
542 ## This does not cause us to get S.MU (because the submodule does not report
543 ## a "?" line for the unstaged changes).
544 echo "more changes" >>file_in_sub
545 ) &&
547 HMOD=$(git hash-object -t blob -- .gitmodules) &&
548 HSUP=$(git rev-parse HEAD) &&
549 HSUB=$HSUP &&
551 cat >expect <<-EOF &&
552 # branch.oid $HSUP
553 # branch.head initial-branch
554 # branch.upstream origin/initial-branch
555 # branch.ab +0 -0
556 1 A. N... 000000 100644 100644 $ZERO_OID $HMOD .gitmodules
557 1 AM S.M. 000000 160000 160000 $ZERO_OID $HSUB sub1
560 git status --porcelain=v2 --branch --untracked-files=all >actual &&
561 test_cmp expect actual
565 test_expect_success 'staged and untracked changes in added submodule (AM S.MU)' '
566 ( cd super_repo &&
567 ( cd sub1 &&
568 ## stage new changes in tracked file.
569 git add file_in_sub &&
570 ## create new untracked file.
571 echo "yyyy" >>another_file_in_sub
572 ) &&
574 HMOD=$(git hash-object -t blob -- .gitmodules) &&
575 HSUP=$(git rev-parse HEAD) &&
576 HSUB=$HSUP &&
578 cat >expect <<-EOF &&
579 # branch.oid $HSUP
580 # branch.head initial-branch
581 # branch.upstream origin/initial-branch
582 # branch.ab +0 -0
583 1 A. N... 000000 100644 100644 $ZERO_OID $HMOD .gitmodules
584 1 AM S.MU 000000 160000 160000 $ZERO_OID $HSUB sub1
587 git status --porcelain=v2 --branch --untracked-files=all >actual &&
588 test_cmp expect actual
592 test_expect_success 'commit within the submodule appears as new commit in super (AM SC..)' '
593 ( cd super_repo &&
594 ( cd sub1 &&
595 ## Make a new commit in the submodule.
596 git add file_in_sub &&
597 rm -f another_file_in_sub &&
598 git commit -m "new commit"
599 ) &&
601 HMOD=$(git hash-object -t blob -- .gitmodules) &&
602 HSUP=$(git rev-parse HEAD) &&
603 HSUB=$HSUP &&
605 cat >expect <<-EOF &&
606 # branch.oid $HSUP
607 # branch.head initial-branch
608 # branch.upstream origin/initial-branch
609 # branch.ab +0 -0
610 1 A. N... 000000 100644 100644 $ZERO_OID $HMOD .gitmodules
611 1 AM SC.. 000000 160000 160000 $ZERO_OID $HSUB sub1
614 git status --porcelain=v2 --branch --untracked-files=all >actual &&
615 test_cmp expect actual
619 test_expect_success 'stage submodule in super and commit' '
620 ( cd super_repo &&
621 ## Stage the new submodule commit in the super.
622 git add sub1 &&
623 ## Commit the super so that the sub no longer appears as added.
624 git commit -m "super commit" &&
626 HSUP=$(git rev-parse HEAD) &&
628 cat >expect <<-EOF &&
629 # branch.oid $HSUP
630 # branch.head initial-branch
631 # branch.upstream origin/initial-branch
632 # branch.ab +1 -0
635 git status --porcelain=v2 --branch --untracked-files=all >actual &&
636 test_cmp expect actual
640 test_expect_success 'make unstaged changes in existing submodule (.M S.M.)' '
641 ( cd super_repo &&
642 ( cd sub1 &&
643 echo "zzzz" >>file_in_sub
644 ) &&
646 HSUP=$(git rev-parse HEAD) &&
647 HSUB=$(cd sub1 && git rev-parse HEAD) &&
649 cat >expect <<-EOF &&
650 # branch.oid $HSUP
651 # branch.head initial-branch
652 # branch.upstream origin/initial-branch
653 # branch.ab +1 -0
654 1 .M S.M. 160000 160000 160000 $HSUB $HSUB sub1
657 git status --porcelain=v2 --branch --untracked-files=all >actual &&
658 test_cmp expect actual
662 test_done