The second batch
[git.git] / t / t7413-submodule-is-active.sh
blob887d181b72ec05ab68f619de3948d667179dcb68
1 #!/bin/sh
3 test_description='Test with test-tool submodule is-active
5 This test verifies that `test-tool submodule is-active` correctly identifies
6 submodules which are "active" and interesting to the user.
8 This is a unit test of the submodule.c is_submodule_active() function,
9 which is also indirectly tested elsewhere.
12 TEST_PASSES_SANITIZE_LEAK=true
13 . ./test-lib.sh
15 test_expect_success 'setup' '
16 git config --global protocol.file.allow always &&
17 git init sub &&
18 test_commit -C sub initial &&
19 git init super &&
20 test_commit -C super initial &&
21 git -C super submodule add ../sub sub1 &&
22 git -C super submodule add ../sub sub2 &&
24 # Remove submodule.<name>.active entries in order to test in an
25 # environment where only URLs are present in the conifg
26 git -C super config --unset submodule.sub1.active &&
27 git -C super config --unset submodule.sub2.active &&
29 git -C super commit -a -m "add 2 submodules at sub{1,2}"
32 test_expect_success 'is-active works with urls' '
33 test-tool -C super submodule is-active sub1 &&
34 test-tool -C super submodule is-active sub2 &&
36 git -C super config --unset submodule.sub1.URL &&
37 test_must_fail test-tool -C super submodule is-active sub1 &&
38 git -C super config submodule.sub1.URL ../sub &&
39 test-tool -C super submodule is-active sub1
42 test_expect_success 'is-active works with submodule.<name>.active config' '
43 test_when_finished "git -C super config --unset submodule.sub1.active" &&
44 test_when_finished "git -C super config submodule.sub1.URL ../sub" &&
46 git -C super config --bool submodule.sub1.active "false" &&
47 test_must_fail test-tool -C super submodule is-active sub1 &&
49 git -C super config --bool submodule.sub1.active "true" &&
50 git -C super config --unset submodule.sub1.URL &&
51 test-tool -C super submodule is-active sub1
54 test_expect_success 'is-active handles submodule.active config missing a value' '
55 cp super/.git/config super/.git/config.orig &&
56 test_when_finished mv super/.git/config.orig super/.git/config &&
58 cat >>super/.git/config <<-\EOF &&
59 [submodule]
60 active
61 EOF
63 cat >expect <<-\EOF &&
64 error: missing value for '\''submodule.active'\''
65 EOF
66 test-tool -C super submodule is-active sub1 2>actual &&
67 test_cmp expect actual
70 test_expect_success 'is-active works with basic submodule.active config' '
71 test_when_finished "git -C super config submodule.sub1.URL ../sub" &&
72 test_when_finished "git -C super config --unset-all submodule.active" &&
74 git -C super config --add submodule.active "." &&
75 git -C super config --unset submodule.sub1.URL &&
77 test-tool -C super submodule is-active sub1 &&
78 test-tool -C super submodule is-active sub2
81 test_expect_success 'is-active correctly works with paths that are not submodules' '
82 test_when_finished "git -C super config --unset-all submodule.active" &&
84 test_must_fail test-tool -C super submodule is-active not-a-submodule &&
86 git -C super config --add submodule.active "." &&
87 test_must_fail test-tool -C super submodule is-active not-a-submodule
90 test_expect_success 'is-active works with exclusions in submodule.active config' '
91 test_when_finished "git -C super config --unset-all submodule.active" &&
93 git -C super config --add submodule.active "." &&
94 git -C super config --add submodule.active ":(exclude)sub1" &&
96 test_must_fail test-tool -C super submodule is-active sub1 &&
97 test-tool -C super submodule is-active sub2
100 test_expect_success 'is-active with submodule.active and submodule.<name>.active' '
101 test_when_finished "git -C super config --unset-all submodule.active" &&
102 test_when_finished "git -C super config --unset submodule.sub1.active" &&
103 test_when_finished "git -C super config --unset submodule.sub2.active" &&
105 git -C super config --add submodule.active "sub1" &&
106 git -C super config --bool submodule.sub1.active "false" &&
107 git -C super config --bool submodule.sub2.active "true" &&
109 test_must_fail test-tool -C super submodule is-active sub1 &&
110 test-tool -C super submodule is-active sub2
113 test_expect_success 'is-active, submodule.active and submodule add' '
114 test_when_finished "rm -rf super2" &&
115 git init super2 &&
116 test_commit -C super2 initial &&
117 git -C super2 config --add submodule.active "sub*" &&
119 # submodule add should only add submodule.<name>.active
120 # to the config if not matched by the pathspec
121 git -C super2 submodule add ../sub sub1 &&
122 test_must_fail git -C super2 config --get submodule.sub1.active &&
124 git -C super2 submodule add ../sub mod &&
125 git -C super2 config --get submodule.mod.active
128 test_done