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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
/* Copyright (C) 2018 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <tap/basic.h>
#include "nsec.h"
#include "libknot/descriptor.h"
#define TEST_BITMAP_SIZE 18
int main(void)
{
plan_lazy();
// Which rrtypes will be contained in the bitmap.
int test_contains_count = 8;
enum knot_rr_type test_contains[] = {
KNOT_RRTYPE_A,
KNOT_RRTYPE_NS,
KNOT_RRTYPE_SOA,
KNOT_RRTYPE_RRSIG,
KNOT_RRTYPE_NSEC,
KNOT_RRTYPE_DNSKEY,
KNOT_RRTYPE_SPF,
KNOT_RRTYPE_CAA
};
// Which rrtypes will not be contained in the bitmap.
int test_not_contains_count = 4;
enum knot_rr_type test_not_contains[] = {
KNOT_RRTYPE_AAAA,
KNOT_RRTYPE_MX,
KNOT_RRTYPE_AXFR,
KNOT_RRTYPE_CNAME
};
// Allocate new bitmap.
dnssec_nsec_bitmap_t *bitmap = dnssec_nsec_bitmap_new();
ok(bitmap != NULL, "allocate bitmap");
if (!bitmap) {
return 1;
}
// Add the desired RR types to bitmap.
for (int i = 0; i < test_contains_count; i++) {
dnssec_nsec_bitmap_add(bitmap, test_contains[i]);
}
size_t size = dnssec_nsec_bitmap_size(bitmap);
ok(size == TEST_BITMAP_SIZE, "valid bitmap size");
if (size != TEST_BITMAP_SIZE) {
dnssec_nsec_bitmap_free(bitmap);
return 1;
}
const uint8_t expected[TEST_BITMAP_SIZE] = {
0x00, 0x0D, 0x62, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10,
0x01, 0x01, 0x40
};
uint8_t encoded[TEST_BITMAP_SIZE] = { 0 };
dnssec_nsec_bitmap_write(bitmap, encoded);
ok(memcmp(encoded, expected, TEST_BITMAP_SIZE) == 0, "valid bitmap");
// Test contained types.
char rrtype_str[50];
for (int i = 0; i < test_contains_count; i++) {
bool contains = dnssec_nsec_bitmap_contains(encoded, size, test_contains[i]);
(void)knot_rrtype_to_string(test_contains[i], rrtype_str, 50);
ok(contains, "bitmap contains %s", rrtype_str);
}
// Test not contained types.
for (int i = 0; i < test_not_contains_count; i++) {
bool contains = dnssec_nsec_bitmap_contains(encoded, size, test_not_contains[i]);
(void)knot_rrtype_to_string(test_not_contains[i], rrtype_str, 50);
ok(!contains, "bitmap does not contain %s", rrtype_str);
}
dnssec_nsec_bitmap_clear(bitmap);
ok(dnssec_nsec_bitmap_size(bitmap) == 0, "bitmap clear");
dnssec_nsec_bitmap_free(bitmap);
return 0;
}
|