aboutsummaryrefslogtreecommitdiff
path: root/test/type_2_encoders_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/type_2_encoders_test.c')
-rw-r--r--test/type_2_encoders_test.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/type_2_encoders_test.c b/test/type_2_encoders_test.c
deleted file mode 100644
index 563fbe1b1261..000000000000
--- a/test/type_2_encoders_test.c
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright (c) 2014-2020 Pavel Kalvoda <me@pavelkalvoda.com>
- *
- * libcbor is free software; you can redistribute it and/or modify
- * it under the terms of the MIT license. See LICENSE for details.
- */
-
-#include <setjmp.h>
-#include <stdarg.h>
-#include <stddef.h>
-
-#include <cmocka.h>
-
-#include "cbor.h"
-
-unsigned char buffer[512];
-
-static void test_embedded_bytestring_start(void **state) {
- assert_int_equal(1, cbor_encode_bytestring_start(1, buffer, 512));
- assert_memory_equal(buffer, ((unsigned char[]){0x41}), 1);
-}
-
-static void test_bytestring_start(void **state) {
- assert_int_equal(5, cbor_encode_bytestring_start(1000000, buffer, 512));
- assert_memory_equal(buffer, ((unsigned char[]){0x5A, 0x00, 0x0F, 0x42, 0x40}),
- 5);
-}
-
-static void test_indef_bytestring_start(void **state) {
- assert_int_equal(0, cbor_encode_indef_bytestring_start(buffer, 0));
- assert_int_equal(1, cbor_encode_indef_bytestring_start(buffer, 512));
- assert_memory_equal(buffer, ((unsigned char[]){0x5F}), 1);
-}
-
-int main(void) {
- const struct CMUnitTest tests[] = {
- cmocka_unit_test(test_embedded_bytestring_start),
- cmocka_unit_test(test_bytestring_start),
- cmocka_unit_test(test_indef_bytestring_start)};
- return cmocka_run_group_tests(tests, NULL, NULL);
-}