1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 05:16:38 +02:00
Files
weechat/tests/unit/plugins/relay/test-relay-raw.cpp
T

191 lines
4.1 KiB
C++

/*
* test-relay-raw.cpp - test raw messages 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"
#include "tests/tests.h"
extern "C"
{
#include <string.h>
#include "src/plugins/relay/relay.h"
#include "src/plugins/relay/relay-raw.h"
char *relay_raw_message_cut (const char *data, int max_length);
}
TEST_GROUP(RelayRaw)
{
};
/*
* Tests functions:
* relay_raw_message_print
*/
TEST(RelayRaw, MessagePrint)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_open
*/
TEST(RelayRaw, Open)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_message_free
*/
TEST(RelayRaw, MessageFree)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_message_free_all
*/
TEST(RelayRaw, MessageFreeAll)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_message_remove_old
*/
TEST(RelayRaw, MessageRemoveOld)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_message_add_to_list
*/
TEST(RelayRaw, MessageAddToList)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_convert_binary_message
*/
TEST(RelayRaw, ConvertBinaryMessage)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_convert_text_message
*/
TEST(RelayRaw, ConvertTextMessage)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_message_cut
*/
TEST(RelayRaw, MessageCut)
{
char *str;
POINTERS_EQUAL(NULL, relay_raw_message_cut (NULL, -1));
POINTERS_EQUAL(NULL, relay_raw_message_cut (NULL, 0));
POINTERS_EQUAL(NULL, relay_raw_message_cut ("test", -1));
WEE_TEST_STR("", relay_raw_message_cut ("", 0));
WEE_TEST_STR("this is a test", relay_raw_message_cut ("this is a test", 0));
WEE_TEST_STR("t (...)", relay_raw_message_cut ("this is a test", 1));
WEE_TEST_STR("t (...) t", relay_raw_message_cut ("this is a test", 2));
WEE_TEST_STR("th (...) t", relay_raw_message_cut ("this is a test", 3));
WEE_TEST_STR("th (...) st", relay_raw_message_cut ("this is a test", 4));
WEE_TEST_STR("thi (...) st", relay_raw_message_cut ("this is a test", 5));
WEE_TEST_STR("thi (...) est", relay_raw_message_cut ("this is a test", 6));
WEE_TEST_STR("this (...) est", relay_raw_message_cut ("this is a test", 7));
WEE_TEST_STR("this (...) test", relay_raw_message_cut ("this is a test", 8));
WEE_TEST_STR("this (...) test", relay_raw_message_cut ("this is a test", 9));
WEE_TEST_STR("this (...) test", relay_raw_message_cut ("this is a test", 10));
WEE_TEST_STR("this i (...) test", relay_raw_message_cut ("this is a test", 11));
WEE_TEST_STR("this i (...) a test", relay_raw_message_cut ("this is a test", 12));
WEE_TEST_STR("this is (...) a test", relay_raw_message_cut ("this is a test", 13));
WEE_TEST_STR("this is a test", relay_raw_message_cut ("this is a test", 14));
WEE_TEST_STR("this is a test", relay_raw_message_cut ("this is a test", 15));
}
/*
* Tests functions:
* relay_raw_message_add
*/
TEST(RelayRaw, MessageAdd)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_print_client
*/
TEST(RelayRaw, PrintClient)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_print_remote
*/
TEST(RelayRaw, PrintRemote)
{
/* TODO: write tests */
}
/*
* Tests functions:
* relay_raw_add_to_infolist
*/
TEST(RelayRaw, AddToInfolist)
{
/* TODO: write tests */
}