2008-05-02 15:35:34 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2008-09-03 10:59:33 +02:00
|
|
|
test_description='git status for submodule'
|
2008-05-02 15:35:34 +02:00
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
2010-01-16 18:42:24 +01:00
|
|
|
test_create_repo sub &&
|
|
|
|
(
|
|
|
|
cd sub &&
|
|
|
|
: >bar &&
|
|
|
|
git add bar &&
|
|
|
|
git commit -m " Add bar" &&
|
|
|
|
: >foo &&
|
|
|
|
git add foo &&
|
|
|
|
git commit -m " Add foo"
|
|
|
|
) &&
|
|
|
|
echo output > .gitignore &&
|
|
|
|
git add sub .gitignore &&
|
2008-05-02 15:35:34 +02:00
|
|
|
git commit -m "Add submodule sub"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'status clean' '
|
2010-01-16 18:42:24 +01:00
|
|
|
git status >output &&
|
|
|
|
grep "nothing to commit" output
|
2008-05-02 15:35:34 +02:00
|
|
|
'
|
2010-01-16 18:42:24 +01:00
|
|
|
|
2009-08-15 11:27:39 +02:00
|
|
|
test_expect_success 'commit --dry-run -a clean' '
|
2010-01-16 18:42:24 +01:00
|
|
|
test_must_fail git commit --dry-run -a >output &&
|
|
|
|
grep "nothing to commit" output
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'status with modified file in submodule' '
|
|
|
|
(cd sub && git reset --hard) &&
|
|
|
|
echo "changed" >sub/foo &&
|
|
|
|
git status >output &&
|
|
|
|
grep "modified: sub" output
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'status with modified file in submodule (porcelain)' '
|
|
|
|
(cd sub && git reset --hard) &&
|
|
|
|
echo "changed" >sub/foo &&
|
|
|
|
git status --porcelain >output &&
|
|
|
|
diff output - <<-\EOF
|
|
|
|
M sub
|
|
|
|
EOF
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'status with added file in submodule' '
|
|
|
|
(cd sub && git reset --hard && echo >foo && git add foo) &&
|
|
|
|
git status >output &&
|
|
|
|
grep "modified: sub" output
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'status with added file in submodule (porcelain)' '
|
|
|
|
(cd sub && git reset --hard && echo >foo && git add foo) &&
|
|
|
|
git status --porcelain >output &&
|
|
|
|
diff output - <<-\EOF
|
|
|
|
M sub
|
|
|
|
EOF
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'status with untracked file in submodule' '
|
|
|
|
(cd sub && git reset --hard) &&
|
|
|
|
echo "content" >sub/new-file &&
|
|
|
|
git status >output &&
|
|
|
|
grep "modified: sub" output
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'status with untracked file in submodule (porcelain)' '
|
|
|
|
git status --porcelain >output &&
|
|
|
|
diff output - <<-\EOF
|
|
|
|
M sub
|
|
|
|
EOF
|
2008-05-02 15:35:34 +02:00
|
|
|
'
|
2010-01-16 18:42:24 +01:00
|
|
|
|
2008-05-02 15:35:34 +02:00
|
|
|
test_expect_success 'rm submodule contents' '
|
|
|
|
rm -rf sub/* sub/.git
|
|
|
|
'
|
2010-01-16 18:42:24 +01:00
|
|
|
|
2008-05-02 15:35:34 +02:00
|
|
|
test_expect_success 'status clean (empty submodule dir)' '
|
2010-01-16 18:42:24 +01:00
|
|
|
git status >output &&
|
|
|
|
grep "nothing to commit" output
|
2008-05-02 15:35:34 +02:00
|
|
|
'
|
2010-01-16 18:42:24 +01:00
|
|
|
|
2008-05-04 02:24:28 +02:00
|
|
|
test_expect_success 'status -a clean (empty submodule dir)' '
|
2010-01-16 18:42:24 +01:00
|
|
|
test_must_fail git commit --dry-run -a >output &&
|
|
|
|
grep "nothing to commit" output
|
2008-05-02 15:35:34 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|