1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-18 00:54:47 +02:00
Files

338 lines
4.8 KiB
C++

/*
* SPDX-FileCopyrightText: 2023-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 IRC list functions */
#include "CppUTest/TestHarness.h"
#include "tests.h"
extern "C"
{
#include "src/plugins/irc/irc-list.h"
}
TEST_GROUP(IrcList)
{
};
/*
* Test functions:
* irc_list_compare_cb
*/
TEST(IrcList, CompareCb)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_free_cb
*/
TEST(IrcList, FreeCb)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_buffer_set_localvar_filter
*/
TEST(IrcList, BufferSetLocalvarFilter)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_set_filter
*/
TEST(IrcList, SetFilter)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_set_sort
*/
TEST(IrcList, SetSort)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_add_channel_in_hashtable
*/
TEST(IrcList, AddChannelInHashtable)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_string_match
*/
TEST(IrcList, StringMatch)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_channel_match_filter
*/
TEST(IrcList, ChannelMatchFilter)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_filter_channels
*/
TEST(IrcList, FilterChannels)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_parse_messages
*/
TEST(IrcList, ParseMessages)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_buffer_set_title
*/
TEST(IrcList, BufferSetTitle)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_display_line
*/
TEST(IrcList, DisplayLine)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_buffer_refresh
*/
TEST(IrcList, BufferRefresh)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_set_current_line
*/
TEST(IrcList, SetCurrentLine)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_get_window_info
*/
TEST(IrcList, GetWindowInfo)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_check_line_outside_window
*/
TEST(IrcList, CheckLineOutsideWindow)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_window_scrolled_cb
*/
TEST(IrcList, WindowScrolledCb)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_move_line_relative
*/
TEST(IrcList, MoveLineRelative)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_move_line_absolute
*/
TEST(IrcList, MoveLineAbsolute)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_join_channel
*/
TEST(IrcList, JoinChannel)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_buffer_input_data_cb
*/
TEST(IrcList, BufferInputDataCb)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_create_buffer
*/
TEST(IrcList, CreateBuffer)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_hsignal_redirect_list_cb
*/
TEST(IrcList, HsignalRedirectListCb)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_export
*/
TEST(IrcList, Export)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_alloc
*/
TEST(IrcList, Alloc)
{
struct t_irc_list *list;
list = irc_list_alloc ();
CHECK(list);
POINTERS_EQUAL(NULL, list->buffer);
POINTERS_EQUAL(NULL, list->channels);
POINTERS_EQUAL(NULL, list->filter_channels);
LONGS_EQUAL(0, list->name_max_length);
STRCMP_EQUAL(NULL, list->filter);
STRCMP_EQUAL(NULL, list->sort);
POINTERS_EQUAL(NULL, list->sort_fields);
LONGS_EQUAL(0, list->sort_fields_count);
LONGS_EQUAL(0, list->selected_line);
}
/*
* Test functions:
* irc_list_free_data
*/
TEST(IrcList, FreeData)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_free
*/
TEST(IrcList, Free)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_hdata_list_channel_cb
*/
TEST(IrcList, HdataListChannelCb)
{
/* TODO: write tests */
}
/*
* Test functions:
* irc_list_hdata_list_cb
*/
TEST(IrcList, HdataListCb)
{
/* TODO: write tests */
}