Skip to content
Snippets Groups Projects
Commit f0cfabe1 authored by Jan Kadlec's avatar Jan Kadlec
Browse files

Added API for dname table tests.

Refs #1001 @20m
parent f047dac1
No related branches found
No related tags found
No related merge requests found
......@@ -208,3 +208,5 @@ src/zcompile/tests/zcompile_tests.c
src/zcompile/zcompile-error.c
src/dnslib/dname-table.h
src/dnslib/dname-table.c
src/dnslib/tests/dnslib/dname_table_tests.h
src/dnslib/tests/dnslib/dname_table_tests.c
......@@ -84,6 +84,8 @@ unittests_dnslib_SOURCES = \
dnslib/tests/dnslib/cuckoo_tests.h \
dnslib/tests/dnslib/dname_tests.c \
dnslib/tests/dnslib/dname_tests.h \
dnslib/tests/dnslib/dname_table_tests.h \
dnslib/tests/dnslib/dname_table_tests.c \
dnslib/tests/dnslib/edns_tests.c \
dnslib/tests/dnslib/edns_tests.h \
dnslib/tests/dnslib/node_tests.c \
......
#include "dname_table_tests.h"
static int dnslib_dname_table_tests_count(int argc, char *argv[]);
static int dnslib_dname_table_tests_run(int argc, char *argv[]);
/*! Exported unit API.
*/
unit_api dname_table_tests_api = {
"Dname table", //! Unit name
&dnslib_dname_table_tests_count, //! Count scheduled tests
&dnslib_dname_table_tests_run //! Run scheduled tests
};
static const int DNSLIB_DNAME_TABLE_TEST_COUNT = 7;
/*! This helper routine should report number of
* scheduled tests for given parameters.
*/
static int dnslib_dname_table_tests_count(int argc, char *argv[])
{
return DNSLIB_DNAME_TABLE_TEST_COUNT;
}
/*! Run all scheduled tests for given parameters.
*/
static int dnslib_dname_table_tests_run(int argc, char *argv[])
{
}
#ifndef _KNOT_DNAME_TABLE_TESTS_H_
#define _KNOT_DNAME_TABLE_TESTS_H_
#include "common/libtap/tap_unit.h"
/* Unit API. */
unit_api dname_table_tests_api;
#endif /* _KNOT_DNAME_TABLE_TESTS_H_ */
......@@ -11,6 +11,7 @@
//#include "dnslib/response_tests.h"
#include "dnslib/rrset_tests.h"
#include "dnslib/zone_tests.h"
#include "dnslib/dname_table_tests.h"
#include "dnslib/zonedb_tests.h"
// Run all loaded units
......@@ -31,6 +32,7 @@ int main(int argc, char *argv[])
// &response_tests_api, //! DNS library (response) unit
&rrset_tests_api, //! DNS library (rrset) unit
&zone_tests_api, //! DNS library (zone) unit
&dname_table_tests_api,
&zonedb_tests_api, //! DNS library (zonedb) unit
NULL
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment