Merge branch 'dd/test-stdout-count-lines'
Tiny test clean-up. * dd/test-stdout-count-lines: t6402: preserve git exit status code t6400: preserve git ls-files exit status code test-lib-functions: introduce test_stdout_line_count
This commit is contained in:
@ -82,13 +82,13 @@ test_expect_success 'modify/delete + directory/file conflict' '
|
|||||||
git checkout delete^0 &&
|
git checkout delete^0 &&
|
||||||
test_must_fail git merge modify &&
|
test_must_fail git merge modify &&
|
||||||
|
|
||||||
test 5 -eq $(git ls-files -s | wc -l) &&
|
test_stdout_line_count = 5 git ls-files -s &&
|
||||||
test 4 -eq $(git ls-files -u | wc -l) &&
|
test_stdout_line_count = 4 git ls-files -u &&
|
||||||
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
||||||
then
|
then
|
||||||
test 0 -eq $(git ls-files -o | wc -l)
|
test_stdout_line_count = 0 git ls-files -o
|
||||||
else
|
else
|
||||||
test 1 -eq $(git ls-files -o | wc -l)
|
test_stdout_line_count = 1 git ls-files -o
|
||||||
fi &&
|
fi &&
|
||||||
|
|
||||||
test_path_is_file letters/file &&
|
test_path_is_file letters/file &&
|
||||||
@ -103,13 +103,13 @@ test_expect_success 'modify/delete + directory/file conflict; other way' '
|
|||||||
|
|
||||||
test_must_fail git merge delete &&
|
test_must_fail git merge delete &&
|
||||||
|
|
||||||
test 5 -eq $(git ls-files -s | wc -l) &&
|
test_stdout_line_count = 5 git ls-files -s &&
|
||||||
test 4 -eq $(git ls-files -u | wc -l) &&
|
test_stdout_line_count = 4 git ls-files -u &&
|
||||||
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
||||||
then
|
then
|
||||||
test 0 -eq $(git ls-files -o | wc -l)
|
test_stdout_line_count = 0 git ls-files -o
|
||||||
else
|
else
|
||||||
test 1 -eq $(git ls-files -o | wc -l)
|
test_stdout_line_count = 1 git ls-files -o
|
||||||
fi &&
|
fi &&
|
||||||
|
|
||||||
test_path_is_file letters/file &&
|
test_path_is_file letters/file &&
|
||||||
|
@ -105,10 +105,8 @@ test_expect_success 'pull renaming branch into unrenaming one' \
|
|||||||
git show-branch &&
|
git show-branch &&
|
||||||
test_expect_code 1 git pull . white &&
|
test_expect_code 1 git pull . white &&
|
||||||
git ls-files -s &&
|
git ls-files -s &&
|
||||||
git ls-files -u B >b.stages &&
|
test_stdout_line_count = 3 git ls-files -u B &&
|
||||||
test_line_count = 3 b.stages &&
|
test_stdout_line_count = 1 git ls-files -s N &&
|
||||||
git ls-files -s N >n.stages &&
|
|
||||||
test_line_count = 1 n.stages &&
|
|
||||||
sed -ne "/^g/{
|
sed -ne "/^g/{
|
||||||
p
|
p
|
||||||
q
|
q
|
||||||
@ -122,10 +120,8 @@ test_expect_success 'pull renaming branch into another renaming one' \
|
|||||||
git reset --hard &&
|
git reset --hard &&
|
||||||
git checkout red &&
|
git checkout red &&
|
||||||
test_expect_code 1 git pull . white &&
|
test_expect_code 1 git pull . white &&
|
||||||
git ls-files -u B >b.stages &&
|
test_stdout_line_count = 3 git ls-files -u B &&
|
||||||
test_line_count = 3 b.stages &&
|
test_stdout_line_count = 1 git ls-files -s N &&
|
||||||
git ls-files -s N >n.stages &&
|
|
||||||
test_line_count = 1 n.stages &&
|
|
||||||
sed -ne "/^g/{
|
sed -ne "/^g/{
|
||||||
p
|
p
|
||||||
q
|
q
|
||||||
@ -138,10 +134,8 @@ test_expect_success 'pull unrenaming branch into renaming one' \
|
|||||||
git reset --hard &&
|
git reset --hard &&
|
||||||
git show-branch &&
|
git show-branch &&
|
||||||
test_expect_code 1 git pull . main &&
|
test_expect_code 1 git pull . main &&
|
||||||
git ls-files -u B >b.stages &&
|
test_stdout_line_count = 3 git ls-files -u B &&
|
||||||
test_line_count = 3 b.stages &&
|
test_stdout_line_count = 1 git ls-files -s N &&
|
||||||
git ls-files -s N >n.stages &&
|
|
||||||
test_line_count = 1 n.stages &&
|
|
||||||
sed -ne "/^g/{
|
sed -ne "/^g/{
|
||||||
p
|
p
|
||||||
q
|
q
|
||||||
@ -154,14 +148,10 @@ test_expect_success 'pull conflicting renames' \
|
|||||||
git reset --hard &&
|
git reset --hard &&
|
||||||
git show-branch &&
|
git show-branch &&
|
||||||
test_expect_code 1 git pull . blue &&
|
test_expect_code 1 git pull . blue &&
|
||||||
git ls-files -u A >a.stages &&
|
test_stdout_line_count = 1 git ls-files -u A &&
|
||||||
test_line_count = 1 a.stages &&
|
test_stdout_line_count = 1 git ls-files -u B &&
|
||||||
git ls-files -u B >b.stages &&
|
test_stdout_line_count = 1 git ls-files -u C &&
|
||||||
test_line_count = 1 b.stages &&
|
test_stdout_line_count = 1 git ls-files -s N &&
|
||||||
git ls-files -u C >c.stages &&
|
|
||||||
test_line_count = 1 c.stages &&
|
|
||||||
git ls-files -s N >n.stages &&
|
|
||||||
test_line_count = 1 n.stages &&
|
|
||||||
sed -ne "/^g/{
|
sed -ne "/^g/{
|
||||||
p
|
p
|
||||||
q
|
q
|
||||||
@ -330,8 +320,8 @@ test_expect_success 'Rename+D/F conflict; renamed file merges but dir in way' '
|
|||||||
test_i18ngrep "Adding as dir~HEAD instead" output
|
test_i18ngrep "Adding as dir~HEAD instead" output
|
||||||
fi &&
|
fi &&
|
||||||
|
|
||||||
test 3 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 3 git ls-files -u &&
|
||||||
test 2 -eq "$(git ls-files -u dir/file-in-the-way | wc -l)" &&
|
test_stdout_line_count = 2 git ls-files -u dir/file-in-the-way &&
|
||||||
|
|
||||||
test_must_fail git diff --quiet &&
|
test_must_fail git diff --quiet &&
|
||||||
test_must_fail git diff --cached --quiet &&
|
test_must_fail git diff --cached --quiet &&
|
||||||
@ -357,8 +347,8 @@ test_expect_success 'Same as previous, but merged other way' '
|
|||||||
test_i18ngrep "Adding as dir~renamed-file-has-no-conflicts instead" output
|
test_i18ngrep "Adding as dir~renamed-file-has-no-conflicts instead" output
|
||||||
fi &&
|
fi &&
|
||||||
|
|
||||||
test 3 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 3 git ls-files -u &&
|
||||||
test 2 -eq "$(git ls-files -u dir/file-in-the-way | wc -l)" &&
|
test_stdout_line_count = 2 git ls-files -u dir/file-in-the-way &&
|
||||||
|
|
||||||
test_must_fail git diff --quiet &&
|
test_must_fail git diff --quiet &&
|
||||||
test_must_fail git diff --cached --quiet &&
|
test_must_fail git diff --cached --quiet &&
|
||||||
@ -374,8 +364,8 @@ test_expect_success 'Rename+D/F conflict; renamed file cannot merge, dir not in
|
|||||||
git checkout -q renamed-file-has-conflicts^0 &&
|
git checkout -q renamed-file-has-conflicts^0 &&
|
||||||
test_must_fail git merge --strategy=recursive dir-not-in-way &&
|
test_must_fail git merge --strategy=recursive dir-not-in-way &&
|
||||||
|
|
||||||
test 3 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 3 git ls-files -u &&
|
||||||
test 3 -eq "$(git ls-files -u dir | wc -l)" &&
|
test_stdout_line_count = 3 git ls-files -u dir &&
|
||||||
|
|
||||||
test_must_fail git diff --quiet &&
|
test_must_fail git diff --quiet &&
|
||||||
test_must_fail git diff --cached --quiet &&
|
test_must_fail git diff --cached --quiet &&
|
||||||
@ -409,14 +399,16 @@ test_expect_success 'Rename+D/F conflict; renamed file cannot merge and dir in t
|
|||||||
git checkout -q renamed-file-has-conflicts^0 &&
|
git checkout -q renamed-file-has-conflicts^0 &&
|
||||||
test_must_fail git merge --strategy=recursive dir-in-way &&
|
test_must_fail git merge --strategy=recursive dir-in-way &&
|
||||||
|
|
||||||
test 5 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 5 git ls-files -u &&
|
||||||
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
||||||
then
|
then
|
||||||
test 3 -eq "$(git ls-files -u dir~HEAD | wc -l)"
|
test_stdout_line_count = 3 git ls-files -u dir~HEAD
|
||||||
else
|
else
|
||||||
test 3 -eq "$(git ls-files -u dir | grep -v file-in-the-way | wc -l)"
|
git ls-files -u dir >out &&
|
||||||
|
test 3 -eq $(grep -v file-in-the-way out | wc -l) &&
|
||||||
|
rm -f out
|
||||||
fi &&
|
fi &&
|
||||||
test 2 -eq "$(git ls-files -u dir/file-in-the-way | wc -l)" &&
|
test_stdout_line_count = 2 git ls-files -u dir/file-in-the-way &&
|
||||||
|
|
||||||
test_must_fail git diff --quiet &&
|
test_must_fail git diff --quiet &&
|
||||||
test_must_fail git diff --cached --quiet &&
|
test_must_fail git diff --cached --quiet &&
|
||||||
@ -432,14 +424,16 @@ test_expect_success 'Same as previous, but merged other way' '
|
|||||||
git checkout -q dir-in-way^0 &&
|
git checkout -q dir-in-way^0 &&
|
||||||
test_must_fail git merge --strategy=recursive renamed-file-has-conflicts &&
|
test_must_fail git merge --strategy=recursive renamed-file-has-conflicts &&
|
||||||
|
|
||||||
test 5 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 5 git ls-files -u &&
|
||||||
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
||||||
then
|
then
|
||||||
test 3 -eq "$(git ls-files -u dir~renamed-file-has-conflicts | wc -l)"
|
test_stdout_line_count = 3 git ls-files -u dir~renamed-file-has-conflicts
|
||||||
else
|
else
|
||||||
test 3 -eq "$(git ls-files -u dir | grep -v file-in-the-way | wc -l)"
|
git ls-files -u dir >out &&
|
||||||
|
test 3 -eq $(grep -v file-in-the-way out | wc -l) &&
|
||||||
|
rm -f out
|
||||||
fi &&
|
fi &&
|
||||||
test 2 -eq "$(git ls-files -u dir/file-in-the-way | wc -l)" &&
|
test_stdout_line_count = 2 git ls-files -u dir/file-in-the-way &&
|
||||||
|
|
||||||
test_must_fail git diff --quiet &&
|
test_must_fail git diff --quiet &&
|
||||||
test_must_fail git diff --cached --quiet &&
|
test_must_fail git diff --cached --quiet &&
|
||||||
@ -496,9 +490,9 @@ test_expect_success 'both rename source and destination involved in D/F conflict
|
|||||||
|
|
||||||
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
||||||
then
|
then
|
||||||
test 2 -eq "$(git ls-files -u | wc -l)"
|
test_stdout_line_count = 2 git ls-files -u
|
||||||
else
|
else
|
||||||
test 1 -eq "$(git ls-files -u | wc -l)"
|
test_stdout_line_count = 1 git ls-files -u
|
||||||
fi &&
|
fi &&
|
||||||
|
|
||||||
test_must_fail git diff --quiet &&
|
test_must_fail git diff --quiet &&
|
||||||
@ -540,9 +534,9 @@ then
|
|||||||
mkdir one &&
|
mkdir one &&
|
||||||
test_must_fail git merge --strategy=recursive rename-two &&
|
test_must_fail git merge --strategy=recursive rename-two &&
|
||||||
|
|
||||||
test 4 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 4 git ls-files -u &&
|
||||||
test 2 -eq "$(git ls-files -u one | wc -l)" &&
|
test_stdout_line_count = 2 git ls-files -u one &&
|
||||||
test 2 -eq "$(git ls-files -u two | wc -l)" &&
|
test_stdout_line_count = 2 git ls-files -u two &&
|
||||||
|
|
||||||
test_must_fail git diff --quiet &&
|
test_must_fail git diff --quiet &&
|
||||||
|
|
||||||
@ -559,9 +553,9 @@ else
|
|||||||
mkdir one &&
|
mkdir one &&
|
||||||
test_must_fail git merge --strategy=recursive rename-two &&
|
test_must_fail git merge --strategy=recursive rename-two &&
|
||||||
|
|
||||||
test 2 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 2 git ls-files -u &&
|
||||||
test 1 -eq "$(git ls-files -u one | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u one &&
|
||||||
test 1 -eq "$(git ls-files -u two | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u two &&
|
||||||
|
|
||||||
test_must_fail git diff --quiet &&
|
test_must_fail git diff --quiet &&
|
||||||
|
|
||||||
@ -582,13 +576,13 @@ test_expect_success 'pair rename to parent of other (D/F conflicts) w/ clean sta
|
|||||||
|
|
||||||
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
||||||
then
|
then
|
||||||
test 4 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 4 git ls-files -u &&
|
||||||
test 2 -eq "$(git ls-files -u one | wc -l)" &&
|
test_stdout_line_count = 2 git ls-files -u one &&
|
||||||
test 2 -eq "$(git ls-files -u two | wc -l)"
|
test_stdout_line_count = 2 git ls-files -u two
|
||||||
else
|
else
|
||||||
test 2 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 2 git ls-files -u &&
|
||||||
test 1 -eq "$(git ls-files -u one | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u one &&
|
||||||
test 1 -eq "$(git ls-files -u two | wc -l)"
|
test_stdout_line_count = 1 git ls-files -u two
|
||||||
fi &&
|
fi &&
|
||||||
|
|
||||||
test_must_fail git diff --quiet &&
|
test_must_fail git diff --quiet &&
|
||||||
@ -631,19 +625,19 @@ test_expect_success 'check handling of differently renamed file with D/F conflic
|
|||||||
|
|
||||||
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
||||||
then
|
then
|
||||||
test 5 -eq "$(git ls-files -s | wc -l)" &&
|
test_stdout_line_count = 5 git ls-files -s &&
|
||||||
test 3 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 3 git ls-files -u &&
|
||||||
test 1 -eq "$(git ls-files -u one~HEAD | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u one~HEAD &&
|
||||||
test 1 -eq "$(git ls-files -u two~second-rename | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u two~second-rename &&
|
||||||
test 1 -eq "$(git ls-files -u original | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u original &&
|
||||||
test 0 -eq "$(git ls-files -o | wc -l)"
|
test_stdout_line_count = 0 git ls-files -o
|
||||||
else
|
else
|
||||||
test 5 -eq "$(git ls-files -s | wc -l)" &&
|
test_stdout_line_count = 5 git ls-files -s &&
|
||||||
test 3 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 3 git ls-files -u &&
|
||||||
test 1 -eq "$(git ls-files -u one | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u one &&
|
||||||
test 1 -eq "$(git ls-files -u two | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u two &&
|
||||||
test 1 -eq "$(git ls-files -u original | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u original &&
|
||||||
test 2 -eq "$(git ls-files -o | wc -l)"
|
test_stdout_line_count = 2 git ls-files -o
|
||||||
fi &&
|
fi &&
|
||||||
|
|
||||||
test_path_is_file one/file &&
|
test_path_is_file one/file &&
|
||||||
@ -679,11 +673,11 @@ test_expect_success 'check handling of differently renamed file with D/F conflic
|
|||||||
git checkout -q first-rename-redo^0 &&
|
git checkout -q first-rename-redo^0 &&
|
||||||
test_must_fail git merge --strategy=recursive second-rename-redo &&
|
test_must_fail git merge --strategy=recursive second-rename-redo &&
|
||||||
|
|
||||||
test 3 -eq "$(git ls-files -u | wc -l)" &&
|
test_stdout_line_count = 3 git ls-files -u &&
|
||||||
test 1 -eq "$(git ls-files -u one | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u one &&
|
||||||
test 1 -eq "$(git ls-files -u two | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u two &&
|
||||||
test 1 -eq "$(git ls-files -u original | wc -l)" &&
|
test_stdout_line_count = 1 git ls-files -u original &&
|
||||||
test 0 -eq "$(git ls-files -o | wc -l)" &&
|
test_stdout_line_count = 0 git ls-files -o &&
|
||||||
|
|
||||||
test_path_is_file one &&
|
test_path_is_file one &&
|
||||||
test_path_is_file two &&
|
test_path_is_file two &&
|
||||||
@ -861,9 +855,11 @@ test_expect_success 'setup merge of rename + small change' '
|
|||||||
test_expect_success 'merge rename + small change' '
|
test_expect_success 'merge rename + small change' '
|
||||||
git merge rename_branch &&
|
git merge rename_branch &&
|
||||||
|
|
||||||
test 1 -eq $(git ls-files -s | wc -l) &&
|
test_stdout_line_count = 1 git ls-files -s &&
|
||||||
test 0 -eq $(git ls-files -o | wc -l) &&
|
test_stdout_line_count = 0 git ls-files -o &&
|
||||||
test $(git rev-parse HEAD:renamed_file) = $(git rev-parse HEAD~1:file)
|
newhash=$(git rev-parse HEAD:renamed_file) &&
|
||||||
|
oldhash=$(git rev-parse HEAD~1:file) &&
|
||||||
|
test $newhash = $oldhash
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'setup for use of extended merge markers' '
|
test_expect_success 'setup for use of extended merge markers' '
|
||||||
|
@ -845,6 +845,32 @@ test_line_count () {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# SYNOPSIS:
|
||||||
|
# test_stdout_line_count <bin-ops> <value> <cmd> [<args>...]
|
||||||
|
#
|
||||||
|
# test_stdout_line_count checks that the output of a command has the number
|
||||||
|
# of lines it ought to. For example:
|
||||||
|
#
|
||||||
|
# test_stdout_line_count = 3 git ls-files -u
|
||||||
|
# test_stdout_line_count -gt 10 ls
|
||||||
|
test_stdout_line_count () {
|
||||||
|
local ops val trashdir &&
|
||||||
|
if test "$#" -le 3
|
||||||
|
then
|
||||||
|
BUG "expect 3 or more arguments"
|
||||||
|
fi &&
|
||||||
|
ops="$1" &&
|
||||||
|
val="$2" &&
|
||||||
|
shift 2 &&
|
||||||
|
if ! trashdir="$(git rev-parse --git-dir)/trash"; then
|
||||||
|
BUG "expect to be run inside a worktree"
|
||||||
|
fi &&
|
||||||
|
mkdir -p "$trashdir" &&
|
||||||
|
"$@" >"$trashdir/output" &&
|
||||||
|
test_line_count "$ops" "$val" "$trashdir/output"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
test_file_size () {
|
test_file_size () {
|
||||||
test "$#" -ne 1 && BUG "1 param"
|
test "$#" -ne 1 && BUG "1 param"
|
||||||
test-tool path-utils file-size "$1"
|
test-tool path-utils file-size "$1"
|
||||||
|
Reference in New Issue
Block a user