The `lib-oid.c`, `lib-oid.h`, and `lib-oid.o files` are no longer needed since their equivalent functions have been implemented in unit-test.c and unit-test.h. This removes redundant code and ensures all unit test-related functionality is consolidated in a single location. Drop references to lib-oid from our `Makefile`, and `meson.build` files to prevent build errors due to missing files. Mentored-by: Patrick Steinhardt <ps@xxxxxx> Signed-off-by: Seyi Kuforiji <kuforiji98@xxxxxxxxx> --- Makefile | 1 - t/meson.build | 1 - t/unit-tests/lib-oid.c | 52 ------------------------------------------ t/unit-tests/lib-oid.h | 25 -------------------- 4 files changed, 79 deletions(-) delete mode 100644 t/unit-tests/lib-oid.c delete mode 100644 t/unit-tests/lib-oid.h diff --git a/Makefile b/Makefile index feb01702c7..6afa6587ba 100644 --- a/Makefile +++ b/Makefile @@ -1381,7 +1381,6 @@ UNIT_TEST_PROGRAMS += t-trailer UNIT_TEST_PROGRAMS += t-urlmatch-normalization UNIT_TEST_PROGS = $(patsubst %,$(UNIT_TEST_BIN)/%$X,$(UNIT_TEST_PROGRAMS)) UNIT_TEST_OBJS += $(UNIT_TEST_DIR)/test-lib.o -UNIT_TEST_OBJS += $(UNIT_TEST_DIR)/lib-oid.o UNIT_TEST_OBJS += $(UNIT_TEST_DIR)/lib-reftable.o # xdiff and reftable libs may in turn depend on what is in libgit.a diff --git a/t/meson.build b/t/meson.build index 0b412a7c16..c1c4aa32aa 100644 --- a/t/meson.build +++ b/t/meson.build @@ -68,7 +68,6 @@ foreach unit_test_program : unit_test_programs unit_test = executable(unit_test_name, sources: [ 'unit-tests/test-lib.c', - 'unit-tests/lib-oid.c', 'unit-tests/lib-reftable.c', unit_test_program, ], diff --git a/t/unit-tests/lib-oid.c b/t/unit-tests/lib-oid.c deleted file mode 100644 index 8f0ccac532..0000000000 --- a/t/unit-tests/lib-oid.c +++ /dev/null @@ -1,52 +0,0 @@ -#include "test-lib.h" -#include "lib-oid.h" -#include "strbuf.h" -#include "hex.h" - -int init_hash_algo(void) -{ - static int algo = -1; - - if (algo < 0) { - const char *algo_name = getenv("GIT_TEST_DEFAULT_HASH"); - algo = algo_name ? hash_algo_by_name(algo_name) : GIT_HASH_SHA1; - - if (!check(algo != GIT_HASH_UNKNOWN)) - test_msg("BUG: invalid GIT_TEST_DEFAULT_HASH value ('%s')", - algo_name); - } - return algo; -} - -static int get_oid_arbitrary_hex_algop(const char *hex, struct object_id *oid, - const struct git_hash_algo *algop) -{ - int ret; - size_t sz = strlen(hex); - struct strbuf buf = STRBUF_INIT; - - if (!check(sz <= algop->hexsz)) { - test_msg("BUG: hex string (%s) bigger than maximum allowed (%lu)", - hex, (unsigned long)algop->hexsz); - return -1; - } - - strbuf_add(&buf, hex, sz); - strbuf_addchars(&buf, '0', algop->hexsz - sz); - - ret = get_oid_hex_algop(buf.buf, oid, algop); - if (!check_int(ret, ==, 0)) - test_msg("BUG: invalid hex input (%s) provided", hex); - - strbuf_release(&buf); - return ret; -} - -int get_oid_arbitrary_hex(const char *hex, struct object_id *oid) -{ - int hash_algo = init_hash_algo(); - - if (!check_int(hash_algo, !=, GIT_HASH_UNKNOWN)) - return -1; - return get_oid_arbitrary_hex_algop(hex, oid, &hash_algos[hash_algo]); -} diff --git a/t/unit-tests/lib-oid.h b/t/unit-tests/lib-oid.h deleted file mode 100644 index 4e77c04bd2..0000000000 --- a/t/unit-tests/lib-oid.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef LIB_OID_H -#define LIB_OID_H - -#include "hash.h" - -/* - * Convert arbitrary hex string to object_id. - * For example, passing "abc12" will generate - * "abc1200000000000000000000000000000000000" hex of length 40 for SHA-1 and - * create object_id with that. - * WARNING: passing a string of length more than the hexsz of respective hash - * algo is not allowed. The hash algo is decided based on GIT_TEST_DEFAULT_HASH - * environment variable. - */ -int get_oid_arbitrary_hex(const char *s, struct object_id *oid); -/* - * Returns one of GIT_HASH_{SHA1, SHA256, UNKNOWN} based on the value of - * GIT_TEST_DEFAULT_HASH environment variable. The fallback value in the - * absence of GIT_TEST_DEFAULT_HASH is GIT_HASH_SHA1. It also uses - * check(algo != GIT_HASH_UNKNOWN) before returning to verify if the - * GIT_TEST_DEFAULT_HASH's value is valid or not. - */ -int init_hash_algo(void); - -#endif /* LIB_OID_H */ -- 2.47.0.86.g15030f9556