aboutsummaryrefslogtreecommitdiff
path: root/src/test.h
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2020-04-04 02:25:21 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2020-04-04 02:25:21 +0200
commita83aee989b06729078e6ba7c8448b30a3bab4e1d (patch)
tree0c39dee6cd7715ebb4d90e37efd774d1797c7151 /src/test.h
parentc36c7fedf969fa49e832c7d2739ea4d1ad1108f2 (diff)
downloaddns-a83aee989b06729078e6ba7c8448b30a3bab4e1d.tar.gz
Moved server to server.h/.c, added tests
- All server functions have been moved to server.h/.c - main call run_dns_server() or run_test() depending on makefile target - Makefile target test is now available - test.h/.c provide unit tests
Diffstat (limited to 'src/test.h')
-rw-r--r--src/test.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/test.h b/src/test.h
new file mode 100644
index 0000000..885e304
--- /dev/null
+++ b/src/test.h
@@ -0,0 +1,29 @@
+/* test.h
+ * (c) Jonas Gunz, 2020
+ * License: MIT
+ * */
+
+#pragma once
+
+#include <stdio.h>
+#include "tree.h"
+#include "dns.h"
+
+/*
+ * TODO
+ * * fuzz dns_parse_packet()
+ * * test dns_parse_packet() with random valid data
+ * * test qname_check() with random valid data
+ */
+
+#ifdef _TEST
+
+void run_test ();
+
+int test_tree ();
+
+int test_dns_parsing ();
+
+int test_dns_parsing_fuzz();
+
+#endif