tcp_transport: added basic unit tests for init/destroy transports in lists or when used separately
This commit is contained in:
parent
c94339c559
commit
412dc95168
3 changed files with 38 additions and 0 deletions
5
components/tcp_transport/test/CMakeLists.txt
Normal file
5
components/tcp_transport/test/CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
set(COMPONENT_SRCDIRS ".")
|
||||||
|
set(COMPONENT_PRIV_INCLUDEDIRS "../private_include" ".")
|
||||||
|
set(COMPONENT_PRIV_REQUIRES unity test_utils tcp_transport)
|
||||||
|
|
||||||
|
register_component()
|
5
components/tcp_transport/test/component.mk
Normal file
5
components/tcp_transport/test/component.mk
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#
|
||||||
|
#Component Makefile
|
||||||
|
#
|
||||||
|
COMPONENT_PRIV_INCLUDEDIRS := ../private_include .
|
||||||
|
COMPONENT_ADD_LDFLAGS = -Wl,--whole-archive -l$(COMPONENT_NAME) -Wl,--no-whole-archive
|
28
components/tcp_transport/test/test_transport.c
Normal file
28
components/tcp_transport/test/test_transport.c
Normal file
|
@ -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));
|
||||||
|
}
|
Loading…
Reference in a new issue