Imported Upstream version 2.14.6
[platform/upstream/git.git] / t / t7417-submodule-path-url.sh
1 #!/bin/sh
2
3 test_description='check handling of .gitmodule path with dash'
4 . ./test-lib.sh
5
6 test_expect_success 'create submodule with dash in path' '
7         git init upstream &&
8         git -C upstream commit --allow-empty -m base &&
9         git submodule add ./upstream sub &&
10         git mv sub ./-sub &&
11         git commit -m submodule
12 '
13
14 test_expect_success 'clone rejects unprotected dash' '
15         test_when_finished "rm -rf dst" &&
16         git clone --recurse-submodules . dst 2>err &&
17         test_i18ngrep ignoring err
18 '
19
20 test_expect_success MINGW 'submodule paths disallows trailing spaces' '
21         git init super &&
22         test_must_fail git -C super submodule add ../upstream "sub " &&
23
24         : add "sub", then rename "sub" to "sub ", the hard way &&
25         git -C super submodule add ../upstream sub &&
26         tree=$(git -C super write-tree) &&
27         git -C super ls-tree $tree >tree &&
28         sed "s/sub/sub /" <tree >tree.new &&
29         tree=$(git -C super mktree <tree.new) &&
30         commit=$(echo with space | git -C super commit-tree $tree) &&
31         git -C super update-ref refs/heads/master $commit &&
32
33         test_must_fail git clone --recurse-submodules super dst 2>err &&
34         test_i18ngrep "sub " err
35 '
36
37 test_done