summaryrefslogtreecommitdiff
path: root/test-sha1-array.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-10-14 10:49:56 -0700
committerJunio C Hamano <gitster@pobox.com>2014-10-14 10:49:56 -0700
commit40e2d8dbaf7acecc9c96ca2c99478bc7bfb3bc3c (patch)
treecf2542570c3af31351d7ae6708c1dfe78bd32e51 /test-sha1-array.c
parent11cb3130d551590ae2dbd582e809763bfc353a47 (diff)
parent0eb0fb889e2e7e063e7dd8cbee38af106aa195f6 (diff)
downloadgit-40e2d8dbaf7acecc9c96ca2c99478bc7bfb3bc3c.tar.gz
Merge branch 'rs/sha1-array-test'
* rs/sha1-array-test: sha1-lookup: handle duplicates in sha1_pos() sha1-array: add test-sha1-array and basic tests
Diffstat (limited to 'test-sha1-array.c')
-rw-r--r--test-sha1-array.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/test-sha1-array.c b/test-sha1-array.c
new file mode 100644
index 0000000000..ddc491eff9
--- /dev/null
+++ b/test-sha1-array.c
@@ -0,0 +1,34 @@
+#include "cache.h"
+#include "sha1-array.h"
+
+static void print_sha1(const unsigned char sha1[20], void *data)
+{
+ puts(sha1_to_hex(sha1));
+}
+
+int main(int argc, char **argv)
+{
+ struct sha1_array array = SHA1_ARRAY_INIT;
+ struct strbuf line = STRBUF_INIT;
+
+ while (strbuf_getline(&line, stdin, '\n') != EOF) {
+ const char *arg;
+ unsigned char sha1[20];
+
+ if (skip_prefix(line.buf, "append ", &arg)) {
+ if (get_sha1_hex(arg, sha1))
+ die("not a hexadecimal SHA1: %s", arg);
+ sha1_array_append(&array, sha1);
+ } else if (skip_prefix(line.buf, "lookup ", &arg)) {
+ if (get_sha1_hex(arg, sha1))
+ die("not a hexadecimal SHA1: %s", arg);
+ printf("%d\n", sha1_array_lookup(&array, sha1));
+ } else if (!strcmp(line.buf, "clear"))
+ sha1_array_clear(&array);
+ else if (!strcmp(line.buf, "for_each_unique"))
+ sha1_array_for_each_unique(&array, print_sha1, NULL);
+ else
+ die("unknown command: %s", line.buf);
+ }
+ return 0;
+}