-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
t: directly test parse_pathspec_file()
Previously, `parse_pathspec_file()` was tested indirectly by invoking git commands with properly crafted inputs. As demonstrated by the previous bugfix, testing complicated black boxes indirectly can lead to tests that silently test the wrong thing. Introduce direct tests for `parse_pathspec_file()`. Signed-off-by: Alexandr Miloslavskiy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
- Loading branch information
1 parent
568cabb
commit d0d0a35
Showing
5 changed files
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#include "test-tool.h" | ||
#include "parse-options.h" | ||
#include "pathspec.h" | ||
#include "gettext.h" | ||
|
||
int cmd__parse_pathspec_file(int argc, const char **argv) | ||
{ | ||
struct pathspec pathspec; | ||
const char *pathspec_from_file = 0; | ||
int pathspec_file_nul = 0, i; | ||
|
||
static const char *const usage[] = { | ||
"test-tool parse-pathspec-file --pathspec-from-file [--pathspec-file-nul]", | ||
NULL | ||
}; | ||
|
||
struct option options[] = { | ||
OPT_PATHSPEC_FROM_FILE(&pathspec_from_file), | ||
OPT_PATHSPEC_FILE_NUL(&pathspec_file_nul), | ||
OPT_END() | ||
}; | ||
|
||
parse_options(argc, argv, 0, options, usage, 0); | ||
|
||
parse_pathspec_file(&pathspec, 0, 0, 0, pathspec_from_file, | ||
pathspec_file_nul); | ||
|
||
for (i = 0; i < pathspec.nr; i++) | ||
printf("%s\n", pathspec.items[i].original); | ||
|
||
clear_pathspec(&pathspec); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
#!/bin/sh | ||
|
||
test_description='Test parse_pathspec_file()' | ||
|
||
. ./test-lib.sh | ||
|
||
test_expect_success 'one item from stdin' ' | ||
cat >expect <<-\EOF && | ||
fileA.t | ||
EOF | ||
echo fileA.t | | ||
test-tool parse-pathspec-file --pathspec-from-file=- >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success 'one item from file' ' | ||
cat >expect <<-\EOF && | ||
fileA.t | ||
EOF | ||
echo fileA.t >list && | ||
test-tool parse-pathspec-file --pathspec-from-file=list >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success 'NUL delimiters' ' | ||
cat >expect <<-\EOF && | ||
fileA.t | ||
fileB.t | ||
EOF | ||
printf "fileA.t\0fileB.t\0" | | ||
test-tool parse-pathspec-file --pathspec-from-file=- --pathspec-file-nul >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success 'LF delimiters' ' | ||
cat >expect <<-\EOF && | ||
fileA.t | ||
fileB.t | ||
EOF | ||
printf "fileA.t\nfileB.t\n" | | ||
test-tool parse-pathspec-file --pathspec-from-file=- >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success 'no trailing delimiter' ' | ||
cat >expect <<-\EOF && | ||
fileA.t | ||
fileB.t | ||
EOF | ||
printf "fileA.t\nfileB.t" | | ||
test-tool parse-pathspec-file --pathspec-from-file=- >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success 'CRLF delimiters' ' | ||
cat >expect <<-\EOF && | ||
fileA.t | ||
fileB.t | ||
EOF | ||
printf "fileA.t\r\nfileB.t\r\n" | | ||
test-tool parse-pathspec-file --pathspec-from-file=- >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success 'quotes' ' | ||
cat >expect <<-\EOF && | ||
fileA.t | ||
EOF | ||
cat >list <<-\EOF && | ||
"file\101.t" | ||
EOF | ||
test-tool parse-pathspec-file --pathspec-from-file=list >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success '--pathspec-file-nul takes quotes literally' ' | ||
# Note: there is an extra newline because --pathspec-file-nul takes | ||
# input \n literally, too | ||
cat >expect <<-\EOF && | ||
"file\101.t" | ||
EOF | ||
cat >list <<-\EOF && | ||
"file\101.t" | ||
EOF | ||
test-tool parse-pathspec-file --pathspec-from-file=list --pathspec-file-nul >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_done |