Git Mailing List Archive mirror
 help / color / mirror / Atom feed
From: Phillip Wood <phillip.wood123@gmail.com>
To: Linus Arver <linusa@google.com>, phillip.wood@dunelm.org.uk
Cc: git@vger.kernel.org, "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>,
	"Josh Steadmon" <steadmon@google.com>,
	"Calvin Wan" <calvinwan@google.com>
Subject: Re: [RFC PATCH 1/2] Add C TAP harness
Date: Mon, 26 Jun 2023 14:15:39 +0100	[thread overview]
Message-ID: <a6dff108-6946-71e7-99dc-ac3b70f7d7fa@gmail.com> (raw)
In-Reply-To: <owly8rcc3j1u.fsf@fine.c.googlers.com>

Hi Linus

On 21/06/2023 16:57, Linus Arver wrote:
> Hello,
> 
> Phillip Wood <phillip.wood123@gmail.com> writes:
>> I'd be interested to hear what you think of the alternative
>> approach in the patch below. The patch can be fetched with
>>
>> git fetch https://github.com/phillipwood/git unit-tests
> 
> I tried out your unit testing framework to see how it works in practice.
> It has most of what I'd expect in a test framework, e.g. showing file
> and line number in a test failure. Here are some changes I'd like to
> see:

Thanks for taking the time to try this out.

> - Make the 'TEST' macro accept the test description first. Or, keep the
>    'TEST' macro but also name a new macro 'IT' that accepts the
>    description first, to encourage usage that reads in a
>    behavior-driven-development (BDD) style, like 'IT("should accept foo",
>    t_bar(...))'. I find some test descriptions easier to write this way.

The test description is a printf style format string followed by 
arguments. This allows parameterized tests to include the parameter 
values in the description to aid debugging but it means the test 
function must be the first parameter. We could have IT("should accept 
%d", t(), i) but that would be a bit weird.

I hope that we will end up with some guidelines for writing unit tests 
that recommend testing the expect behavior and to avoid testing 
implementation details. I'm don't think we necessarily need an IT() 
macro to do that.

> - The 'check_int(result, ==, expected)' usage would be better without
>    the commas, like 'check_int(result == expected)'. Is this possible?

I don't particularly like the comma's either but in order to have decent 
diagnostic messages we need to pass 'result' and 'expected' as separate 
parameters so we can print them. We could have separate macros for 
different comparisons check_int_eq(a, b), check_int_lt(a, b), ... I 
don't have a strong preference either way.

> - It would be nice to report the test name for failing tests, so that
>    this output can be parsed to check for the failing test name.

I'm not quite sure what you mean here. The test name in printed in the 
"not ok" lines for failing tests as shown in the output from your tests 
below.

> There are other smaller changes I'd like (such as optional
> colorization), but I think these bits can be sorted out much later.

Sure

> My patch can be found at
> 
>     git fetch https://github.com/listx/git trailer-unit-tests
> 
> and also inline at the bottom of this email message.
> 
> Build and test with
> 
>      make unit-tests && t/unit-tests/t-trailer
> 
> Sample output:
> 
>      $ make -j47 unit-tests && t/unit-tests/t-trailer
>          CC t/unit-tests/t-trailer.o
>          LINK t/unit-tests/t-trailer
>      ok 1 - empty trailer_item and arg_item
>      ok 2 - identical
>      ok 3 - case should not matter
>      ok 4 - arg_item is longer than trailer_item
>      ok 5 - trailer_item is longer than arg_item
>      ok 6 - no similarity
>      ok 7 - accept WHERE_AFTER
>      ok 8 - accept WHERE_END
>      ok 9 - reject WHERE_END
>      ok 10 - token with trailing punctuation (colon)
>      ok 11 - token without trailing punctuation
>      ok 12 - token with spaces with trailing punctuation (colon)
>      ok 13 - token with spaces without trailing punctuation
>      ok 14 - token with leading non-separator punctuation
>      ok 15 - token with leading non-separator punctuation and space
>      ok 16 - one-letter token
>      ok 17 - token with punctuation in-between
>      ok 18 - token with multiple leading punctuation chars
>      # check "result == expected" failed at t/unit-tests/t-trailer.c:25
>      #    left: 1
>      #   right: 0
>      not ok 19 - empty trailer_item

