aboutsummaryrefslogtreecommitdiff
path: root/zenhttp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-20 10:15:12 +0200
committerStefan Boberg <[email protected]>2021-09-20 10:15:12 +0200
commit8d3024a7e09246e44bf6d9ea14a36e6b03032e85 (patch)
treec18c2536d108378e5cddcac21398efd8d28e437d /zenhttp
parentAdded testing.h to wrap doctest.h (diff)
downloadzen-8d3024a7e09246e44bf6d9ea14a36e6b03032e85.tar.xz
zen-8d3024a7e09246e44bf6d9ea14a36e6b03032e85.zip
It's not possible to compile out tests
Tests are now compiled in if `ZEN_WITH_TESTS=1`, and compiled out if not. Compiling tests out reduces the footprint of the resulting executables quite significantly.
Diffstat (limited to 'zenhttp')
-rw-r--r--zenhttp/httpclient.cpp7
-rw-r--r--zenhttp/httpserver.cpp7
2 files changed, 10 insertions, 4 deletions
diff --git a/zenhttp/httpclient.cpp b/zenhttp/httpclient.cpp
index fb1df30b2..20550b0c9 100644
--- a/zenhttp/httpclient.cpp
+++ b/zenhttp/httpclient.cpp
@@ -10,10 +10,9 @@
#include <zencore/session.h>
#include <zencore/sharedbuffer.h>
#include <zencore/stream.h>
+#include <zencore/testing.h>
#include <zenhttp/httpshared.h>
-#include <doctest/doctest.h>
-
static std::atomic<uint32_t> HttpClientRequestIdCounter{0};
namespace zen {
@@ -159,6 +158,8 @@ HttpClient::Delete(std::string_view Url)
//////////////////////////////////////////////////////////////////////////
+#if ZEN_WITH_TESTS
+
TEST_CASE("httpclient")
{
using namespace std::literals;
@@ -171,4 +172,6 @@ httpclient_forcelink()
{
}
+#endif
+
} // namespace zen
diff --git a/zenhttp/httpserver.cpp b/zenhttp/httpserver.cpp
index 62ee66a08..599c99a18 100644
--- a/zenhttp/httpserver.cpp
+++ b/zenhttp/httpserver.cpp
@@ -13,6 +13,7 @@
#include <zencore/refcount.h>
#include <zencore/stream.h>
#include <zencore/string.h>
+#include <zencore/testing.h>
#include <zencore/thread.h>
#include <zenhttp/httpshared.h>
@@ -23,8 +24,6 @@
#include <span>
#include <string_view>
-#include <doctest/doctest.h>
-
namespace zen {
using namespace std::literals;
@@ -525,6 +524,8 @@ CreateHttpServer()
//////////////////////////////////////////////////////////////////////////
+#if ZEN_WITH_TESTS
+
TEST_CASE("http.common")
{
using namespace std::literals;
@@ -566,4 +567,6 @@ http_forcelink()
{
}
+#endif
+
} // namespace zen