1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-23 03:16:37 +02:00
Files
weechat/tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp

299 lines
4.5 KiB
C++

/*
* SPDX-FileCopyrightText: 2024-2026 Sébastien Helleu <flashcode@flashtux.org>
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* 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/>.
*/
/* Test event functions for relay remote */
#include "CppUTest/TestHarness.h"
#include "tests.h"
extern "C"
{
#include <cjson/cJSON.h>
#include "src/core/core-config-file.h"
#include "src/plugins/relay/relay.h"
#include "src/plugins/relay/api/remote/relay-remote-event.h"
}
TEST_GROUP(RelayRemoteEvent)
{
};
/*
* Test functions:
* relay_remote_event_search_buffer
*/
TEST(RelayRemoteEvent, SearchBuffer)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_get_buffer_id
*/
TEST(RelayRemoteEvent, GetBufferId)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_build_string_tags
*/
TEST(RelayRemoteEvent, BuildStringTags)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_line_add
*/
TEST(RelayRemoteEvent, LineAdd)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_search_line_by_id
*/
TEST(RelayRemoteEvent, SearchLineById)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_line_update
*/
TEST(RelayRemoteEvent, LineUpdate)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_line
*/
TEST(RelayRemoteEvent, CbLine)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_handle_nick
*/
TEST(RelayRemoteEvent, HandleNick)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_handle_nick_group
*/
TEST(RelayRemoteEvent, HandleNickGroup)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_nick_group
*/
TEST(RelayRemoteEvent, CbNickGroup)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_nick
*/
TEST(RelayRemoteEvent, CbNick)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_apply_props
*/
TEST(RelayRemoteEvent, ApplyProps)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_buffer_input_cb
*/
TEST(RelayRemoteEvent, BufferInputCb)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_check_local_var
*/
TEST(RelayRemoteEvent, CheckLocalVar)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_remove_localvar_cb
*/
TEST(RelayRemoteEvent, RemoveLocalVarCb)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_initial_sync_buffers
*/
TEST(RelayRemoteEvent, InitialSyncBuffers)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_buffer
*/
TEST(RelayRemoteEvent, CbBuffer)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_buffer_cleared
*/
TEST(RelayRemoteEvent, CbBufferCleared)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_buffer_closed
*/
TEST(RelayRemoteEvent, CbBufferClosed)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_vinput
*/
TEST(RelayRemoteEvent, CbInput)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_clear_buffers
*/
TEST(RelayRemoteEvent, ClearBuffers)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_sync_with_remote
*/
TEST(RelayRemoteEvent, SyncWithRemote)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_version
*/
TEST(RelayRemoteEvent, CbVersion)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_upgrade
*/
TEST(RelayRemoteEvent, CbUpgrade)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_cb_quit
*/
TEST(RelayRemoteEvent, CbQuit)
{
/* TODO: write tests */
}
/*
* Test functions:
* relay_remote_event_recv
*/
TEST(RelayRemoteEvent, Recv)
{
/* TODO: write tests */
}