summaryrefslogtreecommitdiff
path: root/tests/test-uuidset.c
blob: 5f9dcf183d619a10e1efbde59ea33cbcd3752a6d (plain)
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
/*
 * Copyright (c) 2022 Red Hat, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <config.h>

#include "lib/util.h"
#include "lib/uuidset.h"

#include "ovstest.h"

static void
test_uuidset_main(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
{
    struct uuidset set = UUIDSET_INITIALIZER(&set);
    struct uuid uuids[2];

    for (size_t i = 0; i < ARRAY_SIZE(uuids); i++) {
        uuid_generate(&uuids[i]);
    }

    ovs_assert(uuidset_is_empty(&set));

    for (size_t i = 0; i < ARRAY_SIZE(uuids); i++) {
        struct uuid *u = &uuids[i];

        if (i == 0) {
            ovs_assert(uuidset_is_empty(&set));
        } else {
            ovs_assert(!uuidset_is_empty(&set));
        }
        ovs_assert(uuidset_count(&set) == i);
        ovs_assert(!uuidset_contains(&set, u));
        ovs_assert(!uuidset_find_and_delete(&set, u));

        /* Insert twice to check set property. */
        uuidset_insert(&set, u);
        uuidset_insert(&set, u);
        ovs_assert(uuidset_count(&set) == i + 1);

        struct uuidset_node *n = uuidset_find(&set, u);
        ovs_assert(n);
        uuidset_delete(&set, n);
        ovs_assert(uuidset_count(&set) == i);
        ovs_assert(!uuidset_contains(&set, u));

        uuidset_insert(&set, u);
        ovs_assert(uuidset_count(&set) == i + 1);
        ovs_assert(uuidset_contains(&set, u));
        ovs_assert(uuidset_find_and_delete(&set, u));
        ovs_assert(uuidset_count(&set) == i);
        ovs_assert(!uuidset_contains(&set, u));

        uuidset_insert(&set, u);
    }

    uuidset_destroy(&set);
}

OVSTEST_REGISTER("test-uuidset", test_uuidset_main);