1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
* test-eval.cpp - test evaluation functions
*
* Copyright (C) 2018 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/core/wee-string.h"
#include "src/gui/gui-line.h"
}
#define WEE_LINE_MATCH_TAGS(__result, __line_tags, __tags) \
gui_line_tags_alloc (&line_data, __line_tags); \
tags_array = string_split_tags (__tags, &tags_count); \
LONGS_EQUAL(__result, gui_line_match_tags (&line_data, tags_count, \
tags_array)); \
gui_line_tags_free (&line_data); \
string_free_split_tags (tags_array);
TEST_GROUP(GuiLine)
{
};
/*
* Tests functions:
* gui_line_match_tags
*/
TEST(GuiLine, LineMatchTags)
{
struct t_gui_line_data line_data;
char ***tags_array;
int tags_count;
/* line without tags */
WEE_LINE_MATCH_TAGS(0, NULL, NULL);
WEE_LINE_MATCH_TAGS(0, NULL, "irc_join");
WEE_LINE_MATCH_TAGS(0, NULL, "!*");
WEE_LINE_MATCH_TAGS(1, NULL, "!irc_join");
WEE_LINE_MATCH_TAGS(1, NULL, "*");
/* line with one tag */
WEE_LINE_MATCH_TAGS(0, "irc_join", NULL);
WEE_LINE_MATCH_TAGS(0, "irc_join", "irc_quit");
WEE_LINE_MATCH_TAGS(0, "irc_join", "!*");
WEE_LINE_MATCH_TAGS(1, "irc_join", "irc_join,irc_quit");
WEE_LINE_MATCH_TAGS(1, "irc_join", "*");
WEE_LINE_MATCH_TAGS(1, "irc_join", "irc_quit,*");
/* line with two tags */
WEE_LINE_MATCH_TAGS(0, "irc_join,nick_test", NULL);
WEE_LINE_MATCH_TAGS(0, "irc_join,nick_test", "irc_quit");
WEE_LINE_MATCH_TAGS(0, "irc_join,nick_test", "irc_part,irc_quit");
WEE_LINE_MATCH_TAGS(0, "irc_join,nick_test", "irc_join+nick_xxx,irc_quit");
WEE_LINE_MATCH_TAGS(0, "irc_join,nick_test", "!irc_join,!irc_quit");
WEE_LINE_MATCH_TAGS(1, "irc_join,nick_test", "*");
WEE_LINE_MATCH_TAGS(1, "irc_join,nick_test", "irc_quit,*");
WEE_LINE_MATCH_TAGS(1, "irc_join,nick_test", "!irc_quit");
WEE_LINE_MATCH_TAGS(1, "irc_join,nick_test", "irc_join+nick_test,irc_quit");
WEE_LINE_MATCH_TAGS(1, "irc_join,nick_test", "nick_test,irc_quit");
WEE_LINE_MATCH_TAGS(1, "irc_join,nick_test", "!irc_quit,!irc_302,!irc_notice");
WEE_LINE_MATCH_TAGS(1, "irc_join,nick_test", "!irc_quit+!irc_302+!irc_notice");
}
|