From bf964de9399733f99e2183abd04a1612d99429cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 20 Jun 2020 10:07:56 +0200 Subject: tests: add tests on IRC function irc_channel_is_channel --- tests/unit/plugins/irc/test-irc-channel.cpp | 99 +++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 tests/unit/plugins/irc/test-irc-channel.cpp (limited to 'tests/unit') diff --git a/tests/unit/plugins/irc/test-irc-channel.cpp b/tests/unit/plugins/irc/test-irc-channel.cpp new file mode 100644 index 000000000..b78818987 --- /dev/null +++ b/tests/unit/plugins/irc/test-irc-channel.cpp @@ -0,0 +1,99 @@ +/* + * test-irc-channel.cpp - test IRC channel functions + * + * Copyright (C) 2019-2020 Sébastien Helleu + * + * 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 . + */ + +#include "CppUTest/TestHarness.h" + +extern "C" +{ +#include +#include "src/plugins/irc/irc-channel.h" +#include "src/plugins/irc/irc-server.h" +} + +TEST_GROUP(IrcChannel) +{ +}; + +/* + * Tests functions: + * irc_channel_valid + */ + +TEST(IrcChannel, Valid) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * irc_channel_is_channel + */ + +TEST(IrcChannel, IsChannel) +{ + struct t_irc_server *server; + + /* no server, default chantypes = "#&+!" */ + + /* empty channel */ + LONGS_EQUAL(0, irc_channel_is_channel (NULL, NULL)); + LONGS_EQUAL(0, irc_channel_is_channel (NULL, "")); + + /* not a channel */ + LONGS_EQUAL(0, irc_channel_is_channel (NULL, "abc")); + LONGS_EQUAL(0, irc_channel_is_channel (NULL, "/abc")); + LONGS_EQUAL(0, irc_channel_is_channel (NULL, ":abc")); + + /* valid channel */ + LONGS_EQUAL(1, irc_channel_is_channel (NULL, "#abc")); + LONGS_EQUAL(1, irc_channel_is_channel (NULL, "##abc")); + LONGS_EQUAL(1, irc_channel_is_channel (NULL, "&abc")); + LONGS_EQUAL(1, irc_channel_is_channel (NULL, "&&abc")); + LONGS_EQUAL(1, irc_channel_is_channel (NULL, "+abc")); + LONGS_EQUAL(1, irc_channel_is_channel (NULL, "++abc")); + LONGS_EQUAL(1, irc_channel_is_channel (NULL, "!abc")); + LONGS_EQUAL(1, irc_channel_is_channel (NULL, "!!abc")); + + /* server with chantypes = "#" */ + server = irc_server_alloc ("my_ircd"); + CHECK(server); + if (server->chantypes) + free (server->chantypes); + server->chantypes = strdup ("#"); + + /* empty channel */ + LONGS_EQUAL(0, irc_channel_is_channel (server, NULL)); + LONGS_EQUAL(0, irc_channel_is_channel (server, "")); + + /* not a channel */ + LONGS_EQUAL(0, irc_channel_is_channel (server, "abc")); + LONGS_EQUAL(0, irc_channel_is_channel (server, "/abc")); + LONGS_EQUAL(0, irc_channel_is_channel (server, ":abc")); + LONGS_EQUAL(0, irc_channel_is_channel (server, "&abc")); + LONGS_EQUAL(0, irc_channel_is_channel (server, "+abc")); + LONGS_EQUAL(0, irc_channel_is_channel (server, "!abc")); + + /* valid channel */ + LONGS_EQUAL(1, irc_channel_is_channel (server, "#abc")); + LONGS_EQUAL(1, irc_channel_is_channel (server, "##abc")); + + irc_server_free (server); +} -- cgit v1.2.3