2017-09-08 13:39:09 -07:00
|
|
|
/*
|
2018-02-23 09:53:12 +01:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2017-09-08 13:39:09 -07: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.
|
2017-09-08 13:39:09 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*! \file */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <atf-c.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <isc/event.h>
|
|
|
|
#include <isc/print.h>
|
|
|
|
#include <isc/task.h>
|
|
|
|
|
|
|
|
#include <dns/acl.h>
|
|
|
|
#include <dns/rcode.h>
|
|
|
|
#include <dns/view.h>
|
|
|
|
|
|
|
|
#include <ns/client.h>
|
|
|
|
#include <ns/notify.h>
|
|
|
|
|
|
|
|
#include "nstest.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_response(isc_buffer_t *buf) {
|
|
|
|
isc_result_t result;
|
|
|
|
dns_message_t *message = NULL;
|
|
|
|
char rcodebuf[20];
|
|
|
|
isc_buffer_t b;
|
|
|
|
|
|
|
|
result = dns_message_create(mctx, DNS_MESSAGE_INTENTPARSE, &message);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = dns_message_parse(message, buf, 0);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
isc_buffer_init(&b, rcodebuf, sizeof(rcodebuf));
|
|
|
|
result = dns_rcode_totext(message->rcode, &b);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
ATF_CHECK_EQ(message->rcode, dns_rcode_noerror);
|
|
|
|
|
|
|
|
dns_message_destroy(&message);
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(notify_start);
|
|
|
|
ATF_TC_HEAD(notify_start, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "notify start");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(notify_start, tc) {
|
|
|
|
isc_result_t result;
|
|
|
|
ns_client_t *client = NULL;
|
|
|
|
dns_message_t *nmsg = NULL;
|
|
|
|
unsigned char ndata[4096];
|
|
|
|
isc_buffer_t nbuf;
|
|
|
|
size_t nsize;
|
|
|
|
|
|
|
|
UNUSED(tc);
|
|
|
|
|
|
|
|
result = ns_test_begin(NULL, ISC_TRUE);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = ns_test_getclient(NULL, ISC_FALSE, &client);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2017-10-11 15:02:50 -07:00
|
|
|
result = ns_test_makeview("view", ISC_FALSE, &client->view);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = ns_test_serve_zone("example.com", "testdata/notify/zone1.db",
|
|
|
|
client->view);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
2017-09-08 13:39:09 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a NOTIFY message by parsing a file in testdata.
|
|
|
|
* (XXX: use better message mocking method when available.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
result = ns_test_getdata("testdata/notify/notify1.msg",
|
|
|
|
ndata, sizeof(ndata), &nsize);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
isc_buffer_init(&nbuf, ndata, nsize);
|
|
|
|
isc_buffer_add(&nbuf, nsize);
|
|
|
|
|
|
|
|
result = dns_message_create(mctx, DNS_MESSAGE_INTENTPARSE, &nmsg);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = dns_message_parse(nmsg, &nbuf, 0);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up client object with this message and test the NOTIFY
|
|
|
|
* handler.
|
|
|
|
*/
|
2017-09-11 16:10:49 -07:00
|
|
|
if (client->message != NULL) {
|
|
|
|
dns_message_destroy(&client->message);
|
|
|
|
}
|
2017-09-08 13:39:09 -07:00
|
|
|
client->message = nmsg;
|
|
|
|
nmsg = NULL;
|
|
|
|
client->sendcb = check_response;
|
|
|
|
ns_notify_start(client);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clean up
|
|
|
|
*/
|
2017-10-11 15:02:50 -07:00
|
|
|
ns_test_cleanup_zone();
|
2017-09-08 13:39:09 -07:00
|
|
|
|
|
|
|
ns_client_detach(&client);
|
|
|
|
|
|
|
|
ns_test_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Main
|
|
|
|
*/
|
|
|
|
ATF_TP_ADD_TCS(tp) {
|
|
|
|
ATF_TP_ADD_TC(tp, notify_start);
|
|
|
|
return (atf_no_error());
|
|
|
|
}
|