]> git.ipfire.org Git - thirdparty/git.git/commitdiff
reftable: add a test that verifies that writing empty keys fails
authorHan-Wen Nienhuys <hanwen@google.com>
Mon, 21 Feb 2022 18:46:06 +0000 (18:46 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 23 Feb 2022 21:36:26 +0000 (13:36 -0800)
Empty keys can only be written as ref records with empty names. The
log record has a logical timestamp in the key, so the key is never
empty.

Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
reftable/readwrite_test.c

index 605ba0f9fd4f57d0e801d3fc69503ccdc32b63ed..fd5922e55f61a4dbc79e0571c41a281d7db2efb1 100644 (file)
@@ -667,6 +667,29 @@ static void test_write_empty_table(void)
        strbuf_release(&buf);
 }
 
+static void test_write_empty_key(void)
+{
+       struct reftable_write_options opts = { 0 };
+       struct strbuf buf = STRBUF_INIT;
+       struct reftable_writer *w =
+               reftable_new_writer(&strbuf_add_void, &buf, &opts);
+       struct reftable_ref_record ref = {
+               .refname = "",
+               .update_index = 1,
+               .value_type = REFTABLE_REF_DELETION,
+       };
+       int err;
+
+       reftable_writer_set_limits(w, 1, 1);
+       err = reftable_writer_add_ref(w, &ref);
+       EXPECT(err == REFTABLE_API_ERROR);
+
+       err = reftable_writer_close(w);
+       EXPECT(err == REFTABLE_EMPTY_TABLE_ERROR);
+       reftable_writer_free(w);
+       strbuf_release(&buf);
+}
+
 static void test_write_key_order(void)
 {
        struct reftable_write_options opts = { 0 };
@@ -746,6 +769,7 @@ int readwrite_test_main(int argc, const char *argv[])
        RUN_TEST(test_table_read_write_seek_index);
        RUN_TEST(test_table_refs_for_no_index);
        RUN_TEST(test_table_refs_for_obj_index);
+       RUN_TEST(test_write_empty_key);
        RUN_TEST(test_write_empty_table);
        RUN_TEST(test_log_overflow);
        return 0;