3 test_description
='git status for submodule'
7 test_expect_success
'setup' '
8 test_create_repo sub &&
13 git commit -m " Add bar" &&
16 git commit -m " Add foo"
18 echo output > .gitignore &&
19 git add sub .gitignore &&
20 git commit -m "Add submodule sub"
23 test_expect_success
'status clean' '
25 grep "nothing to commit" output
28 test_expect_success
'commit --dry-run -a clean' '
29 test_must_fail git commit --dry-run -a >output &&
30 grep "nothing to commit" output
33 test_expect_success
'status with modified file in submodule' '
34 (cd sub && git reset --hard) &&
35 echo "changed" >sub/foo &&
37 grep "modified: sub (modified content)" output
40 test_expect_success
'status with modified file in submodule (porcelain)' '
41 (cd sub && git reset --hard) &&
42 echo "changed" >sub/foo &&
43 git status --porcelain >output &&
49 test_expect_success
'status with added file in submodule' '
50 (cd sub && git reset --hard && echo >foo && git add foo) &&
52 grep "modified: sub (modified content)" output
55 test_expect_success
'status with added file in submodule (porcelain)' '
56 (cd sub && git reset --hard && echo >foo && git add foo) &&
57 git status --porcelain >output &&
63 test_expect_success
'status with untracked file in submodule' '
64 (cd sub && git reset --hard) &&
65 echo "content" >sub/new-file &&
67 grep "modified: sub (untracked content)" output
70 test_expect_success
'status with untracked file in submodule (porcelain)' '
71 git status --porcelain >output &&
77 test_expect_success
'status with added and untracked file in submodule' '
78 (cd sub && git reset --hard && echo >foo && git add foo) &&
79 echo "content" >sub/new-file &&
81 grep "modified: sub (modified content, untracked content)" output
84 test_expect_success
'status with added and untracked file in submodule (porcelain)' '
85 (cd sub && git reset --hard && echo >foo && git add foo) &&
86 echo "content" >sub/new-file &&
87 git status --porcelain >output &&
93 test_expect_success
'status with modified file in modified submodule' '
94 (cd sub && git reset --hard) &&
96 (cd sub && echo "next change" >foo && git commit -m "next change" foo) &&
97 echo "changed" >sub/foo &&
99 grep "modified: sub (new commits, modified content)" output
102 test_expect_success
'status with modified file in modified submodule (porcelain)' '
103 (cd sub && git reset --hard) &&
104 echo "changed" >sub/foo &&
105 git status --porcelain >output &&
106 diff output - <<-\EOF
111 test_expect_success
'status with added file in modified submodule' '
112 (cd sub && git reset --hard && echo >foo && git add foo) &&
113 git status >output &&
114 grep "modified: sub (new commits, modified content)" output
117 test_expect_success
'status with added file in modified submodule (porcelain)' '
118 (cd sub && git reset --hard && echo >foo && git add foo) &&
119 git status --porcelain >output &&
120 diff output - <<-\EOF
125 test_expect_success
'status with untracked file in modified submodule' '
126 (cd sub && git reset --hard) &&
127 echo "content" >sub/new-file &&
128 git status >output &&
129 grep "modified: sub (new commits, untracked content)" output
132 test_expect_success
'status with untracked file in modified submodule (porcelain)' '
133 git status --porcelain >output &&
134 diff output - <<-\EOF
139 test_expect_success
'status with added and untracked file in modified submodule' '
140 (cd sub && git reset --hard && echo >foo && git add foo) &&
141 echo "content" >sub/new-file &&
142 git status >output &&
143 grep "modified: sub (new commits, modified content, untracked content)" output
146 test_expect_success
'status with added and untracked file in modified submodule (porcelain)' '
147 (cd sub && git reset --hard && echo >foo && git add foo) &&
148 echo "content" >sub/new-file &&
149 git status --porcelain >output &&
150 diff output - <<-\EOF
155 test_expect_success
'rm submodule contents' '
156 rm -rf sub/* sub/.git
159 test_expect_success
'status clean (empty submodule dir)' '
160 git status >output &&
161 grep "nothing to commit" output
164 test_expect_success
'status -a clean (empty submodule dir)' '
165 test_must_fail git commit --dry-run -a >output &&
166 grep "nothing to commit" output