2013-12-17 09:08:59 +11:00
|
|
|
/*
|
2016-06-27 14:56:38 +10:00
|
|
|
* Copyright (C) 2013, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
|
2013-12-17 09:08:59 +11: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/.
|
2013-12-17 09:08:59 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/*! \file */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <atf-c.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <dns/db.h>
|
|
|
|
#include <dns/dbiterator.h>
|
|
|
|
#include <dns/name.h>
|
|
|
|
#include <dns/journal.h>
|
|
|
|
|
|
|
|
#include "dnstest.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BUFLEN 255
|
|
|
|
#define BIGBUFLEN (64 * 1024)
|
|
|
|
#define TEST_ORIGIN "test"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Individual unit tests
|
|
|
|
*/
|
|
|
|
|
|
|
|
ATF_TC(getoriginnode);
|
|
|
|
ATF_TC_HEAD(getoriginnode, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr",
|
|
|
|
"test multiple calls to dns_db_getoriginnode");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(getoriginnode, tc) {
|
|
|
|
dns_db_t *db = NULL;
|
|
|
|
dns_dbnode_t *node = NULL;
|
2015-01-20 13:29:18 -08:00
|
|
|
isc_mem_t *mymctx = NULL;
|
2013-12-17 09:08:59 +11:00
|
|
|
isc_result_t result;
|
|
|
|
|
2015-01-20 13:29:18 -08:00
|
|
|
result = isc_mem_create(0, 0, &mymctx);
|
2013-12-17 09:08:59 +11:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2015-01-20 13:29:18 -08:00
|
|
|
result = isc_hash_create(mymctx, NULL, 256);
|
2013-12-17 09:08:59 +11:00
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2015-01-20 13:29:18 -08:00
|
|
|
result = dns_db_create(mymctx, "rbt", dns_rootname, dns_dbtype_zone,
|
2013-12-17 09:08:59 +11:00
|
|
|
dns_rdataclass_in, 0, NULL, &db);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = dns_db_getoriginnode(db, &node);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
dns_db_detachnode(db, &node);
|
|
|
|
|
|
|
|
result = dns_db_getoriginnode(db, &node);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
dns_db_detachnode(db, &node);
|
|
|
|
|
|
|
|
dns_db_detach(&db);
|
2015-01-20 13:29:18 -08:00
|
|
|
isc_mem_detach(&mymctx);
|
2013-12-17 09:08:59 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Main
|
|
|
|
*/
|
|
|
|
ATF_TP_ADD_TCS(tp) {
|
|
|
|
ATF_TP_ADD_TC(tp, getoriginnode);
|
|
|
|
return (atf_no_error());
|
|
|
|
}
|