1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
/* Copyright (C) CZ.NIC, z.s.p.o. and contributors
* SPDX-License-Identifier: GPL-2.0-or-later
* For more information, see <https://www.knot-dns.cz/>
*/
#include <stdbool.h>
#include <string.h>
#include <tap/basic.h>
#include "dname.c"
static void ok_length(const char *dname, size_t length, const char *info)
{
ok(dname_length((uint8_t *)dname) == length,
"dname_length() for %s", info);
}
static void test_length(void)
{
ok_length(NULL, 0, "NULL");
ok_length("", 1, ".");
ok_length("\x2""cz", 4, "cz.");
ok_length("\x7""example""\x3""com", 13, "example.com.");
}
static bool dname_binary_equal(const uint8_t *one, const uint8_t *two)
{
return one && two && strcmp((char *)one, (char *)two) == 0;
}
static void test_copy(void)
{
const uint8_t *dname = (uint8_t *)"\x3""www""\x8""KNOT-DNS""\x2""cz";
uint8_t *copy = dname_copy(dname);
ok(dname_binary_equal(dname, copy), "dname_copy()");
free(copy);
}
static void test_equal(void)
{
#define eq(a, b) dname_equal((uint8_t *)a, (uint8_t *)b)
ok(eq("\x4""kiwi""\x4""limo", "\x4""kiwi""\x4""limo") == true,
"dname_equal() same");
ok(eq("\x6""orange", "\x6""ORANGE") == true,
"dname_equal() case single label");
ok(eq("\x6""Banana""\03""Tea", "\x6""bANAna""\x3""tea") == true,
"dname_equal() case two labels");
ok(eq("\x4""Coco""\x4""MILK", "\x3""cow""\x4""milk") == false,
"dname_equal() different first");
ok(eq("\x4""LIME""\x5""syrup", "\x4""LIme""\x4""beer") == false,
"dname_equal() different last");
ok(eq("\x5""apple", "\x5""apple""\x5""shake") == false,
"dname_equal() a prefix of b");
ok(eq("\x5""apple""\x5""juice", "\x5""apple") == false,
"dname_equal() b prefix of a");
}
int main(void)
{
plan_lazy();
test_length();
test_copy();
test_equal();
return 0;
}
|