 2b30d66c43
			
		
	
	2b30d66c43
	
	
	
		
			
			Mark unused parameters as UNUSED to squelch -Wunused warnings. * jk/mark-unused-parameters: t-hashmap: stop calling setup() for t_intern() test scalar: mark unused parameters in dummy function daemon: mark unused parameters in non-posix fallbacks setup: mark unused parameter in config callback test-mergesort: mark unused parameters in trivial callback t-hashmap: mark unused parameters in callback function reftable: mark unused parameters in virtual functions reftable: drop obsolete test function declarations reftable: ignore unused argc/argv in test functions unit-tests: ignore unused argc/argv t/helper: mark more unused argv/argc arguments oss-fuzz: mark unused argv/argc argument refs: mark unused parameters in do_for_each_reflog_helper() refs: mark unused parameters in ref_store fsck callbacks update-ref: mark more unused parameters in parser callbacks imap-send: mark unused parameter in ssl_socket_connect() fallback
		
			
				
	
	
		
			145 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
| Copyright 2020 Google LLC
 | |
| 
 | |
| Use of this source code is governed by a BSD-style
 | |
| license that can be found in the LICENSE file or at
 | |
| https://developers.google.com/open-source/licenses/bsd
 | |
| */
 | |
| 
 | |
| #include "test-lib.h"
 | |
| #include "reftable/basics.h"
 | |
| 
 | |
| struct integer_needle_lesseq_args {
 | |
| 	int needle;
 | |
| 	int *haystack;
 | |
| };
 | |
| 
 | |
| static int integer_needle_lesseq(size_t i, void *_args)
 | |
| {
 | |
| 	struct integer_needle_lesseq_args *args = _args;
 | |
| 	return args->needle <= args->haystack[i];
 | |
| }
 | |
| 
 | |
| int cmd_main(int argc UNUSED, const char *argv[] UNUSED)
 | |
| {
 | |
| 	if_test ("binary search with binsearch works") {
 | |
| 		int haystack[] = { 2, 4, 6, 8, 10 };
 | |
| 		struct {
 | |
| 			int needle;
 | |
| 			size_t expected_idx;
 | |
| 		} testcases[] = {
 | |
| 			{-9000, 0},
 | |
| 			{-1, 0},
 | |
| 			{0, 0},
 | |
| 			{2, 0},
 | |
| 			{3, 1},
 | |
| 			{4, 1},
 | |
| 			{7, 3},
 | |
| 			{9, 4},
 | |
| 			{10, 4},
 | |
| 			{11, 5},
 | |
| 			{9000, 5},
 | |
| 		};
 | |
| 
 | |
| 		for (size_t i = 0; i < ARRAY_SIZE(testcases); i++) {
 | |
| 			struct integer_needle_lesseq_args args = {
 | |
| 				.haystack = haystack,
 | |
| 				.needle = testcases[i].needle,
 | |
| 			};
 | |
| 			size_t idx;
 | |
| 
 | |
| 			idx = binsearch(ARRAY_SIZE(haystack),
 | |
| 					&integer_needle_lesseq, &args);
 | |
| 			check_int(idx, ==, testcases[i].expected_idx);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if_test ("names_length retuns size of a NULL-terminated string array") {
 | |
| 		const char *a[] = { "a", "b", NULL };
 | |
| 		check_int(names_length(a), ==, 2);
 | |
| 	}
 | |
| 
 | |
| 	if_test ("names_equal compares NULL-terminated string arrays") {
 | |
| 		const char *a[] = { "a", "b", "c", NULL };
 | |
| 		const char *b[] = { "a", "b", "d", NULL };
 | |
| 		const char *c[] = { "a", "b", NULL };
 | |
| 
 | |
| 		check(names_equal(a, a));
 | |
| 		check(!names_equal(a, b));
 | |
| 		check(!names_equal(a, c));
 | |
| 	}
 | |
| 
 | |
| 	if_test ("parse_names works for basic input") {
 | |
| 		char in1[] = "line\n";
 | |
| 		char in2[] = "a\nb\nc";
 | |
| 		char **out = NULL;
 | |
| 		parse_names(in1, strlen(in1), &out);
 | |
| 		check_str(out[0], "line");
 | |
| 		check(!out[1]);
 | |
| 		free_names(out);
 | |
| 
 | |
| 		parse_names(in2, strlen(in2), &out);
 | |
| 		check_str(out[0], "a");
 | |
| 		check_str(out[1], "b");
 | |
| 		check_str(out[2], "c");
 | |
| 		check(!out[3]);
 | |
| 		free_names(out);
 | |
| 	}
 | |
| 
 | |
| 	if_test ("parse_names drops empty string") {
 | |
| 		char in[] = "a\n\nb\n";
 | |
| 		char **out = NULL;
 | |
| 		parse_names(in, strlen(in), &out);
 | |
| 		check_str(out[0], "a");
 | |
| 		/* simply '\n' should be dropped as empty string */
 | |
| 		check_str(out[1], "b");
 | |
| 		check(!out[2]);
 | |
| 		free_names(out);
 | |
| 	}
 | |
| 
 | |
| 	if_test ("common_prefix_size works") {
 | |
| 		struct strbuf a = STRBUF_INIT;
 | |
| 		struct strbuf b = STRBUF_INIT;
 | |
| 		struct {
 | |
| 			const char *a, *b;
 | |
| 			int want;
 | |
| 		} cases[] = {
 | |
| 			{"abcdef", "abc", 3},
 | |
| 			{ "abc", "ab", 2 },
 | |
| 			{ "", "abc", 0 },
 | |
| 			{ "abc", "abd", 2 },
 | |
| 			{ "abc", "pqr", 0 },
 | |
| 		};
 | |
| 
 | |
| 		for (size_t i = 0; i < ARRAY_SIZE(cases); i++) {
 | |
| 			strbuf_addstr(&a, cases[i].a);
 | |
| 			strbuf_addstr(&b, cases[i].b);
 | |
| 			check_int(common_prefix_size(&a, &b), ==, cases[i].want);
 | |
| 			strbuf_reset(&a);
 | |
| 			strbuf_reset(&b);
 | |
| 		}
 | |
| 		strbuf_release(&a);
 | |
| 		strbuf_release(&b);
 | |
| 	}
 | |
| 
 | |
| 	if_test ("put_be24 and get_be24 work") {
 | |
| 		uint32_t in = 0x112233;
 | |
| 		uint8_t dest[3];
 | |
| 		uint32_t out;
 | |
| 		put_be24(dest, in);
 | |
| 		out = get_be24(dest);
 | |
| 		check_int(in, ==, out);
 | |
| 	}
 | |
| 
 | |
| 	if_test ("put_be16 and get_be16 work") {
 | |
| 		uint32_t in = 0xfef1;
 | |
| 		uint8_t dest[3];
 | |
| 		uint32_t out;
 | |
| 		put_be16(dest, in);
 | |
| 		out = get_be16(dest);
 | |
| 		check_int(in, ==, out);
 | |
| 	}
 | |
| 
 | |
| 	return test_done();
 | |
| }
 |