From: phillip.wood123@gmail.com
To: Seyi Chamber <kuforiji98@gmail.com>, phillip.wood@dunelm.org.uk
Cc: git@vger.kernel.org, ps@pks.im
Subject: Re: [PATCH 2/5] t/unit-tests: convert oid-array test to use clar
Date: Mon, 24 Feb 2025 10:12:24 +0000 [thread overview]
Message-ID: <1c34ccb8-fb6c-4101-a00f-29fc2fb89934@gmail.com> (raw)
In-Reply-To: <CAGedMtfgYzEBFe7_jghhJRHt5MXAesc+GfJXDDgP=BLg8LeRyg@mail.gmail.com>
Hi Seyi
On 24/02/2025 09:11, Seyi Chamber wrote:
> On Thu, 20 Feb 2025 at 15:38, Phillip Wood <phillip.wood123@gmail.com> wrote:
>>
>> Hi Seyi
>>
>> On 20/02/2025 08:29, Seyi Kuforiji wrote:
>>> Adapt oid-array test script to clar framework by using clar assertions
>>> where necessary. Remove descriptions from macros to reduce
>>> redundancy, and move test input arrays to global scope for reuse across
>>> multiple test functions. Introduce `test_oid_array__initialize()` to
>>> explicitly initialize the hash algorithm.
>>>
>>> These changes streamline the test suite, making individual tests
>>> self-contained and reducing redundant code.
>>
>> I think these conversion look correct but once again we're losing
>> valuable debugging information because we haven't added better
>> assertions to clear.
>>
>
> I understand your concern about losing debugging information, but it
> is more beneficial to prioritize clarity and simplicity in unit tests.
> Unit tests should be short and easy, and adding extra debugging
> messages increases complexity, making them harder to maintain and
> read. The assertion failures already indicate where an issue occurs,
> allowing whoever is debugging to inspect the test inputs directly if
> needed.
If the test failure is on a CI run for a platform that the person
debugging the failure does not have access to how are they going to do
that? This is not a hypothetical concern as our CI runs the test suite
on MacOs, Linux and Windows. Individual developers often only have
access to one or to of those platforms. My experience of debugging CI
test failures is that without decent diagnostic messages it is extremely
difficult to figure out what went wrong if one does not have access to
the platform where the test is failing.
> Assertion failures are rarely hit in real-world scenarios, and when
> they do occur, one can manually print values or use a debugger to
> investigate. This makes the additional debugging messages unnecessary
> in most cases.
This seems to be arguing that because we expect the tests to pass we
don't need to worry about how difficult it is to debug them when they
fail. I do not agree with that line of argument.
> The lack of explicit debugging output is not a
> significant issue in practice. Furthermore, there are plans to
> collaborate with Clar upstream to equip common assertions with the
> ability to print custom messages in a formatted string where an error
> occurs. This would allow our test to be simple and easy to read and
> also maintain some of our custom debug messages.
Have you got any more details about this please? We already have
cl_failf() in our codebase.
Best Wishes
Phillip
>
>
>>> oid_array_for_each_unique(&input, add_to_oid_array, &actual);
>>> - if (!check_uint(actual.nr, ==, expect.nr))
>>> - return;
>>> -
>>> - for (i = 0; i < actual.nr; i++) {
>>> - if (!check(oideq(&actual.oid[i], &expect.oid[i])))
>>> - test_msg("expected: %s\n got: %s\n index: %" PRIuMAX,
>>> - oid_to_hex(&expect.oid[i]), oid_to_hex(&actual.oid[i]),
>>> - (uintmax_t)i);
>>> - }
>>> + cl_assert_equal_i(actual.nr, expect.nr);
>>> +
>>> + for (i = 0; i < actual.nr; i++)
>>> + cl_assert(oideq(&actual.oid[i], &expect.oid[i]));
>>
>> If this fails the poor person debugging it will have no idea why as
>> there is now no indication of which two oids were being compared.
>>
>>> - if (!check_int(ret, <=, upper_bound) ||
>>> - !check_int(ret, >=, lower_bound))
>>> - test_msg("oid query for lookup: %s", oid_to_hex(&oid_query));
>>> + cl_assert(ret <= upper_bound);
>>> + cl_assert(ret >= lower_bound);
>>
>> This is another case where we could do with better assertions in clar
>>
>>> -static void setup(void)
>>> +void test_oid_array__initialize(void)
>>> {
>>> /* The hash algo is used by oid_array_lookup() internally */
>>> int algo = init_hash_algo();
>>> - if (check_int(algo, !=, GIT_HASH_UNKNOWN))
>>> - repo_set_hash_algo(the_repository, algo);
>>> + cl_assert(algo != GIT_HASH_UNKNOWN);
>>
>> init_has_algo() in unit-test.c already does this.
>>
>
> Thanks for spotting this! Will fix this in an updated patch.
>> Best Wishes
>>
>> Phillip
>>
>>
>>> + repo_set_hash_algo(the_repository, algo);
>>> }
>>>
>>> -int cmd_main(int argc UNUSED, const char **argv UNUSED)
>>> +static const char *arr_input[] = { "88", "44", "aa", "55" };
>>> +static const char *arr_input_dup[] = { "88", "44", "aa", "55",
>>> + "88", "44", "aa", "55",
>>> + "88", "44", "aa", "55" };
>>> +static const char *res_sorted[] = { "44", "55", "88", "aa" };
>>> +
>>> +void test_oid_array__enumerate_unique(void)
>>> {
>>> - const char *arr_input[] = { "88", "44", "aa", "55" };
>>> - const char *arr_input_dup[] = { "88", "44", "aa", "55",
>>> - "88", "44", "aa", "55",
>>> - "88", "44", "aa", "55" };
>>> - const char *res_sorted[] = { "44", "55", "88", "aa" };
>>> - const char *nearly_55;
>>> + TEST_ENUMERATION(arr_input, res_sorted);
>>> +}
>>> +
>>> +void test_oid_array__enumerate_duplicate(void)
>>> +{
>>> + TEST_ENUMERATION(arr_input_dup, res_sorted);
>>> +}
>>> +
>>> +void test_oid_array__lookup(void)
>>> +{
>>> + TEST_LOOKUP(arr_input, "55", 1, 1);
>>> +}
>>>
>>> - if (!TEST(setup(), "setup"))
>>> - test_skip_all("hash algo initialization failed");
>>> +void test_oid_array__lookup_non_existent(void)
>>> +{
>>> + TEST_LOOKUP(arr_input, "33", INT_MIN, -1);
>>> +}
>>> +
>>> +void test_oid_array__lookup_duplicates(void)
>>> +{
>>> + TEST_LOOKUP(arr_input_dup, "55", 3, 5);
>>> +}
>>>
>>> - TEST_ENUMERATION(arr_input, res_sorted, "ordered enumeration");
>>> - TEST_ENUMERATION(arr_input_dup, res_sorted,
>>> - "ordered enumeration with duplicate suppression");
>>> +void test_oid_array__lookup_non_existent_dup(void)
>>> +{
>>> + TEST_LOOKUP(arr_input_dup, "66", INT_MIN, -1);
>>> +}
>>>
>>> - TEST_LOOKUP(arr_input, "55", 1, 1, "lookup");
>>> - TEST_LOOKUP(arr_input, "33", INT_MIN, -1, "lookup non-existent entry");
>>> - TEST_LOOKUP(arr_input_dup, "55", 3, 5, "lookup with duplicates");
>>> - TEST_LOOKUP(arr_input_dup, "66", INT_MIN, -1,
>>> - "lookup non-existent entry with duplicates");
>>> +void test_oid_array__lookup_almost_dup(void)
>>> +{
>>> + const char *nearly_55;
>>>
>>> nearly_55 = init_hash_algo() == GIT_HASH_SHA1 ?
>>> "5500000000000000000000000000000000000001" :
>>> "5500000000000000000000000000000000000000000000000000000000000001";
>>> - TEST_LOOKUP(((const char *[]){ "55", nearly_55 }), "55", 0, 0,
>>> - "lookup with almost duplicate values");
>>> - TEST_LOOKUP(((const char *[]){ "55", "55" }), "55", 0, 1,
>>> - "lookup with single duplicate value");
>>>
>>> - return test_done();
>>> + TEST_LOOKUP(((const char *[]){ "55", nearly_55 }), "55", 0, 0);
>>> +}
>>> +
>>> +void test_oid_array__lookup_single_dup(void)
>>> +{
>>> + TEST_LOOKUP(((const char *[]){ "55", "55" }), "55", 0, 1);
>>> }
>>
>
> Thanks
> Seyi
next prev parent reply other threads:[~2025-02-24 10:12 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-20 8:29 [PATCH 0/5] t/unit-tests: convert unit-tests to use clar Seyi Kuforiji
2025-02-20 8:29 ` [PATCH 1/5] t/unit-tests: implement oid helper functions in unit-tests.{c,h} Seyi Kuforiji
2025-02-20 14:38 ` Phillip Wood
2025-02-21 7:59 ` Patrick Steinhardt
2025-02-21 7:59 ` Patrick Steinhardt
2025-02-21 14:50 ` phillip.wood123
2025-02-20 8:29 ` [PATCH 2/5] t/unit-tests: convert oid-array test to use clar Seyi Kuforiji
2025-02-20 14:38 ` Phillip Wood
2025-02-24 9:11 ` Seyi Chamber
2025-02-24 10:12 ` phillip.wood123 [this message]
2025-02-20 8:29 ` [PATCH 3/5] t/unit-tests: convert oidmap " Seyi Kuforiji
2025-02-21 10:04 ` phillip.wood123
2025-02-24 10:56 ` Seyi Chamber
2025-02-20 8:29 ` [PATCH 4/5] t/unit-tests: convert oidtree " Seyi Kuforiji
2025-02-21 14:48 ` phillip.wood123
2025-02-20 8:29 ` [PATCH 5/5] t/unit-tests: remove lib-oid.{c,h,o} Seyi Kuforiji
2025-02-21 14:52 ` [PATCH 0/5] t/unit-tests: convert unit-tests to use clar phillip.wood123
2025-02-24 15:27 ` [PATCH v2 0/4] " Seyi Kuforiji
2025-02-24 15:27 ` [PATCH v2 1/4] t/unit-tests: implement clar specific oid helper functions Seyi Kuforiji
2025-02-24 17:55 ` Junio C Hamano
2025-02-25 7:14 ` Seyi Chamber
2025-02-25 7:56 ` Patrick Steinhardt
2025-02-24 15:27 ` [PATCH v2 2/4] t/unit-tests: convert oid-array test to use clar test framework Seyi Kuforiji
2025-02-24 15:27 ` [PATCH v2 3/4] t/unit-tests: convert oidmap " Seyi Kuforiji
2025-02-24 15:27 ` [PATCH v2 4/4] t/unit-tests: convert oidtree " Seyi Kuforiji
2025-02-25 10:10 ` [PATCH v3 0/4] t/unit-tests: convert unit-tests to use clar Seyi Kuforiji
2025-02-25 10:10 ` [PATCH v3 1/4] t/unit-tests: implement clar specific oid helper functions Seyi Kuforiji
2025-02-25 10:10 ` [PATCH v3 2/4] t/unit-tests: convert oid-array test to use clar test framework Seyi Kuforiji
2025-02-25 10:10 ` [PATCH v3 3/4] t/unit-tests: convert oidmap " Seyi Kuforiji
2025-02-25 10:10 ` [PATCH v3 4/4] t/unit-tests: convert oidtree " Seyi Kuforiji
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=1c34ccb8-fb6c-4101-a00f-29fc2fb89934@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=git@vger.kernel.org \
--cc=kuforiji98@gmail.com \
--cc=phillip.wood@dunelm.org.uk \
--cc=ps@pks.im \
/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 NNTP newsgroup(s).