mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 01:59:26 +00:00
The unit tests are now using a common base, which means that lib/dns/tests/ code now has to include lib/isc/include/isc/test.h and link with lib/isc/test.c and lib/ns/tests has to include both libisc and libdns parts. Instead of cross-linking code between the directories, move the /lib/<foo>/test.c to /tests/<foo>.c and /lib/<foo>/include/<foo>test.h to /tests/include/tests/<foo>.h and create a single libtest.la convenience library in /tests/. At the same time, move the /lib/<foo>/tests/ to /tests/<foo>/ (but keep it symlinked to the old location) and adjust paths accordingly. In few places, we are now using absolute paths instead of relative paths, because the directory level has changed. By moving the directories under the /tests/ directory, the test-related code is kept in a single place and we can avoid referencing files between libns->libdns->libisc which is unhealthy because they live in a separate Makefile-space. In the future, the /bin/tests/ should be merged to /tests/ and symlink kept, and the /fuzz/ directory moved to /tests/fuzz/.
144 lines
3.3 KiB
C
144 lines
3.3 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
#include <sched.h> /* IWYU pragma: keep */
|
|
#include <setjmp.h>
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#define UNIT_TESTING
|
|
#include <cmocka.h>
|
|
|
|
#include <isc/util.h>
|
|
|
|
#include <dns/db.h>
|
|
#include <dns/dbiterator.h>
|
|
#include <dns/journal.h>
|
|
#include <dns/name.h>
|
|
|
|
#include <tests/dns.h>
|
|
|
|
#define BUFLEN 255
|
|
#define BIGBUFLEN (64 * 1024)
|
|
#define TEST_ORIGIN "test"
|
|
|
|
static void
|
|
test_create(const char *oldfile, dns_db_t **old, const char *newfile,
|
|
dns_db_t **newdb) {
|
|
isc_result_t result;
|
|
|
|
result = dns_test_loaddb(old, dns_dbtype_zone, TEST_ORIGIN, oldfile);
|
|
assert_int_equal(result, ISC_R_SUCCESS);
|
|
|
|
result = dns_test_loaddb(newdb, dns_dbtype_zone, TEST_ORIGIN, newfile);
|
|
assert_int_equal(result, ISC_R_SUCCESS);
|
|
}
|
|
|
|
/* dns_db_diffx of identical content */
|
|
ISC_RUN_TEST_IMPL(diffx_same) {
|
|
dns_db_t *newdb = NULL, *olddb = NULL;
|
|
isc_result_t result;
|
|
dns_diff_t diff;
|
|
|
|
UNUSED(state);
|
|
|
|
test_create("testdata/diff/zone1.data", &olddb,
|
|
"testdata/diff/zone1.data", &newdb);
|
|
|
|
dns_diff_init(mctx, &diff);
|
|
|
|
result = dns_db_diffx(&diff, newdb, NULL, olddb, NULL, NULL);
|
|
assert_int_equal(result, ISC_R_SUCCESS);
|
|
|
|
assert_true(ISC_LIST_EMPTY(diff.tuples));
|
|
|
|
dns_diff_clear(&diff);
|
|
dns_db_detach(&newdb);
|
|
dns_db_detach(&olddb);
|
|
}
|
|
|
|
/* dns_db_diffx of zone with record added */
|
|
ISC_RUN_TEST_IMPL(diffx_add) {
|
|
dns_db_t *newdb = NULL, *olddb = NULL;
|
|
dns_difftuple_t *tuple;
|
|
isc_result_t result;
|
|
dns_diff_t diff;
|
|
int count = 0;
|
|
|
|
UNUSED(state);
|
|
|
|
test_create("testdata/diff/zone1.data", &olddb,
|
|
"testdata/diff/zone2.data", &newdb);
|
|
|
|
dns_diff_init(mctx, &diff);
|
|
|
|
result = dns_db_diffx(&diff, newdb, NULL, olddb, NULL, NULL);
|
|
assert_int_equal(result, ISC_R_SUCCESS);
|
|
|
|
assert_false(ISC_LIST_EMPTY(diff.tuples));
|
|
for (tuple = ISC_LIST_HEAD(diff.tuples); tuple != NULL;
|
|
tuple = ISC_LIST_NEXT(tuple, link))
|
|
{
|
|
assert_int_equal(tuple->op, DNS_DIFFOP_ADD);
|
|
count++;
|
|
}
|
|
assert_int_equal(count, 1);
|
|
|
|
dns_diff_clear(&diff);
|
|
dns_db_detach(&newdb);
|
|
dns_db_detach(&olddb);
|
|
}
|
|
|
|
/* dns_db_diffx of zone with record removed */
|
|
ISC_RUN_TEST_IMPL(diffx_remove) {
|
|
dns_db_t *newdb = NULL, *olddb = NULL;
|
|
dns_difftuple_t *tuple;
|
|
isc_result_t result;
|
|
dns_diff_t diff;
|
|
int count = 0;
|
|
|
|
UNUSED(state);
|
|
|
|
test_create("testdata/diff/zone1.data", &olddb,
|
|
"testdata/diff/zone3.data", &newdb);
|
|
|
|
dns_diff_init(mctx, &diff);
|
|
|
|
result = dns_db_diffx(&diff, newdb, NULL, olddb, NULL, NULL);
|
|
assert_int_equal(result, ISC_R_SUCCESS);
|
|
|
|
assert_false(ISC_LIST_EMPTY(diff.tuples));
|
|
for (tuple = ISC_LIST_HEAD(diff.tuples); tuple != NULL;
|
|
tuple = ISC_LIST_NEXT(tuple, link))
|
|
{
|
|
assert_int_equal(tuple->op, DNS_DIFFOP_DEL);
|
|
count++;
|
|
}
|
|
assert_int_equal(count, 1);
|
|
|
|
dns_diff_clear(&diff);
|
|
dns_db_detach(&newdb);
|
|
dns_db_detach(&olddb);
|
|
}
|
|
|
|
ISC_TEST_LIST_START
|
|
ISC_TEST_ENTRY(diffx_same)
|
|
ISC_TEST_ENTRY(diffx_add)
|
|
ISC_TEST_ENTRY(diffx_remove)
|
|
ISC_TEST_LIST_END
|
|
|
|
ISC_TEST_MAIN
|