diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-02-18 23:42:22 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-02-18 23:42:22 +0100 |
commit | f19808cedd5749066f6da0e1c289533f14f83c82 (patch) | |
tree | f109a948fb3b2d0aee3cbdb125d01a17d9fb13bc /tests/unit/plugins/relay/api | |
parent | 0f30a4e0204cbcd084fafab4aeb28f6211240b9f (diff) | |
download | weechat-f19808cedd5749066f6da0e1c289533f14f83c82.zip |
tests: add tests on "api" relay (general functions and messages)
Diffstat (limited to 'tests/unit/plugins/relay/api')
-rw-r--r-- | tests/unit/plugins/relay/api/test-relay-api-msg.cpp | 369 | ||||
-rw-r--r-- | tests/unit/plugins/relay/api/test-relay-api-protocol.cpp | 142 | ||||
-rw-r--r-- | tests/unit/plugins/relay/api/test-relay-api.cpp | 160 |
3 files changed, 671 insertions, 0 deletions
diff --git a/tests/unit/plugins/relay/api/test-relay-api-msg.cpp b/tests/unit/plugins/relay/api/test-relay-api-msg.cpp new file mode 100644 index 000000000..546713ac1 --- /dev/null +++ b/tests/unit/plugins/relay/api/test-relay-api-msg.cpp @@ -0,0 +1,369 @@ +/* + * test-relay-api-msg.cpp - test relay API protocol (messages) + * + * Copyright (C) 2024 Sébastien Helleu <flashcode@flashtux.org> + * + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * WeeChat is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "CppUTest/TestHarness.h" + +extern "C" +{ +#include <time.h> +#include <sys/time.h> +#include <cjson/cJSON.h> +#include "src/core/wee-util.h" +#include "src/gui/gui-buffer.h" +#include "src/gui/gui-chat.h" +#include "src/gui/gui-color.h" +#include "src/gui/gui-line.h" +#include "src/gui/gui-nicklist.h" +#include "src/plugins/relay/relay.h" +#include "src/plugins/relay/relay-client.h" +#include "src/plugins/relay/api/relay-api.h" +#include "src/plugins/relay/api/relay-api-msg.h" +} + +#define WEE_CHECK_OBJ_STR(__expected, __json, __name) \ + json_obj = cJSON_GetObjectItem (__json, __name); \ + CHECK(json_obj); \ + CHECK(cJSON_IsString (json_obj)); \ + STRCMP_EQUAL(__expected, cJSON_GetStringValue (json_obj)); + +#define WEE_CHECK_OBJ_STRN(__expected, __length, __json, __name) \ + json_obj = cJSON_GetObjectItem (__json, __name); \ + CHECK(json_obj); \ + CHECK(cJSON_IsString (json_obj)); \ + STRNCMP_EQUAL(__expected, cJSON_GetStringValue (json_obj), \ + __length); + +#define WEE_CHECK_OBJ_INT(__expected, __json, __name) \ + json_obj = cJSON_GetObjectItem (__json, __name); \ + CHECK(json_obj); \ + CHECK(cJSON_IsNumber (json_obj)); \ + LONGS_EQUAL(__expected, cJSON_GetNumberValue (json_obj)); + +#define WEE_CHECK_OBJ_BOOL(__expected, __json, __name) \ + json_obj = cJSON_GetObjectItem (__json, __name); \ + CHECK(json_obj); \ + CHECK(cJSON_IsBool (json_obj)); \ + LONGS_EQUAL(__expected, cJSON_IsTrue (json_obj) ? 1 : 0); + +TEST_GROUP(RelayApiMsg) +{ +}; + +/* + * Tests functions: + * relay_api_msg_send_json_internal + */ + +TEST(RelayApiMsg, SendJsonInternal) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_msg_send_json + */ + +TEST(RelayApiMsg, SendJson) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_msg_send_error_json + */ + +TEST(RelayApiMsg, SendErrorJson) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_msg_send_event + */ + +TEST(RelayApiMsg, SendEvent) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_msg_buffer_add_local_vars_cb + * relay_api_msg_buffer_to_json + * relay_api_msg_nick_to_json + * relay_api_msg_nick_group_to_json + */ + +TEST(RelayApiMsg, BufferToJson) +{ + cJSON *json, *json_obj, *json_local_vars, *json_lines; + cJSON *json_nicks, *json_groups, *json_group, *json_group_nicks, *json_nick; + struct t_gui_buffer *buffer; + struct t_gui_nick_group *group; + + json = relay_api_msg_buffer_to_json (NULL, 0, 0, RELAY_API_COLORS_ANSI); + CHECK(json); + CHECK(cJSON_IsObject (json)); + POINTERS_EQUAL(NULL, cJSON_GetObjectItem (json, "name")); + cJSON_Delete (json); + + /* buffer without lines and nicks */ + json = relay_api_msg_buffer_to_json (gui_buffers, 0, 0, RELAY_API_COLORS_ANSI); + CHECK(json); + CHECK(cJSON_IsObject (json)); + WEE_CHECK_OBJ_STR("core.weechat", json, "name"); + WEE_CHECK_OBJ_STR("weechat", json, "short_name"); + WEE_CHECK_OBJ_INT(1, json, "number"); + WEE_CHECK_OBJ_STR("formatted", json, "type"); + WEE_CHECK_OBJ_STRN("WeeChat", 7, json, "title"); + json_local_vars = cJSON_GetObjectItem (json, "local_variables"); + CHECK(json_local_vars); + CHECK(cJSON_IsObject (json_local_vars)); + WEE_CHECK_OBJ_STR("core", json_local_vars, "plugin"); + WEE_CHECK_OBJ_STR("weechat", json_local_vars, "name"); + POINTERS_EQUAL(NULL, cJSON_GetObjectItem (json, "lines")); + POINTERS_EQUAL(NULL, cJSON_GetObjectItem (json, "nicks")); + cJSON_Delete (json); + + /* buffer with 2 lines, without nicks */ + json = relay_api_msg_buffer_to_json (gui_buffers, 2, 0, RELAY_API_COLORS_ANSI); + CHECK(json); + CHECK(cJSON_IsObject (json)); + json_lines = cJSON_GetObjectItem (json, "lines"); + CHECK(json_lines); + CHECK(cJSON_IsArray (json_lines)); + LONGS_EQUAL(2, cJSON_GetArraySize (json_lines)); + cJSON_Delete (json); + + /* create a user buffer with 1 group / 4 nicks */ + buffer = gui_buffer_new_user ("test", GUI_BUFFER_TYPE_FORMATTED); + CHECK(buffer); + group = gui_nicklist_add_group (buffer, NULL, "group1", "magenta", 1); + CHECK(group); + CHECK(gui_nicklist_add_nick (buffer, group, "nick1", "blue", "@", "lightred", 1)); + CHECK(gui_nicklist_add_nick (buffer, group, "nick2", "green", NULL, NULL, 1)); + CHECK(gui_nicklist_add_nick (buffer, group, "nick3", "yellow", NULL, NULL, 1)); + CHECK(gui_nicklist_add_nick (buffer, NULL, "root_nick_hidden", "cyan", "+", "yellow", 0)); + + /* buffer with no lines and 1 group / 4 nicks */ + json = relay_api_msg_buffer_to_json (buffer, 1, 1, RELAY_API_COLORS_ANSI); + CHECK(json); + CHECK(cJSON_IsObject (json)); + json_lines = cJSON_GetObjectItem (json, "lines"); + CHECK(json_lines); + CHECK(cJSON_IsArray (json_lines)); + LONGS_EQUAL(0, cJSON_GetArraySize (json_lines)); + json_nicks = cJSON_GetObjectItem (json, "nicks"); + CHECK(json_nicks); + CHECK(cJSON_IsObject (json_nicks)); + WEE_CHECK_OBJ_STR("root", json_nicks, "name"); + WEE_CHECK_OBJ_STR("", json_nicks, "color"); + json_groups = cJSON_GetObjectItem (json_nicks, "groups"); + CHECK(json_groups); + CHECK(cJSON_IsArray (json_groups)); + LONGS_EQUAL(1, cJSON_GetArraySize (json_groups)); + json_group = cJSON_GetArrayItem (json_groups, 0); + CHECK(json_group); + CHECK(cJSON_IsObject (json_group)); + WEE_CHECK_OBJ_STR("group1", json_group, "name"); + WEE_CHECK_OBJ_STR("magenta", json_group, "color"); + json_group_nicks = cJSON_GetObjectItem (json_group, "nicks"); + CHECK(json_group_nicks); + CHECK(cJSON_IsArray (json_group_nicks)); + LONGS_EQUAL(3, cJSON_GetArraySize (json_group_nicks)); + json_nick = cJSON_GetArrayItem (json_group_nicks, 0); + CHECK(json_nick); + CHECK(cJSON_IsObject (json_nick)); + WEE_CHECK_OBJ_STR("@", json_nick, "prefix"); + WEE_CHECK_OBJ_STR("lightred", json_nick, "prefix_color"); + WEE_CHECK_OBJ_STR("nick1", json_nick, "name"); + WEE_CHECK_OBJ_STR("blue", json_nick, "color"); + WEE_CHECK_OBJ_BOOL(1, json_nick, "visible"); + json_nick = cJSON_GetArrayItem (json_group_nicks, 1); + CHECK(json_nick); + CHECK(cJSON_IsObject (json_nick)); + WEE_CHECK_OBJ_STR("", json_nick, "prefix"); + WEE_CHECK_OBJ_STR("", json_nick, "prefix_color"); + WEE_CHECK_OBJ_STR("nick2", json_nick, "name"); + WEE_CHECK_OBJ_STR("green", json_nick, "color"); + WEE_CHECK_OBJ_BOOL(1, json_nick, "visible"); + json_nick = cJSON_GetArrayItem (json_group_nicks, 2); + CHECK(json_nick); + CHECK(cJSON_IsObject (json_nick)); + WEE_CHECK_OBJ_STR("", json_nick, "prefix"); + WEE_CHECK_OBJ_STR("", json_nick, "prefix_color"); + WEE_CHECK_OBJ_STR("nick3", json_nick, "name"); + WEE_CHECK_OBJ_STR("yellow", json_nick, "color"); + WEE_CHECK_OBJ_BOOL(1, json_nick, "visible"); + json_nicks = cJSON_GetObjectItem (json_nicks, "nicks"); + CHECK(json_nicks); + CHECK(cJSON_IsArray (json_nicks)); + LONGS_EQUAL(1, cJSON_GetArraySize (json_nicks)); + json_nick = cJSON_GetArrayItem (json_nicks, 0); + CHECK(json_nick); + CHECK(cJSON_IsObject (json_nick)); + WEE_CHECK_OBJ_STR("+", json_nick, "prefix"); + WEE_CHECK_OBJ_STR("yellow", json_nick, "prefix_color"); + WEE_CHECK_OBJ_STR("root_nick_hidden", json_nick, "name"); + WEE_CHECK_OBJ_STR("cyan", json_nick, "color"); + WEE_CHECK_OBJ_BOOL(0, json_nick, "visible"); + cJSON_Delete (json); + + gui_buffer_close (buffer); +} + +/* + * Tests functions: + * relay_api_msg_line_data_to_json + * relay_api_msg_lines_to_json + */ + +TEST(RelayApiMsg, LinesToJson) +{ + char str_msg1[1024], str_msg2[1024], *str_msg_ansi, str_date[128]; + cJSON *json, *json_line, *json_obj, *json_tags, *json_tag; + struct timeval tv; + struct tm gm_time; + + snprintf (str_msg1, sizeof (str_msg1), "%s", "this is the first line"); + gui_chat_printf_date_tags (NULL, 0, "tag1,tag2,tag3", + "%s\t%s", "nick1", str_msg1); + + snprintf (str_msg2, sizeof (str_msg2), + "this is the second line with %s" "green", + gui_color_get_custom ("green")); + gui_chat_printf (NULL, "%s", str_msg2); + + /* two lines with ANSI colors */ + json = relay_api_msg_lines_to_json (gui_buffers, -2, RELAY_API_COLORS_ANSI); + CHECK(json); + CHECK(cJSON_IsArray (json)); + LONGS_EQUAL(2, cJSON_GetArraySize (json)); + /* first line */ + json_line = cJSON_GetArrayItem (json, 0); + CHECK(json_line); + CHECK(cJSON_IsObject (json_line)); + WEE_CHECK_OBJ_INT(gui_buffers->own_lines->last_line->prev_line->data->id, + json_line, "id"); + WEE_CHECK_OBJ_INT(-1, json_line, "y"); + gmtime_r (&(gui_buffers->own_lines->last_line->prev_line->data->date), &gm_time); + tv.tv_sec = mktime (&gm_time); + tv.tv_usec = gui_buffers->own_lines->last_line->prev_line->data->date_usec; + util_strftimeval (str_date, sizeof (str_date), "%FT%T.%fZ", &tv); + WEE_CHECK_OBJ_STR(str_date, json_line, "date"); + gmtime_r (&(gui_buffers->own_lines->last_line->prev_line->data->date_printed), &gm_time); + tv.tv_sec = mktime (&gm_time); + tv.tv_usec = gui_buffers->own_lines->last_line->prev_line->data->date_usec_printed; + util_strftimeval (str_date, sizeof (str_date), "%FT%T.%fZ", &tv); + WEE_CHECK_OBJ_STR(str_date, json_line, "date_printed"); + WEE_CHECK_OBJ_BOOL(0, json_line, "highlight"); + WEE_CHECK_OBJ_STR("nick1", json_line, "prefix"); + WEE_CHECK_OBJ_STR(str_msg1, json_line, "message"); + json_tags = cJSON_GetObjectItem (json_line, "tags"); + CHECK(json_tags); + CHECK(cJSON_IsArray (json_tags)); + LONGS_EQUAL(3, cJSON_GetArraySize (json_tags)); + json_tag = cJSON_GetArrayItem (json_tags, 0); + CHECK(json_tag); + CHECK(cJSON_IsString (json_tag)); + STRCMP_EQUAL("tag1", cJSON_GetStringValue (json_tag)); + json_tag = cJSON_GetArrayItem (json_tags, 1); + CHECK(json_tag); + CHECK(cJSON_IsString (json_tag)); + STRCMP_EQUAL("tag2", cJSON_GetStringValue (json_tag)); + json_tag = cJSON_GetArrayItem (json_tags, 2); + CHECK(json_tag); + CHECK(cJSON_IsString (json_tag)); + STRCMP_EQUAL("tag3", cJSON_GetStringValue (json_tag)); + /* second line */ + json_line = cJSON_GetArrayItem (json, 1); + CHECK(json_line); + CHECK(cJSON_IsObject (json_line)); + WEE_CHECK_OBJ_INT(gui_buffers->own_lines->last_line->data->id, + json_line, "id"); + WEE_CHECK_OBJ_INT(-1, json_line, "y"); + gmtime_r (&(gui_buffers->own_lines->last_line->data->date), &gm_time); + tv.tv_sec = mktime (&gm_time); + tv.tv_usec = gui_buffers->own_lines->last_line->data->date_usec; + util_strftimeval (str_date, sizeof (str_date), "%FT%T.%fZ", &tv); + WEE_CHECK_OBJ_STR(str_date, json_line, "date"); + gmtime_r (&(gui_buffers->own_lines->last_line->data->date_printed), &gm_time); + tv.tv_sec = mktime (&gm_time); + tv.tv_usec = gui_buffers->own_lines->last_line->data->date_usec_printed; + util_strftimeval (str_date, sizeof (str_date), "%FT%T.%fZ", &tv); + WEE_CHECK_OBJ_STR(str_date, json_line, "date_printed"); + WEE_CHECK_OBJ_BOOL(0, json_line, "highlight"); + WEE_CHECK_OBJ_STR("", json_line, "prefix"); + str_msg_ansi = gui_color_encode_ansi (str_msg2); + CHECK(str_msg_ansi); + WEE_CHECK_OBJ_STR(str_msg_ansi, json_line, "message"); + free (str_msg_ansi); + json_tags = cJSON_GetObjectItem (json_line, "tags"); + CHECK(json_tags); + CHECK(cJSON_IsArray (json_tags)); + LONGS_EQUAL(0, cJSON_GetArraySize (json_tags)); + cJSON_Delete (json); + + /* with ANSI colors */ + json = relay_api_msg_lines_to_json (gui_buffers, -1, RELAY_API_COLORS_ANSI); + CHECK(json); + CHECK(cJSON_IsArray (json)); + LONGS_EQUAL(1, cJSON_GetArraySize (json)); + json_line = cJSON_GetArrayItem (json, 0); + CHECK(json_line); + CHECK(cJSON_IsObject (json_line)); + WEE_CHECK_OBJ_INT(gui_buffers->own_lines->last_line->data->id, + json_line, "id"); + str_msg_ansi = gui_color_encode_ansi (str_msg2); + CHECK(str_msg_ansi); + WEE_CHECK_OBJ_STR(str_msg_ansi, json_line, "message"); + free (str_msg_ansi); + cJSON_Delete (json); + + /* one line with WeeChat colors */ + json = relay_api_msg_lines_to_json (gui_buffers, -1, RELAY_API_COLORS_WEECHAT); + CHECK(json); + CHECK(cJSON_IsArray (json)); + LONGS_EQUAL(1, cJSON_GetArraySize (json)); + json_line = cJSON_GetArrayItem (json, 0); + CHECK(json_line); + CHECK(cJSON_IsObject (json_line)); + WEE_CHECK_OBJ_INT(gui_buffers->own_lines->last_line->data->id, + json_line, "id"); + WEE_CHECK_OBJ_STR(str_msg2, json_line, "message"); + cJSON_Delete (json); + + /* one line without colors */ + json = relay_api_msg_lines_to_json (gui_buffers, -1, RELAY_API_COLORS_STRIP); + CHECK(json); + CHECK(cJSON_IsArray (json)); + LONGS_EQUAL(1, cJSON_GetArraySize (json)); + json_line = cJSON_GetArrayItem (json, 0); + CHECK(json_line); + CHECK(cJSON_IsObject (json_line)); + WEE_CHECK_OBJ_INT(gui_buffers->own_lines->last_line->data->id, + json_line, "id"); + WEE_CHECK_OBJ_STR("this is the second line with green", json_line, "message"); + cJSON_Delete (json); +} diff --git a/tests/unit/plugins/relay/api/test-relay-api-protocol.cpp b/tests/unit/plugins/relay/api/test-relay-api-protocol.cpp new file mode 100644 index 000000000..9cd826713 --- /dev/null +++ b/tests/unit/plugins/relay/api/test-relay-api-protocol.cpp @@ -0,0 +1,142 @@ +/* + * test-relay-api-protocol.cpp - test relay API protocol (protocol) + * + * Copyright (C) 2024 Sébastien Helleu <flashcode@flashtux.org> + * + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * WeeChat is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "CppUTest/TestHarness.h" + +extern "C" +{ +#include "src/plugins/relay/relay.h" +#include "src/plugins/relay/api/relay-api-protocol.h" +} + +TEST_GROUP(RelayApiProtocol) +{ +}; + +/* + * Tests functions: + * relay_api_protocol_signal_buffer_cb + */ + +TEST(RelayApiProtocol, SignalBufferCb) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_hsignal_nicklist_cb + */ + +TEST(RelayApiProtocol, HsignalNicklistCb) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_signal_upgrade_cb + */ + +TEST(RelayApiProtocol, SignalUpgradeCb) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_cb_handshake + */ + +TEST(RelayApiProtocol, CbHandshake) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_cb_version + */ + +TEST(RelayApiProtocol, CbVersion) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_cb_buffers + */ + +TEST(RelayApiProtocol, CbBuffers) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_cb_input + */ + +TEST(RelayApiProtocol, CbInput) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_cb_ping + */ + +TEST(RelayApiProtocol, CbPing) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_cb_sync + */ + +TEST(RelayApiProtocol, CbSync) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_recv_json + */ + +TEST(RelayApiProtocol, RecvJson) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_protocol_recv_http + */ + +TEST(RelayApiProtocol, RecvHttp) +{ + /* TODO: write tests */ +} diff --git a/tests/unit/plugins/relay/api/test-relay-api.cpp b/tests/unit/plugins/relay/api/test-relay-api.cpp new file mode 100644 index 000000000..08d1cb4bb --- /dev/null +++ b/tests/unit/plugins/relay/api/test-relay-api.cpp @@ -0,0 +1,160 @@ +/* + * test-relay-api.cpp - test relay API protocol (general functions) + * + * Copyright (C) 2024 Sébastien Helleu <flashcode@flashtux.org> + * + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * WeeChat is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "CppUTest/TestHarness.h" + +extern "C" +{ +#include "src/plugins/relay/relay.h" +#include "src/plugins/relay/relay-client.h" +#include "src/plugins/relay/api/relay-api.h" +} + +TEST_GROUP(RelayApi) +{ +}; + +/* + * Tests functions: + * relay_api_search_colors + */ + +TEST(RelayApi, SearchColors) +{ + LONGS_EQUAL(RELAY_API_COLORS_ANSI, relay_api_search_colors (NULL)); + LONGS_EQUAL(RELAY_API_COLORS_ANSI, relay_api_search_colors ("")); + LONGS_EQUAL(RELAY_API_COLORS_ANSI, relay_api_search_colors ("xxx")); + LONGS_EQUAL(RELAY_API_COLORS_ANSI, relay_api_search_colors ("WEECHAT")); + LONGS_EQUAL(RELAY_API_COLORS_ANSI, relay_api_search_colors ("STRIP")); + + LONGS_EQUAL(RELAY_API_COLORS_WEECHAT, relay_api_search_colors ("weechat")); + LONGS_EQUAL(RELAY_API_COLORS_STRIP, relay_api_search_colors ("strip")); +} + +/* + * Tests functions: + * relay_api_hook_signals + */ + +TEST(RelayApi, HookSignals) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_unhook_signals + */ + +TEST(RelayApi, UnhookSignals) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_recv_http + */ + +TEST(RelayApi, RecvHttp) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_recv_json + */ + +TEST(RelayApi, RecvJson) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_close_connection + */ + +TEST(RelayApi, CloseConnection) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_alloc + */ + +TEST(RelayApi, Alloc) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_alloc_with_infolist + */ + +TEST(RelayApi, AllocWithInfolist) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_get_initial_status + */ + +TEST(RelayApi, GetInitialStatus) +{ + LONGS_EQUAL(RELAY_STATUS_WAITING_AUTH, relay_api_get_initial_status (NULL)); +} + +/* + * Tests functions: + * relay_api_free + */ + +TEST(RelayApi, Free) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_add_to_infolist + */ + +TEST(RelayApi, AddToInfolist) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_api_print_log + */ + +TEST(RelayApi, PrintLog) +{ + /* TODO: write tests */ +} |