2011-08-23 00:59:23 +00:00
|
|
|
/*
|
2018-02-23 09:53:12 +01:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2011-08-23 00:59:23 +00:00
|
|
|
*
|
2016-06-27 14:56:38 +10:00
|
|
|
* 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 http://mozilla.org/MPL/2.0/.
|
2018-02-23 09:53:12 +01:00
|
|
|
*
|
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
* information regarding copyright ownership.
|
2011-08-23 00:59:23 +00:00
|
|
|
*/
|
|
|
|
|
2012-03-08 00:21:15 +11:00
|
|
|
/* $Id$ */
|
2011-08-23 00:59:23 +00:00
|
|
|
|
|
|
|
/*! \file */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <atf-c.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
2011-08-23 03:43:03 +00:00
|
|
|
#include <stdlib.h>
|
2011-08-23 00:59:23 +00:00
|
|
|
|
|
|
|
#include <dns/db.h>
|
|
|
|
#include <dns/dbiterator.h>
|
|
|
|
#include <dns/name.h>
|
|
|
|
|
|
|
|
#include "dnstest.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BUFLEN 255
|
|
|
|
#define BIGBUFLEN (64 * 1024)
|
|
|
|
#define TEST_ORIGIN "test"
|
|
|
|
|
|
|
|
static isc_result_t
|
|
|
|
make_name(const char *src, dns_name_t *name) {
|
|
|
|
isc_buffer_t b;
|
2012-12-08 12:48:57 +11:00
|
|
|
isc_buffer_constinit(&b, src, strlen(src));
|
2011-08-23 00:59:23 +00:00
|
|
|
isc_buffer_add(&b, strlen(src));
|
|
|
|
return (dns_name_fromtext(name, &b, dns_rootname, 0, NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Individual unit tests
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* create: make sure we can create a dbiterator */
|
|
|
|
static void
|
|
|
|
test_create(const atf_tc_t *tc) {
|
|
|
|
isc_result_t result;
|
|
|
|
dns_db_t *db = NULL;
|
|
|
|
dns_dbiterator_t *iter = NULL;
|
|
|
|
|
|
|
|
result = dns_test_begin(NULL, ISC_FALSE);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-12-04 23:48:12 +00:00
|
|
|
result = dns_test_loaddb(&db, dns_dbtype_cache, TEST_ORIGIN,
|
|
|
|
atf_tc_get_md_var(tc, "X-filename"));
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-08-23 23:54:00 +00:00
|
|
|
result = dns_db_createiterator(db, 0, &iter);
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
dns_dbiterator_destroy(&iter);
|
|
|
|
dns_db_detach(&db);
|
|
|
|
dns_test_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(create);
|
|
|
|
ATF_TC_HEAD(create, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "create a database iterator");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone1.data");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(create, tc) {
|
|
|
|
test_create(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(create_nsec3);
|
|
|
|
ATF_TC_HEAD(create_nsec3, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "create a database iterator (NSEC3)");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone2.data");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(create_nsec3, tc) {
|
|
|
|
test_create(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* walk: walk a database */
|
|
|
|
static void
|
|
|
|
test_walk(const atf_tc_t *tc) {
|
|
|
|
isc_result_t result;
|
|
|
|
dns_db_t *db = NULL;
|
|
|
|
dns_dbiterator_t *iter = NULL;
|
|
|
|
dns_dbnode_t *node = NULL;
|
|
|
|
dns_name_t *name;
|
|
|
|
dns_fixedname_t f;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
UNUSED(tc);
|
|
|
|
|
|
|
|
dns_fixedname_init(&f);
|
|
|
|
name = dns_fixedname_name(&f);
|
|
|
|
|
|
|
|
result = dns_test_begin(NULL, ISC_FALSE);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-12-04 23:48:12 +00:00
|
|
|
result = dns_test_loaddb(&db, dns_dbtype_cache, TEST_ORIGIN,
|
|
|
|
atf_tc_get_md_var(tc, "X-filename"));
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-08-23 23:54:00 +00:00
|
|
|
result = dns_db_createiterator(db, 0, &iter);
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
for (result = dns_dbiterator_first(iter);
|
|
|
|
result == ISC_R_SUCCESS;
|
|
|
|
result = dns_dbiterator_next(iter)) {
|
|
|
|
result = dns_dbiterator_current(iter, &node, name);
|
2011-08-29 23:44:07 +00:00
|
|
|
if (result == DNS_R_NEWORIGIN)
|
|
|
|
result = ISC_R_SUCCESS;
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
2011-08-23 00:59:23 +00:00
|
|
|
dns_db_detachnode(db, &node);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_CHECK_EQ(i, atoi(atf_tc_get_md_var(tc, "X-nodes")));
|
|
|
|
|
|
|
|
dns_dbiterator_destroy(&iter);
|
|
|
|
dns_db_detach(&db);
|
|
|
|
dns_test_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(walk);
|
|
|
|
ATF_TC_HEAD(walk, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "walk database");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone1.data");
|
|
|
|
atf_tc_set_md_var(tc, "X-nodes", "12");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(walk, tc) {
|
|
|
|
test_walk(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(walk_nsec3);
|
|
|
|
ATF_TC_HEAD(walk_nsec3, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "walk database");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone2.data");
|
|
|
|
atf_tc_set_md_var(tc, "X-nodes", "33");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(walk_nsec3, tc) {
|
|
|
|
test_walk(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* reverse: walk database backwards */
|
|
|
|
static void test_reverse(const atf_tc_t *tc) {
|
|
|
|
isc_result_t result;
|
|
|
|
dns_db_t *db = NULL;
|
|
|
|
dns_dbiterator_t *iter = NULL;
|
|
|
|
dns_dbnode_t *node = NULL;
|
|
|
|
dns_name_t *name;
|
|
|
|
dns_fixedname_t f;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
UNUSED(tc);
|
|
|
|
|
|
|
|
dns_fixedname_init(&f);
|
|
|
|
name = dns_fixedname_name(&f);
|
|
|
|
|
|
|
|
result = dns_test_begin(NULL, ISC_FALSE);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-12-04 23:48:12 +00:00
|
|
|
result = dns_test_loaddb(&db, dns_dbtype_cache, TEST_ORIGIN,
|
|
|
|
atf_tc_get_md_var(tc, "X-filename"));
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-08-23 23:54:00 +00:00
|
|
|
result = dns_db_createiterator(db, 0, &iter);
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
for (result = dns_dbiterator_last(iter);
|
|
|
|
result == ISC_R_SUCCESS;
|
|
|
|
result = dns_dbiterator_prev(iter)) {
|
|
|
|
result = dns_dbiterator_current(iter, &node, name);
|
2011-08-29 23:44:07 +00:00
|
|
|
if (result == DNS_R_NEWORIGIN)
|
|
|
|
result = ISC_R_SUCCESS;
|
|
|
|
ATF_CHECK_EQ(result, ISC_R_SUCCESS);
|
2011-08-23 00:59:23 +00:00
|
|
|
dns_db_detachnode(db, &node);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_CHECK_EQ(i, 12);
|
|
|
|
|
|
|
|
dns_dbiterator_destroy(&iter);
|
|
|
|
dns_db_detach(&db);
|
|
|
|
dns_test_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(reverse);
|
|
|
|
ATF_TC_HEAD(reverse, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "walk database backwards");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone1.data");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(reverse, tc) {
|
|
|
|
test_reverse(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(reverse_nsec3);
|
|
|
|
ATF_TC_HEAD(reverse_nsec3, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "walk database backwards");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone2.data");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(reverse_nsec3, tc) {
|
|
|
|
test_reverse(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* seek: walk database starting at a particular node */
|
|
|
|
static void test_seek(const atf_tc_t *tc) {
|
|
|
|
isc_result_t result;
|
|
|
|
dns_db_t *db = NULL;
|
|
|
|
dns_dbiterator_t *iter = NULL;
|
|
|
|
dns_dbnode_t *node = NULL;
|
|
|
|
dns_name_t *name, *seekname;
|
|
|
|
dns_fixedname_t f1, f2;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
UNUSED(tc);
|
|
|
|
|
|
|
|
dns_fixedname_init(&f1);
|
|
|
|
name = dns_fixedname_name(&f1);
|
|
|
|
dns_fixedname_init(&f2);
|
|
|
|
seekname = dns_fixedname_name(&f2);
|
|
|
|
|
|
|
|
result = dns_test_begin(NULL, ISC_FALSE);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-12-04 23:48:12 +00:00
|
|
|
result = dns_test_loaddb(&db, dns_dbtype_cache, TEST_ORIGIN,
|
|
|
|
atf_tc_get_md_var(tc, "X-filename"));
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-08-23 23:54:00 +00:00
|
|
|
result = dns_db_createiterator(db, 0, &iter);
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = make_name("c." TEST_ORIGIN, seekname);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-08-23 23:54:00 +00:00
|
|
|
result = dns_dbiterator_seek(iter, seekname);
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_CHECK_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
while (result == ISC_R_SUCCESS) {
|
|
|
|
result = dns_dbiterator_current(iter, &node, name);
|
2011-08-29 23:44:07 +00:00
|
|
|
if (result == DNS_R_NEWORIGIN)
|
|
|
|
result = ISC_R_SUCCESS;
|
|
|
|
ATF_CHECK_EQ(result, ISC_R_SUCCESS);
|
2011-08-23 00:59:23 +00:00
|
|
|
dns_db_detachnode(db, &node);
|
|
|
|
result = dns_dbiterator_next(iter);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_CHECK_EQ(i, atoi(atf_tc_get_md_var(tc, "X-nodes")));
|
|
|
|
|
|
|
|
dns_dbiterator_destroy(&iter);
|
|
|
|
dns_db_detach(&db);
|
|
|
|
dns_test_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(seek);
|
|
|
|
ATF_TC_HEAD(seek, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "walk database starting at "
|
|
|
|
"a particular node");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone1.data");
|
|
|
|
atf_tc_set_md_var(tc, "X-nodes", "9");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(seek, tc) {
|
|
|
|
test_seek(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(seek_nsec3);
|
|
|
|
ATF_TC_HEAD(seek_nsec3, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "walk database starting at "
|
|
|
|
"a particular node");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone2.data");
|
|
|
|
atf_tc_set_md_var(tc, "X-nodes", "30");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(seek_nsec3, tc) {
|
|
|
|
test_seek(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* seek_emty: walk database starting at an empty nonterminal node
|
|
|
|
* (should fail)
|
|
|
|
*/
|
|
|
|
static void test_seek_empty(const atf_tc_t *tc) {
|
|
|
|
isc_result_t result;
|
|
|
|
dns_db_t *db = NULL;
|
|
|
|
dns_dbiterator_t *iter = NULL;
|
|
|
|
dns_name_t *seekname;
|
|
|
|
dns_fixedname_t f1;
|
|
|
|
|
|
|
|
UNUSED(tc);
|
|
|
|
|
|
|
|
dns_fixedname_init(&f1);
|
|
|
|
seekname = dns_fixedname_name(&f1);
|
|
|
|
|
|
|
|
result = dns_test_begin(NULL, ISC_FALSE);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-12-04 23:48:12 +00:00
|
|
|
result = dns_test_loaddb(&db, dns_dbtype_cache, TEST_ORIGIN,
|
|
|
|
atf_tc_get_md_var(tc, "X-filename"));
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-08-23 23:54:00 +00:00
|
|
|
result = dns_db_createiterator(db, 0, &iter);
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = make_name("d." TEST_ORIGIN, seekname);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-08-23 23:54:00 +00:00
|
|
|
result = dns_dbiterator_seek(iter, seekname);
|
2016-03-24 11:31:25 +11:00
|
|
|
ATF_CHECK_EQ(result, DNS_R_PARTIALMATCH);
|
2011-08-23 00:59:23 +00:00
|
|
|
|
|
|
|
dns_dbiterator_destroy(&iter);
|
|
|
|
dns_db_detach(&db);
|
|
|
|
dns_test_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(seek_empty);
|
|
|
|
ATF_TC_HEAD(seek_empty, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "walk database starting at an "
|
|
|
|
"empty nonterminal node");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone1.data");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(seek_empty, tc) {
|
|
|
|
test_seek_empty(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(seek_empty_nsec3);
|
|
|
|
ATF_TC_HEAD(seek_empty_nsec3, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "walk database starting at an "
|
|
|
|
"empty nonterminal node");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone2.data");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(seek_empty_nsec3, tc) {
|
|
|
|
test_seek_empty(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* seek_emty: walk database starting at an empty nonterminal node
|
|
|
|
* (should fail)
|
|
|
|
*/
|
|
|
|
static void test_seek_nx(const atf_tc_t *tc) {
|
|
|
|
isc_result_t result;
|
|
|
|
dns_db_t *db = NULL;
|
|
|
|
dns_dbiterator_t *iter = NULL;
|
|
|
|
dns_name_t *seekname;
|
|
|
|
dns_fixedname_t f1;
|
|
|
|
|
|
|
|
UNUSED(tc);
|
|
|
|
|
|
|
|
dns_fixedname_init(&f1);
|
|
|
|
seekname = dns_fixedname_name(&f1);
|
|
|
|
|
|
|
|
result = dns_test_begin(NULL, ISC_FALSE);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-12-04 23:48:12 +00:00
|
|
|
result = dns_test_loaddb(&db, dns_dbtype_cache, TEST_ORIGIN,
|
|
|
|
atf_tc_get_md_var(tc, "X-filename"));
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-08-23 23:54:00 +00:00
|
|
|
result = dns_db_createiterator(db, 0, &iter);
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = make_name("nonexistent." TEST_ORIGIN, seekname);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2016-03-24 11:31:25 +11:00
|
|
|
result = dns_dbiterator_seek(iter, seekname);
|
|
|
|
ATF_CHECK_EQ(result, DNS_R_PARTIALMATCH);
|
|
|
|
|
|
|
|
result = make_name("nonexistent.", seekname);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2011-08-23 23:54:00 +00:00
|
|
|
result = dns_dbiterator_seek(iter, seekname);
|
2011-08-23 00:59:23 +00:00
|
|
|
ATF_CHECK_EQ(result, ISC_R_NOTFOUND);
|
|
|
|
|
|
|
|
dns_dbiterator_destroy(&iter);
|
|
|
|
dns_db_detach(&db);
|
|
|
|
dns_test_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(seek_nx);
|
|
|
|
ATF_TC_HEAD(seek_nx, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "attempt to walk database starting "
|
|
|
|
"at a nonexistent node");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone1.data");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(seek_nx, tc) {
|
|
|
|
test_seek_nx(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(seek_nx_nsec3);
|
|
|
|
ATF_TC_HEAD(seek_nx_nsec3, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "attempt to walk database starting "
|
|
|
|
"at a nonexistent node");
|
|
|
|
atf_tc_set_md_var(tc, "X-filename", "testdata/dbiterator/zone2.data");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(seek_nx_nsec3, tc) {
|
|
|
|
test_seek_nx(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Main
|
|
|
|
*/
|
|
|
|
ATF_TP_ADD_TCS(tp) {
|
|
|
|
ATF_TP_ADD_TC(tp, create);
|
|
|
|
ATF_TP_ADD_TC(tp, create_nsec3);
|
|
|
|
ATF_TP_ADD_TC(tp, walk);
|
|
|
|
ATF_TP_ADD_TC(tp, walk_nsec3);
|
|
|
|
ATF_TP_ADD_TC(tp, reverse);
|
|
|
|
ATF_TP_ADD_TC(tp, reverse_nsec3);
|
|
|
|
ATF_TP_ADD_TC(tp, seek);
|
|
|
|
ATF_TP_ADD_TC(tp, seek_nsec3);
|
|
|
|
ATF_TP_ADD_TC(tp, seek_empty);
|
|
|
|
ATF_TP_ADD_TC(tp, seek_empty_nsec3);
|
|
|
|
ATF_TP_ADD_TC(tp, seek_nx);
|
|
|
|
ATF_TP_ADD_TC(tp, seek_nx_nsec3);
|
|
|
|
return (atf_no_error());
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX:
|
|
|
|
* dns_dbiterator API calls that are not yet part of this unit test:
|
|
|
|
*
|
|
|
|
* dns_dbiterator_pause
|
|
|
|
* dns_dbiterator_origin
|
|
|
|
* dns_dbiterator_setcleanmode
|
|
|
|
*/
|