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
|
/* $OpenBSD: rde_sets_test.c,v 1.6 2019/06/17 13:14:23 claudio Exp $ */
/*
* Copyright (c) 2018 Claudio Jeker <claudio@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/queue.h>
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include "rde.h"
struct rde_memstats rdemem;
u_int32_t va[] = { 19, 14, 32, 76, 125 };
u_int32_t vaa[] = { 125, 14, 76, 32, 19 };
u_int32_t vb[] = { 256, 1024, 512, 4096, 2048, 512 };
u_int32_t vc[] = { 42 };
struct as_set_head *as_sets;
static struct as_set *
build_set(const char *name, u_int32_t *mem, size_t nmemb, size_t initial)
{
struct as_set *a;
a = as_sets_new(as_sets, name, initial, sizeof(*mem));
if (a == NULL)
err(1, "as_set_new %s", name);
if (set_add(a->set, mem, nmemb) != 0)
err(1, "as_set_add %s", name);
set_prep(a->set);
return a;
}
int
main(int argc, char **argv)
{
struct as_set *a, *aa, *b, *c, *empty;
size_t i;
if ((as_sets = malloc(sizeof(*as_sets))) == NULL)
err(1, NULL);
SIMPLEQ_INIT(as_sets);
a = build_set("a", va, sizeof(va) / sizeof(va[0]),
sizeof(va) / sizeof(va[0]));
aa = build_set("aa", vaa, sizeof(vaa) / sizeof(vaa[0]), 0);
b = build_set("b", vb, sizeof(vb) / sizeof(vb[0]), 1);
c = build_set("c", vc, sizeof(vc) / sizeof(vc[0]), 1);
empty = build_set("empty", NULL, 0, 0);
if (!set_equal(a->set, a->set))
errx(1, "set_equal(a, a) non equal");
if (!set_equal(a->set, aa->set))
errx(1, "set_equal(a, aa) non equal");
if (set_equal(a->set, b->set))
errx(1, "set_equal(a, b) equal");
for (i = 0; i < sizeof(va) / sizeof(va[0]); i++)
if (!as_set_match(a, va[i]))
errx(1, "as_set_match(a, %u) failed to match", va[i]);
for (i = 0; i < sizeof(vb) / sizeof(vb[0]); i++)
if (as_set_match(a, vb[i]))
errx(1, "as_set_match(a, %u) matched but should not",
vb[i]);
if (!as_set_match(c, 42))
errx(1, "as_set_match(c, %u) failed to match", 42);
if (as_set_match(c, 7))
errx(1, "as_set_match(c, %u) matched but should not", 7);
if (!set_equal(empty->set, empty->set))
errx(1, "set_equal(empty, empty) non equal");
if (as_set_match(empty, 42))
errx(1, "as_set_match(empty, %u) matched but should not", 42);
as_sets_free(as_sets);
printf("OK\n");
return 0;
}
|