@@ -741,6 +741,7 @@ TEST_BUILTINS_OBJS += test-submodule-nested-repo-config.o
TEST_BUILTINS_OBJS += test-subprocess.o
TEST_BUILTINS_OBJS += test-trace2.o
TEST_BUILTINS_OBJS += test-urlmatch-normalization.o
+TEST_BUILTINS_OBJS += test-userdiff.o
TEST_BUILTINS_OBJS += test-wildmatch.o
TEST_BUILTINS_OBJS += test-windows-named-pipe.o
TEST_BUILTINS_OBJS += test-write-cache.o
@@ -71,6 +71,7 @@ static struct test_cmd cmds[] = {
{ "submodule-nested-repo-config", cmd__submodule_nested_repo_config },
{ "subprocess", cmd__subprocess },
{ "trace2", cmd__trace2 },
+ { "userdiff", cmd__userdiff },
{ "urlmatch-normalization", cmd__urlmatch_normalization },
{ "xml-encode", cmd__xml_encode },
{ "wildmatch", cmd__wildmatch },
@@ -61,6 +61,7 @@ int cmd__submodule_config(int argc, const char **argv);
int cmd__submodule_nested_repo_config(int argc, const char **argv);
int cmd__subprocess(int argc, const char **argv);
int cmd__trace2(int argc, const char **argv);
+int cmd__userdiff(int argc, const char **argv);
int cmd__urlmatch_normalization(int argc, const char **argv);
int cmd__xml_encode(int argc, const char **argv);
int cmd__wildmatch(int argc, const char **argv);
new file mode 100644
@@ -0,0 +1,30 @@
+#include "test-tool.h"
+#include "cache.h"
+#include "userdiff.h"
+
+static int driver_cb(struct userdiff_driver *driver,
+ enum userdiff_driver_type type, void *priv)
+{
+ puts(driver->name);
+ return 0;
+}
+
+static int list_what(enum userdiff_driver_type type)
+{
+ return for_each_userdiff_driver(driver_cb, type, NULL);
+}
+
+int cmd__userdiff(int argc, const char **argv)
+{
+ if (argc != 2)
+ return 1;
+
+ if (!strcmp(argv[1], "list-drivers"))
+ return list_what(USERDIFF_DRIVER_TYPE_UNSPECIFIED);
+ else if (!strcmp(argv[1], "list-builtin-drivers"))
+ return list_what(USERDIFF_DRIVER_TYPE_BUILTIN);
+ else if (!strcmp(argv[1], "list-custom-drivers"))
+ return list_what(USERDIFF_DRIVER_TYPE_CUSTOM);
+ else
+ return error("unknown argument %s", argv[1]);
+}
@@ -8,6 +8,9 @@ test_description='Test custom diff function name patterns'
. ./test-lib.sh
test_expect_success 'setup' '
+ builtin_drivers=$(test-tool userdiff list-builtin-drivers) &&
+ test -n "$builtin_drivers" &&
+
# a non-trivial custom pattern
git config diff.custom1.funcname "!static
!String
@@ -26,30 +29,7 @@ test_expect_success 'setup' '
'
diffpatterns="
- ada
- bash
- bibtex
- cpp
- csharp
- css
- dts
- elixir
- fortran
- fountain
- golang
- html
- java
- markdown
- matlab
- objc
- pascal
- perl
- php
- python
- ruby
- rust
- tex
- default
+ $builtin_drivers
custom1
custom2
custom3
Change the userdiff test to list the builtin drivers via the test-tool, using the new for_each_userdiff_driver() API function. This gets rid of the need to modify this part of the test every time a new pattern is added, see 2ff6c34612 (userdiff: support Bash, 2020-10-22) and 09dad9256a (userdiff: support Markdown, 2020-05-02) for two recent examples. I only need the "list-builtin-drivers "argument here, but let's add "list-custom-drivers" and "list-drivers" too, just because it's easy. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> --- Makefile | 1 + t/helper/test-tool.c | 1 + t/helper/test-tool.h | 1 + t/helper/test-userdiff.c | 30 ++++++++++++++++++++++++++++++ t/t4018-diff-funcname.sh | 28 ++++------------------------ 5 files changed, 37 insertions(+), 24 deletions(-) create mode 100644 t/helper/test-userdiff.c