]> granicus.if.org Git - esp-idf/commitdiff
tcp_transport: added basic unit tests for init/destroy transports in lists or when...
authorDavid Cermak <cermak@espressif.com>
Tue, 11 Jun 2019 13:56:04 +0000 (15:56 +0200)
committerDavid Cermak <cermak@espressif.com>
Thu, 4 Jul 2019 09:07:41 +0000 (11:07 +0200)
components/tcp_transport/test/CMakeLists.txt [new file with mode: 0644]
components/tcp_transport/test/component.mk [new file with mode: 0644]
components/tcp_transport/test/test_transport.c [new file with mode: 0644]

diff --git a/components/tcp_transport/test/CMakeLists.txt b/components/tcp_transport/test/CMakeLists.txt
new file mode 100644 (file)
index 0000000..88504a2
--- /dev/null
@@ -0,0 +1,5 @@
+set(COMPONENT_SRCDIRS ".")
+set(COMPONENT_PRIV_INCLUDEDIRS "../private_include" ".")
+set(COMPONENT_PRIV_REQUIRES unity test_utils tcp_transport)
+
+register_component()
\ No newline at end of file
diff --git a/components/tcp_transport/test/component.mk b/components/tcp_transport/test/component.mk
new file mode 100644 (file)
index 0000000..22e49ed
--- /dev/null
@@ -0,0 +1,5 @@
+#
+#Component Makefile
+#
+COMPONENT_PRIV_INCLUDEDIRS := ../private_include .
+COMPONENT_ADD_LDFLAGS = -Wl,--whole-archive -l$(COMPONENT_NAME) -Wl,--no-whole-archive
\ No newline at end of file
diff --git a/components/tcp_transport/test/test_transport.c b/components/tcp_transport/test/test_transport.c
new file mode 100644 (file)
index 0000000..28702fb
--- /dev/null
@@ -0,0 +1,28 @@
+#include "unity.h"
+
+#include "esp_transport.h"
+#include "esp_transport_tcp.h"
+#include "esp_transport_ssl.h"
+#include "esp_transport_ws.h"
+
+TEST_CASE("tcp_transport: init and deinit transport list", "[tcp_transport][leaks=0]")
+{
+    esp_transport_list_handle_t transport_list = esp_transport_list_init();
+    esp_transport_handle_t tcp = esp_transport_tcp_init();
+    esp_transport_list_add(transport_list, tcp, "tcp");
+    TEST_ASSERT_EQUAL(ESP_OK, esp_transport_list_destroy(transport_list));
+}
+
+TEST_CASE("tcp_transport: using ssl transport separately", "[tcp_transport][leaks=0]")
+{
+    esp_transport_handle_t h = esp_transport_ssl_init();
+    TEST_ASSERT_EQUAL(ESP_OK, esp_transport_destroy(h));
+}
+
+TEST_CASE("tcp_transport: using ws transport separately", "[tcp_transport][leaks=0]")
+{
+    esp_transport_handle_t tcp = esp_transport_tcp_init();
+    esp_transport_handle_t ws = esp_transport_ws_init(tcp);
+    TEST_ASSERT_EQUAL(ESP_OK, esp_transport_destroy(ws));
+    TEST_ASSERT_EQUAL(ESP_OK, esp_transport_destroy(tcp));
+}