This test fail because same_token() tests that the longer of its two 
arguments starts with the shorter argument, not that the two arguments 
are equal. As the shorter argument is empty in this case it returns 
true, not false.

>      # check "result == expected" failed at t/unit-tests/t-trailer.c:25
>      #    left: 1
>      #   right: 0
>      not ok 20 - empty arg_item
>      1..20
>
> Note that some of the tests I expect to fail are passing.

Which ones are those?

> These may be
> bugs but I am not sure because I don't fully understand the
> interpret-trailers machinery yet.

Thanks for sharing these tests, it is helpful to see examples of the 
test framework being used. In this case the tests are checking static 
functions from trailer.c. This mean that you have to export a number of 
functions and structs that are really implementation details. Where 
possible I think we want to concentrate our testing effort on the public 
API as (a) that is what matters to callers and (b) it avoids having to 
export internal functions and encourages people to test behavior rather 
than implementation details. There may be some cases where there are 
internal helpers that would benefit from tests. In those cases we can 
either hide the export behind a #define so it is only visible to the 
test code or just #include the file being tested in the test file (gross 
but works). An alternative to both of those is for the tests to live in 
the implementation files and have them conditionally compiled (a bit 
like rust).

Thanks again for your comments, Best Wishes

Phillip


> Linus
> 
> ---- >8 ----
>  From e5907b328d35eb37cfd1feb3a2431cb672beb4c8 Mon Sep 17 00:00:00 2001
> From: Linus Arver <linusa@google.com>
> Date: Thu, 15 Jun 2023 18:25:47 -0700
> Subject: [PATCH] add some unit tests for interpret-trailers
> 
> Signed-off-by: Linus Arver <linusa@google.com>
> ---
>   Makefile                 |  5 +++
>   t/unit-tests/t-trailer.c | 77 ++++++++++++++++++++++++++++++++++++++++
>   trailer.c                | 33 ++---------------
>   trailer.h                | 32 +++++++++++++++++
>   4 files changed, 117 insertions(+), 30 deletions(-)
>   create mode 100644 t/unit-tests/t-trailer.c
> 
> diff --git a/Makefile b/Makefile
> index f0ca5bae4b..9d68518168 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -2668,6 +2668,7 @@ scalar-objs: $(SCALAR_OBJS)
>   
>   UNIT_TEST_PROGRAMS += t-basic
>   UNIT_TEST_PROGRAMS += t-strbuf
> +UNIT_TEST_PROGRAMS += t-trailer
>   UNIT_TEST_PROGS = $(patsubst %,t/unit-tests/%$X,$(UNIT_TEST_PROGRAMS))
>   UNIT_TEST_OBJS = $(patsubst %,t/unit-tests/%.o,$(UNIT_TEST_PROGRAMS))
>   UNIT_TEST_OBJS += t/unit-tests/test-lib.o
> @@ -3848,5 +3849,9 @@ t/unit-tests/t-strbuf$X: t/unit-tests/t-strbuf.o t/unit-tests/test-lib.o $(GITLI
>   	$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) \
>   		 $(filter %.o,$^) $(filter %.a,$^) $(LIBS)
>   
> +t/unit-tests/t-trailer$X: t/unit-tests/t-trailer.o t/unit-tests/test-lib.o builtin/interpret-trailers.o $(GITLIBS) GIT-LDFLAGS
> +	$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) \
> +		 $(filter %.o,$^) $(filter %.a,$^) $(LIBS)
> +
>   .PHONY: unit-tests
>   unit-tests: $(UNIT_TEST_PROGS)
> diff --git a/t/unit-tests/t-trailer.c b/t/unit-tests/t-trailer.c
> new file mode 100644
> index 0000000000..150b5606fa
> --- /dev/null
> +++ b/t/unit-tests/t-trailer.c
> @@ -0,0 +1,77 @@
> +#include "test-lib.h"
> +#include "trailer.h"
> +
> +static void t_token_len_without_separator(const char *token, size_t expected)
> +{
> +	size_t result;
> +	result = token_len_without_separator(token, strlen(token));
> +	check_uint(result, ==, expected);
> +}
> +
> +static void t_after_or_end(enum trailer_where where, int expected)
> +{
> +	size_t result;
> +	result = after_or_end(where);
> +	check_int(result, ==, expected);
> +}
> +
> +
> +static void t_same_token(char *a, char *b, int expected)
> +{
> +    struct trailer_item trailer_item = { .token = a };
> +	struct arg_item arg_item = { .token = b };
> +	size_t result;
> +	result = same_token(&trailer_item, &arg_item);
> +	check_int(result, ==, expected);
> +}
> +
> +int cmd_main(int argc, const char **argv)
> +{
> +	TEST(t_same_token("", "", 1),
> +		 "empty trailer_item and arg_item");
> +	TEST(t_same_token("foo", "foo", 1),
> +		 "identical");
> +	TEST(t_same_token("foo", "FOO", 1),
> +		 "case should not matter");
> +	TEST(t_same_token("foo", "foobar", 1),
> +		 "arg_item is longer than trailer_item");
> +	TEST(t_same_token("foobar", "foo", 1),
> +		 "trailer_item is longer than arg_item");
> +	TEST(t_same_token("foo", "bar", 0),
> +		 "no similarity");
> +
> +	TEST(t_after_or_end(WHERE_AFTER, 1), "accept WHERE_AFTER");
> +	TEST(t_after_or_end(WHERE_END, 1), "accept WHERE_END");
> +	TEST(t_after_or_end(WHERE_DEFAULT, 0), "reject WHERE_END");
> +
> +	TEST(t_token_len_without_separator("Signed-off-by:", 13),
> +	     "token with trailing punctuation (colon)");
> +	TEST(t_token_len_without_separator("Signed-off-by", 13),
> +	     "token without trailing punctuation");
> +	TEST(t_token_len_without_separator("Foo bar:", 7),
> +	     "token with spaces with trailing punctuation (colon)");
> +	TEST(t_token_len_without_separator("Foo bar", 7),
> +	     "token with spaces without trailing punctuation");
> +	TEST(t_token_len_without_separator("-Foo bar:", 8),
> +	     "token with leading non-separator punctuation");
> +	TEST(t_token_len_without_separator("- Foo bar:", 9),
> +	     "token with leading non-separator punctuation and space");
> +	TEST(t_token_len_without_separator("F:", 1),
> +	     "one-letter token");
> +	TEST(t_token_len_without_separator("abc%de#f@", 8),
> +	     "token with punctuation in-between");
> +	TEST(t_token_len_without_separator(":;*%_.#f@", 8),
> +	     "token with multiple leading punctuation chars");
> +
> +	/*
> +	 * These tests fail unexpectedly. They are probably bugs, although it may be
> +	 * the case that these bugs never bubble up to the user because of other
> +	 * checks we do elsewhere up the stack.
> +	 */
> +	TEST(t_same_token("", "foo", 0),
> +		"empty trailer_item");
> +	TEST(t_same_token("foo", "", 0),
> +		"empty arg_item");
> +
> +	return test_done();
> +}
> diff --git a/trailer.c b/trailer.c
> index a2c3ed6f28..9f59d8d7a6 100644
> --- a/trailer.c
> +++ b/trailer.c
> @@ -13,35 +13,8 @@
>    * Copyright (c) 2013, 2014 Christian Couder <chriscool@tuxfamily.org>
>    */
>   
> -struct conf_info {
> -	char *name;
> -	char *key;
> -	char *command;
> -	char *cmd;
> -	enum trailer_where where;
> -	enum trailer_if_exists if_exists;
> -	enum trailer_if_missing if_missing;
> -};
> -
>   static struct conf_info default_conf_info;
>   
> -struct trailer_item {
> -	struct list_head list;
> -	/*
> -	 * If this is not a trailer line, the line is stored in value
> -	 * (excluding the terminating newline) and token is NULL.
> -	 */
> -	char *token;
> -	char *value;
> -};
> -
> -struct arg_item {
> -	struct list_head list;
> -	char *token;
> -	char *value;
> -	struct conf_info conf;
> -};
> -
>   static LIST_HEAD(conf_head);
>   
>   static char *separators = ":";
> @@ -62,7 +35,7 @@ static const char *git_generated_prefixes[] = {
>   		pos != (head); \
>   		pos = is_reverse ? pos->prev : pos->next)
>   
> -static int after_or_end(enum trailer_where where)
> +int after_or_end(enum trailer_where where)
>   {
>   	return (where == WHERE_AFTER) || (where == WHERE_END);
>   }
> @@ -73,14 +46,14 @@ static int after_or_end(enum trailer_where where)
>    * 13, stripping the trailing punctuation but retaining
>    * internal punctuation.
>    */
> -static size_t token_len_without_separator(const char *token, size_t len)
> +size_t token_len_without_separator(const char *token, size_t len)
>   {
>   	while (len > 0 && !isalnum(token[len - 1]))
>   		len--;
>   	return len;
>   }
>   
> -static int same_token(struct trailer_item *a, struct arg_item *b)
> +int same_token(struct trailer_item *a, struct arg_item *b)
>   {
>   	size_t a_len, b_len, min_len;
>   
> diff --git a/trailer.h b/trailer.h
> index 795d2fccfd..b2031eb305 100644
> --- a/trailer.h
> +++ b/trailer.h
> @@ -146,4 +146,36 @@ int trailer_iterator_advance(struct trailer_iterator *iter);
>    */
>   void trailer_iterator_release(struct trailer_iterator *iter);
>   
> +int after_or_end(enum trailer_where where);
> +size_t token_len_without_separator(const char *token, size_t len);
> +
> +struct conf_info {
> +	char *name;
> +	char *key;
> +	char *command;
> +	char *cmd;
> +	enum trailer_where where;
> +	enum trailer_if_exists if_exists;
> +	enum trailer_if_missing if_missing;
> +};
> +
> +struct trailer_item {
> +	struct list_head list;
> +	/*
> +	 * If this is not a trailer line, the line is stored in value
> +	 * (excluding the terminating newline) and token is NULL.
> +	 */
> +	char *token;
> +	char *value;
> +};
> +
> +struct arg_item {
> +	struct list_head list;
> +	char *token;
> +	char *value;
> +	struct conf_info conf;
> +};
> +
> +int same_token(struct trailer_item *a, struct arg_item *b);
> +
>   #endif /* TRAILER_H */

  reply	other threads:[~2023-06-26 13:15 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-27 17:50 [RFC PATCH 0/2] add an external testing library for unit tests Calvin Wan
2023-04-27 17:50 ` [RFC PATCH 1/2] Add C TAP harness Calvin Wan
2023-04-27 18:29   ` SZEDER Gábor
2023-04-27 18:38     ` Calvin Wan
2023-04-27 20:15   ` Phillip Wood
2023-04-28 16:31     ` Calvin Wan
2023-05-02 15:46       ` Felipe Contreras
2023-05-10 15:46       ` Phillip Wood
2023-05-11 23:16         ` Glen Choo
2023-05-18 10:04           ` Phillip Wood
2023-06-21 15:57         ` Linus Arver
2023-06-26 13:15           ` Phillip Wood [this message]
2023-06-28 21:17             ` Linus Arver
2023-06-29  5:52             ` Oswald Buddenhagen
2023-06-30  9:48               ` Phillip Wood
2023-05-02 15:54     ` Felipe Contreras
2023-05-02 16:39       ` Ævar Arnfjörð Bjarmason
2023-05-02 18:11         ` Felipe Contreras
2023-05-02 16:34     ` Ævar Arnfjörð Bjarmason
2023-05-10  8:18       ` Phillip Wood
2023-04-27 17:50 ` [RFC PATCH 2/2] unit test: add basic example Calvin Wan
2023-04-27 18:47   ` Junio C Hamano
2023-05-02 15:58     ` Felipe Contreras
2023-04-27 18:39 ` [RFC PATCH 0/2] add an external testing library for unit tests Junio C Hamano
2023-04-27 18:46   ` Calvin Wan
2023-04-27 21:35 ` brian m. carlson
2023-05-02  4:18 ` Felipe Contreras
2023-05-02 13:52 ` Ævar Arnfjörð Bjarmason
2023-05-02 15:28   ` Felipe Contreras

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a6dff108-6946-71e7-99dc-ac3b70f7d7fa@gmail.com \
    --to=phillip.wood123@gmail.com \
    --cc=avarab@gmail.com \
    --cc=calvinwan@google.com \
    --cc=git@vger.kernel.org \
    --cc=linusa@google.com \
    --cc=phillip.wood@dunelm.org.uk \
    --cc=steadmon@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).