| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // Copyright 2021 Espressif Systems (Shanghai) PTE LTD
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #include <stdlib.h>
- #include <stdbool.h>
- #include <esp_websocket_client.h>
- #include "unity.h"
- #include "test_utils.h"
- static void test_leak_setup(const char * file, long line)
- {
- printf("%s:%ld\n", file, line);
- unity_reset_leak_checks();
- }
- TEST_CASE("websocket init and deinit", "[websocket][leaks=0]")
- {
- test_leak_setup(__FILE__, __LINE__);
- const esp_websocket_client_config_t websocket_cfg = {
- // no connection takes place, but the uri has to be valid for init() to succeed
- .uri = "ws://echo.websocket.org",
- };
- esp_websocket_client_handle_t client = esp_websocket_client_init(&websocket_cfg);
- TEST_ASSERT_NOT_EQUAL(NULL, client);
- esp_websocket_client_destroy(client);
- }
- TEST_CASE("websocket init with invalid url", "[websocket][leaks=0]")
- {
- test_leak_setup(__FILE__, __LINE__);
- const esp_websocket_client_config_t websocket_cfg = {
- .uri = "INVALID",
- };
- esp_websocket_client_handle_t client = esp_websocket_client_init(&websocket_cfg);
- TEST_ASSERT_NULL(client);
- }
- TEST_CASE("websocket set url with invalid url", "[websocket][leaks=0]")
- {
- test_leak_setup(__FILE__, __LINE__);
- const esp_websocket_client_config_t websocket_cfg = {};
- esp_websocket_client_handle_t client = esp_websocket_client_init(&websocket_cfg);
- TEST_ASSERT_NOT_EQUAL(NULL, client);
- TEST_ASSERT_NOT_EQUAL(ESP_OK, esp_websocket_client_set_uri(client, "INVALID"));
- esp_websocket_client_destroy(client);
- }
|