blob: bf7f15ee7973958970dfe0d1b34cea9d25e635a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#!/bin/sh
#
# Copyright (c) 2019 Denton Liu
#
test_description='Test submodules set-url subcommand
This test verifies that the set-url subcommand of git-submodule is working
as expected.
'
TEST_NO_CREATE_REPO=1
. ./test-lib.sh
test_expect_success 'setup' '
git config --global protocol.file.allow always
'
test_expect_success 'submodule config cache setup' '
mkdir submodule &&
(
cd submodule &&
git init &&
echo a >file &&
git add file &&
git commit -ma
) &&
mkdir namedsubmodule &&
(
cd namedsubmodule &&
git init &&
echo 1 >file &&
git add file &&
git commit -m1
) &&
mkdir super &&
(
cd super &&
git init &&
git submodule add ../submodule &&
git submodule add --name thename ../namedsubmodule thepath &&
git commit -m "add submodules"
)
'
test_expect_success 'test submodule set-url' '
# add commits and move the submodules (change the urls)
(
cd submodule &&
echo b >>file &&
git add file &&
git commit -mb
) &&
mv submodule newsubmodule &&
(
cd namedsubmodule &&
echo 2 >>file &&
git add file &&
git commit -m2
) &&
mv namedsubmodule newnamedsubmodule &&
git -C newsubmodule show >expect &&
git -C newnamedsubmodule show >>expect &&
(
cd super &&
test_must_fail git submodule update --remote &&
git submodule set-url submodule ../newsubmodule &&
test_cmp_config ../newsubmodule -f .gitmodules submodule.submodule.url &&
git submodule set-url thepath ../newnamedsubmodule &&
test_cmp_config ../newnamedsubmodule -f .gitmodules submodule.thename.url &&
test_cmp_config "" -f .gitmodules --default "" submodule.thepath.url &&
git submodule update --remote
) &&
git -C super/submodule show >actual &&
git -C super/thepath show >>actual &&
test_cmp expect actual
'
test_done
|