]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7401-submodule-summary.sh
i18n: avoid parenthesized string as array initializer
[thirdparty/git.git] / t / t7401-submodule-summary.sh
CommitLineData
2da2ddc6
PY
1#!/bin/sh
2#
3# Copyright (c) 2008 Ping Yin
4#
5
6test_description='Summary support for submodules
7
47a528ad 8This test tries to verify the sanity of summary subcommand of git submodule.
2da2ddc6
PY
9'
10
11. ./test-lib.sh
12
13add_file () {
14 sm=$1
15 shift
16 owd=$(pwd)
17 cd "$sm"
18 for name; do
19 echo "$name" > "$name" &&
20 git add "$name" &&
21 test_tick &&
22 git commit -m "Add $name"
23 done >/dev/null
24 git rev-parse --verify HEAD | cut -c1-7
25 cd "$owd"
26}
27commit_file () {
28 test_tick &&
29 git commit "$@" -m "Commit $*" >/dev/null
30}
31
32test_create_repo sm1 &&
02604e29 33add_file . foo >/dev/null
2da2ddc6
PY
34
35head1=$(add_file sm1 foo1 foo2)
36
37test_expect_success 'added submodule' "
38 git add sm1 &&
39 git submodule summary >actual &&
f8d186bb 40 cat >expected <<-EOF &&
2da2ddc6
PY
41* sm1 0000000...$head1 (2):
42 > Add foo2
43
44EOF
f8d186bb 45 test_cmp expected actual
2da2ddc6
PY
46"
47
48commit_file sm1 &&
49head2=$(add_file sm1 foo3)
50
51test_expect_success 'modified submodule(forward)' "
52 git submodule summary >actual &&
f8d186bb 53 cat >expected <<-EOF &&
2da2ddc6
PY
54* sm1 $head1...$head2 (1):
55 > Add foo3
56
57EOF
f8d186bb 58 test_cmp expected actual
2da2ddc6
PY
59"
60
1c244f6e
JL
61test_expect_success 'modified submodule(forward), --files' "
62 git submodule summary --files >actual &&
f8d186bb 63 cat >expected <<-EOF &&
1c244f6e
JL
64* sm1 $head1...$head2 (1):
65 > Add foo3
66
67EOF
f8d186bb 68 test_cmp expected actual
1c244f6e
JL
69"
70
2da2ddc6 71commit_file sm1 &&
18a82692
JN
72head3=$(
73 cd sm1 &&
74 git reset --hard HEAD~2 >/dev/null &&
75 git rev-parse --verify HEAD | cut -c1-7
fd4ec4f2 76)
2da2ddc6
PY
77
78test_expect_success 'modified submodule(backward)' "
79 git submodule summary >actual &&
f8d186bb 80 cat >expected <<-EOF &&
2da2ddc6
PY
81* sm1 $head2...$head3 (2):
82 < Add foo3
83 < Add foo2
84
85EOF
f8d186bb 86 test_cmp expected actual
2da2ddc6
PY
87"
88
89head4=$(add_file sm1 foo4 foo5) &&
90head4_full=$(GIT_DIR=sm1/.git git rev-parse --verify HEAD)
91test_expect_success 'modified submodule(backward and forward)' "
92 git submodule summary >actual &&
f8d186bb 93 cat >expected <<-EOF &&
2da2ddc6
PY
94* sm1 $head2...$head4 (4):
95 > Add foo5
96 > Add foo4
97 < Add foo3
98 < Add foo2
99
100EOF
f8d186bb 101 test_cmp expected actual
2da2ddc6
PY
102"
103
104test_expect_success '--summary-limit' "
105 git submodule summary -n 3 >actual &&
f8d186bb 106 cat >expected <<-EOF &&
2da2ddc6
PY
107* sm1 $head2...$head4 (4):
108 > Add foo5
109 > Add foo4
110 < Add foo3
111
112EOF
f8d186bb 113 test_cmp expected actual
2da2ddc6
PY
114"
115
116commit_file sm1 &&
117mv sm1 sm1-bak &&
118echo sm1 >sm1 &&
119head5=$(git hash-object sm1 | cut -c1-7) &&
120git add sm1 &&
121rm -f sm1 &&
122mv sm1-bak sm1
123
124test_expect_success 'typechanged submodule(submodule->blob), --cached' "
125 git submodule summary --cached >actual &&
f8d186bb 126 cat >expected <<-EOF &&
2da2ddc6
PY
127* sm1 $head4(submodule)->$head5(blob) (3):
128 < Add foo5
129
130EOF
f8d186bb 131 test_cmp actual expected
2da2ddc6
PY
132"
133
1c244f6e
JL
134test_expect_success 'typechanged submodule(submodule->blob), --files' "
135 git submodule summary --files >actual &&
f8d186bb 136 cat >expected <<-EOF &&
1c244f6e
JL
137* sm1 $head5(blob)->$head4(submodule) (3):
138 > Add foo5
139
140EOF
f8d186bb 141 test_cmp actual expected
1c244f6e
JL
142"
143
2da2ddc6
PY
144rm -rf sm1 &&
145git checkout-index sm1
146test_expect_success 'typechanged submodule(submodule->blob)' "
147 git submodule summary >actual &&
f8d186bb 148 cat >expected <<-EOF &&
2da2ddc6
PY
149* sm1 $head4(submodule)->$head5(blob):
150
151EOF
f8d186bb 152 test_cmp actual expected
2da2ddc6
PY
153"
154
155rm -f sm1 &&
156test_create_repo sm1 &&
157head6=$(add_file sm1 foo6 foo7)
158test_expect_success 'nonexistent commit' "
159 git submodule summary >actual &&
f8d186bb 160 cat >expected <<-EOF &&
2da2ddc6
PY
161* sm1 $head4...$head6:
162 Warn: sm1 doesn't contain commit $head4_full
163
164EOF
f8d186bb 165 test_cmp actual expected
2da2ddc6
PY
166"
167
168commit_file
169test_expect_success 'typechanged submodule(blob->submodule)' "
170 git submodule summary >actual &&
f8d186bb 171 cat >expected <<-EOF &&
2da2ddc6
PY
172* sm1 $head5(blob)->$head6(submodule) (2):
173 > Add foo7
174
175EOF
f8d186bb 176 test_cmp expected actual
2da2ddc6
PY
177"
178
179commit_file sm1 &&
180rm -rf sm1
181test_expect_success 'deleted submodule' "
182 git submodule summary >actual &&
f8d186bb 183 cat >expected <<-EOF &&
2da2ddc6
PY
184* sm1 $head6...0000000:
185
186EOF
f8d186bb 187 test_cmp expected actual
2da2ddc6
PY
188"
189
190test_create_repo sm2 &&
191head7=$(add_file sm2 foo8 foo9) &&
192git add sm2
193
194test_expect_success 'multiple submodules' "
195 git submodule summary >actual &&
f8d186bb 196 cat >expected <<-EOF &&
2da2ddc6
PY
197* sm1 $head6...0000000:
198
199* sm2 0000000...$head7 (2):
200 > Add foo9
201
202EOF
f8d186bb 203 test_cmp expected actual
2da2ddc6
PY
204"
205
206test_expect_success 'path filter' "
207 git submodule summary sm2 >actual &&
f8d186bb 208 cat >expected <<-EOF &&
2da2ddc6
PY
209* sm2 0000000...$head7 (2):
210 > Add foo9
211
212EOF
f8d186bb 213 test_cmp expected actual
2da2ddc6
PY
214"
215
216commit_file sm2
217test_expect_success 'given commit' "
218 git submodule summary HEAD^ >actual &&
f8d186bb 219 cat >expected <<-EOF &&
2da2ddc6
PY
220* sm1 $head6...0000000:
221
222* sm2 0000000...$head7 (2):
223 > Add foo9
224
225EOF
f8d186bb 226 test_cmp expected actual
2da2ddc6
PY
227"
228
d0f64dd4
PY
229test_expect_success '--for-status' "
230 git submodule summary --for-status HEAD^ >actual &&
231 test_cmp actual - <<EOF
f17a5d34 232# Submodule changes to be committed:
d0f64dd4
PY
233#
234# * sm1 $head6...0000000:
235#
236# * sm2 0000000...$head7 (2):
237# > Add foo9
238#
239EOF
240"
241
1c244f6e
JL
242test_expect_success 'fail when using --files together with --cached' "
243 test_must_fail git submodule summary --files --cached
244"
245
3deea89c
JH
246test_expect_success 'should not fail in an empty repo' "
247 git init xyzzy &&
248 cd xyzzy &&
249 git submodule summary >output 2>&1 &&
250 test_cmp output /dev/null
251"
252
2da2ddc6 253test_done