]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3704-add-pathspec-file.sh
t1506: rev-parse A..B and A...B
[thirdparty/git.git] / t / t3704-add-pathspec-file.sh
CommitLineData
bebb5d6d
AM
1#!/bin/sh
2
3test_description='add --pathspec-from-file'
4
5. ./test-lib.sh
6
7test_tick
8
9test_expect_success setup '
10 test_commit file0 &&
11 echo A >fileA.t &&
12 echo B >fileB.t &&
13 echo C >fileC.t &&
14 echo D >fileD.t
15'
16
17restore_checkpoint () {
18 git reset
19}
20
21verify_expect () {
22 git status --porcelain --untracked-files=no -- fileA.t fileB.t fileC.t fileD.t >actual &&
23 test_cmp expect actual
24}
25
26test_expect_success '--pathspec-from-file from stdin' '
27 restore_checkpoint &&
28
29 echo fileA.t | git add --pathspec-from-file=- &&
30
31 cat >expect <<-\EOF &&
32 A fileA.t
33 EOF
34 verify_expect
35'
36
37test_expect_success '--pathspec-from-file from file' '
38 restore_checkpoint &&
39
40 echo fileA.t >list &&
41 git add --pathspec-from-file=list &&
42
43 cat >expect <<-\EOF &&
44 A fileA.t
45 EOF
46 verify_expect
47'
48
49test_expect_success 'NUL delimiters' '
50 restore_checkpoint &&
51
52 printf "fileA.t\0fileB.t\0" | git add --pathspec-from-file=- --pathspec-file-nul &&
53
54 cat >expect <<-\EOF &&
55 A fileA.t
56 A fileB.t
57 EOF
58 verify_expect
59'
60
61test_expect_success 'LF delimiters' '
62 restore_checkpoint &&
63
64 printf "fileA.t\nfileB.t\n" | git add --pathspec-from-file=- &&
65
66 cat >expect <<-\EOF &&
67 A fileA.t
68 A fileB.t
69 EOF
70 verify_expect
71'
72
73test_expect_success 'no trailing delimiter' '
74 restore_checkpoint &&
75
76 printf "fileA.t\nfileB.t" | git add --pathspec-from-file=- &&
77
78 cat >expect <<-\EOF &&
79 A fileA.t
80 A fileB.t
81 EOF
82 verify_expect
83'
84
85test_expect_success 'CRLF delimiters' '
86 restore_checkpoint &&
87
88 printf "fileA.t\r\nfileB.t\r\n" | git add --pathspec-from-file=- &&
89
90 cat >expect <<-\EOF &&
91 A fileA.t
92 A fileB.t
93 EOF
94 verify_expect
95'
96
97test_expect_success 'quotes' '
98 restore_checkpoint &&
99
568cabb2
AM
100 cat >list <<-\EOF &&
101 "file\101.t"
102 EOF
103
104 git add --pathspec-from-file=list &&
bebb5d6d
AM
105
106 cat >expect <<-\EOF &&
107 A fileA.t
108 EOF
109 verify_expect
110'
111
112test_expect_success 'quotes not compatible with --pathspec-file-nul' '
113 restore_checkpoint &&
114
568cabb2
AM
115 cat >list <<-\EOF &&
116 "file\101.t"
117 EOF
118
bebb5d6d
AM
119 test_must_fail git add --pathspec-from-file=list --pathspec-file-nul
120'
121
122test_expect_success 'only touches what was listed' '
123 restore_checkpoint &&
124
125 printf "fileB.t\nfileC.t\n" | git add --pathspec-from-file=- &&
126
127 cat >expect <<-\EOF &&
128 A fileB.t
129 A fileC.t
130 EOF
131 verify_expect
132'
133
f94f7bd0
AM
134test_expect_success 'error conditions' '
135 restore_checkpoint &&
136 echo fileA.t >list &&
137 >empty_list &&
138
139 test_must_fail git add --pathspec-from-file=list --interactive 2>err &&
140 test_i18ngrep -e "--pathspec-from-file is incompatible with --interactive/--patch" err &&
141
142 test_must_fail git add --pathspec-from-file=list --patch 2>err &&
143 test_i18ngrep -e "--pathspec-from-file is incompatible with --interactive/--patch" err &&
144
145 test_must_fail git add --pathspec-from-file=list --edit 2>err &&
146 test_i18ngrep -e "--pathspec-from-file is incompatible with --edit" err &&
147
148 test_must_fail git add --pathspec-from-file=list -- fileA.t 2>err &&
149 test_i18ngrep -e "--pathspec-from-file is incompatible with pathspec arguments" err &&
150
151 test_must_fail git add --pathspec-file-nul 2>err &&
152 test_i18ngrep -e "--pathspec-file-nul requires --pathspec-from-file" err &&
153
154 # This case succeeds, but still prints to stderr
155 git add --pathspec-from-file=empty_list 2>err &&
156 test_i18ngrep -e "Nothing specified, nothing added." err
157'
158
bebb5d6d 159test_done