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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
|
/*
* test-logger-backlog.cpp - test logger backlog functions
*
* Copyright (C) 2022-2023 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 <stdio.h>
#include <string.h>
#include "src/core/wee-arraylist.h"
#include "src/core/wee-config.h"
#include "src/gui/gui-buffer.h"
#include "src/gui/gui-color.h"
#include "src/gui/gui-line.h"
#include "src/plugins/logger/logger-config.h"
extern void logger_backlog_display_line (struct t_gui_buffer *buffer,
const char *line);
extern struct t_arraylist *logger_backlog_group_messages (struct t_arraylist *lines);
}
TEST_GROUP(LoggerBacklog)
{
};
/*
* Tests functions:
* logger_backlog_display_line
*/
TEST(LoggerBacklog, DisplayLine)
{
char str_line[1024], string[1024];
struct t_gui_line *ptr_line;
struct t_gui_line_data *ptr_data;
ptr_line = gui_buffers->own_lines->last_line;
logger_backlog_display_line (gui_buffers, NULL);
POINTERS_EQUAL(ptr_line, gui_buffers->own_lines->last_line);
/* empty string */
logger_backlog_display_line (gui_buffers, "");
ptr_data = gui_buffers->own_lines->last_line->data;
CHECK(ptr_data->date != 1645288340);
CHECK(ptr_data->date == ptr_data->date_printed);
LONGS_EQUAL(3, ptr_data->tags_count);
STRCMP_EQUAL("no_highlight", ptr_data->tags_array[0]);
STRCMP_EQUAL("notify_none", ptr_data->tags_array[1]);
STRCMP_EQUAL("logger_backlog", ptr_data->tags_array[2]);
STRCMP_EQUAL("", ptr_data->prefix);
snprintf (string, sizeof (string),
"%s",
gui_color_get_custom (
gui_color_get_name (
CONFIG_COLOR(logger_config_color_backlog_line))));
STRCMP_EQUAL(string, ptr_data->message);
/* invalid date */
snprintf (str_line, sizeof (str_line),
"invalid date\tnick\tthe message");
logger_backlog_display_line (gui_buffers, str_line);
ptr_data = gui_buffers->own_lines->last_line->data;
CHECK(ptr_data->date != 1645288340);
CHECK(ptr_data->date == ptr_data->date_printed);
LONGS_EQUAL(3, ptr_data->tags_count);
STRCMP_EQUAL("no_highlight", ptr_data->tags_array[0]);
STRCMP_EQUAL("notify_none", ptr_data->tags_array[1]);
STRCMP_EQUAL("logger_backlog", ptr_data->tags_array[2]);
snprintf (string, sizeof (string),
"%sinvalid date",
gui_color_get_custom (
gui_color_get_name (
CONFIG_COLOR(logger_config_color_backlog_line))));
STRCMP_EQUAL(string, ptr_data->prefix);
snprintf (string, sizeof (string),
"%snick\tthe message",
gui_color_get_custom (
gui_color_get_name (
CONFIG_COLOR(logger_config_color_backlog_line))));
STRCMP_EQUAL(string, ptr_data->message);
/* valid line */
snprintf (str_line, sizeof (str_line),
"2022-02-19 16:32:20\tnick\tthe message");
logger_backlog_display_line (gui_buffers, str_line);
ptr_data = gui_buffers->own_lines->last_line->data;
LONGS_EQUAL(1645288340, ptr_data->date);
CHECK(ptr_data->date_printed > 1645288340);
LONGS_EQUAL(3, ptr_data->tags_count);
STRCMP_EQUAL("no_highlight", ptr_data->tags_array[0]);
STRCMP_EQUAL("notify_none", ptr_data->tags_array[1]);
STRCMP_EQUAL("logger_backlog", ptr_data->tags_array[2]);
snprintf (string, sizeof (string),
"%snick",
gui_color_get_custom (
gui_color_get_name (
CONFIG_COLOR(logger_config_color_backlog_line))));
STRCMP_EQUAL(string, ptr_data->prefix);
snprintf (string, sizeof (string),
"%sthe message",
gui_color_get_custom (
gui_color_get_name (
CONFIG_COLOR(logger_config_color_backlog_line))));
STRCMP_EQUAL(string, ptr_data->message);
/* valid line with Tab in message */
snprintf (str_line, sizeof (str_line),
"2022-02-19 16:32:21\tnick\tthe message\twith tab");
logger_backlog_display_line (gui_buffers, str_line);
ptr_data = gui_buffers->own_lines->last_line->data;
LONGS_EQUAL(1645288341, ptr_data->date);
CHECK(ptr_data->date_printed > 1645288341);
LONGS_EQUAL(3, ptr_data->tags_count);
STRCMP_EQUAL("no_highlight", ptr_data->tags_array[0]);
STRCMP_EQUAL("notify_none", ptr_data->tags_array[1]);
STRCMP_EQUAL("logger_backlog", ptr_data->tags_array[2]);
snprintf (string, sizeof (string),
"%snick",
gui_color_get_custom (
gui_color_get_name (
CONFIG_COLOR(logger_config_color_backlog_line))));
STRCMP_EQUAL(string, ptr_data->prefix);
snprintf (string, sizeof (string),
"%sthe message\twith tab",
gui_color_get_custom (
gui_color_get_name (
CONFIG_COLOR(logger_config_color_backlog_line))));
STRCMP_EQUAL(string, ptr_data->message);
}
/*
* Compares two messages in arraylist.
*/
int
test_logger_backlog_msg_cmp_cb (void *data,
struct t_arraylist *arraylist,
void *pointer1,
void *pointer2)
{
/* make C compiler happy */
(void) data;
(void) arraylist;
return strcmp ((const char *)pointer1, (const char *)pointer2);
}
/*
* Frees a message in arraylist.
*/
void
test_logger_backlog_msg_free_cb (void *data, struct t_arraylist *arraylist,
void *pointer)
{
/* make C compiler happy */
(void) data;
(void) arraylist;
free (pointer);
}
/*
* Tests functions:
* logger_backlog_msg_cmp_cb
* logger_backlog_msg_free_cb
* logger_backlog_group_messages
*/
TEST(LoggerBacklog, GroupMessages)
{
struct t_arraylist *lines, *messages;
const char *test_lines_1[] = {
"2023-06-04 21:15:34\t\tMessage 1",
"2023-06-04 21:15:40\t\tMessage 2",
NULL,
};
const char *test_lines_2[] = {
"end of line",
"2023-06-04 21:15:34\t\tFirst line",
"of multiline message",
"",
"end of message",
"2023-06-04 21:15:37\t\tTwo lines with empty line",
"",
"2023-06-04 21:15:40\t\tMessage on one line",
NULL,
};
int i;
POINTERS_EQUAL(NULL, logger_backlog_group_messages (NULL));
lines = arraylist_new (32, 0, 1,
&test_logger_backlog_msg_cmp_cb, NULL,
&test_logger_backlog_msg_free_cb, NULL);
for (i = 0; test_lines_1[i]; i++)
{
arraylist_add (lines, strdup (test_lines_1[i]));
}
messages = logger_backlog_group_messages (lines);
CHECK(messages);
LONGS_EQUAL(2, arraylist_size (messages));
STRCMP_EQUAL("2023-06-04 21:15:34\t\tMessage 1",
(const char *)arraylist_get (messages, 0));
STRCMP_EQUAL("2023-06-04 21:15:40\t\tMessage 2",
(const char *)arraylist_get (messages, 1));
arraylist_free (messages);
arraylist_clear (lines);
for (i = 0; test_lines_2[i]; i++)
{
arraylist_add (lines, strdup (test_lines_2[i]));
}
messages = logger_backlog_group_messages (lines);
CHECK(messages);
LONGS_EQUAL(4, arraylist_size (messages));
STRCMP_EQUAL("end of line",
(const char *)arraylist_get (messages, 0));
STRCMP_EQUAL("2023-06-04 21:15:34\t\tFirst line\n"
"of multiline message\n"
"\n"
"end of message",
(const char *)arraylist_get (messages, 1));
STRCMP_EQUAL("2023-06-04 21:15:37\t\tTwo lines with empty line\n",
(const char *)arraylist_get (messages, 2));
STRCMP_EQUAL("2023-06-04 21:15:40\t\tMessage on one line",
(const char *)arraylist_get (messages, 3));
arraylist_free (messages);
arraylist_free (lines);
}
/*
* Tests functions:
* logger_backlog_file
*/
TEST(LoggerBacklog, File)
{
/* TODO: write tests */
}
/*
* Tests functions:
* logger_backlog_signal_cb
*/
TEST(LoggerBacklog, SignalCb)
{
/* TODO: write tests */
}
|