mirror of
https://github.com/weechat/weechat.git
synced 2026-06-22 19:06:37 +02:00
cf6aca1619
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read
182 lines
4.9 KiB
C++
182 lines
4.9 KiB
C++
/*
|
|
* tests.cpp - run WeeChat tests
|
|
*
|
|
* Copyright (C) 2014-2016 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 <iostream>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
|
|
extern "C"
|
|
{
|
|
#ifndef HAVE_CONFIG_H
|
|
#define HAVE_CONFIG_H
|
|
#endif
|
|
#include "src/core/weechat.h"
|
|
#include "src/core/wee-hook.h"
|
|
#include "src/core/wee-input.h"
|
|
#include "src/core/wee-string.h"
|
|
#include "src/plugins/plugin.h"
|
|
#include "src/gui/gui-main.h"
|
|
#include "src/gui/gui-buffer.h"
|
|
|
|
extern void gui_main_init ();
|
|
extern void gui_main_loop ();
|
|
}
|
|
|
|
#include "CppUTest/CommandLineTestRunner.h"
|
|
|
|
/* import tests from libs */
|
|
IMPORT_TEST_GROUP(Plugins);
|
|
IMPORT_TEST_GROUP(Arraylist);
|
|
IMPORT_TEST_GROUP(Eval);
|
|
IMPORT_TEST_GROUP(Hashtable);
|
|
IMPORT_TEST_GROUP(Hdata);
|
|
IMPORT_TEST_GROUP(Infolist);
|
|
IMPORT_TEST_GROUP(List);
|
|
IMPORT_TEST_GROUP(String);
|
|
IMPORT_TEST_GROUP(Url);
|
|
IMPORT_TEST_GROUP(Utf8);
|
|
IMPORT_TEST_GROUP(Util);
|
|
|
|
|
|
/*
|
|
* Callback for any message displayed by WeeChat or a plugin.
|
|
*/
|
|
|
|
int
|
|
test_print_cb (const void *pointer, void *data, struct t_gui_buffer *buffer,
|
|
time_t date, int tags_count,
|
|
const char **tags, int displayed,
|
|
int highlight, const char *prefix,
|
|
const char *message)
|
|
{
|
|
/* make C++ compiler happy */
|
|
(void) pointer;
|
|
(void) data;
|
|
(void) buffer;
|
|
(void) date;
|
|
(void) tags_count;
|
|
(void) tags;
|
|
(void) displayed;
|
|
(void) highlight;
|
|
|
|
printf ("%s%s%s\n", /* with color: "\33[34m%s%s%s\33[0m\n" */
|
|
(prefix && prefix[0]) ? prefix : "",
|
|
(prefix && prefix[0]) ? " " : "",
|
|
(message && message[0]) ? message : "");
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* Initializes GUI for tests.
|
|
*/
|
|
|
|
void
|
|
test_gui_init ()
|
|
{
|
|
/*
|
|
* Catch all messages to display them directly on stdout
|
|
* (Curses library is not used for tests).
|
|
*/
|
|
hook_print (NULL, /* plugin */
|
|
NULL, /* buffer */
|
|
NULL, /* tags */
|
|
NULL, /* message */
|
|
1, /* strip colors */
|
|
&test_print_cb,
|
|
NULL,
|
|
NULL);
|
|
|
|
/*
|
|
* Call the function "gui_main_init" from Curses sources (all Curses
|
|
* calls are made with the fake ncurses library).
|
|
*/
|
|
gui_main_init ();
|
|
}
|
|
|
|
/*
|
|
* Runs tests in WeeChat environment.
|
|
*/
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
int rc, length, weechat_argc;
|
|
char *weechat_tests_args, *args, **weechat_argv;
|
|
|
|
/* setup environment: default language, no specific timezone */
|
|
setenv ("LC_ALL", "C", 1);
|
|
setenv ("TZ", "", 1);
|
|
|
|
/* build arguments for WeeChat */
|
|
weechat_tests_args = getenv ("WEECHAT_TESTS_ARGS");
|
|
length = strlen (argv[0]) +
|
|
64 + /* --dir ... */
|
|
((weechat_tests_args) ? 1 + strlen (weechat_tests_args) : 0) +
|
|
1;
|
|
args = (char *)malloc (length);
|
|
if (!args)
|
|
{
|
|
fprintf (stderr, "Memory error\n");
|
|
return 1;
|
|
}
|
|
snprintf (args, length,
|
|
"%s --dir ./tmp_weechat_test%s%s",
|
|
argv[0],
|
|
(weechat_tests_args) ? " " : "",
|
|
(weechat_tests_args) ? weechat_tests_args : "");
|
|
weechat_argv = string_split_shell (args, &weechat_argc);
|
|
printf ("WeeChat arguments: \"%s\"\n", args);
|
|
|
|
/* init WeeChat */
|
|
printf ("------------------------------------------------------------\n");
|
|
weechat_init (weechat_argc, weechat_argv, &test_gui_init);
|
|
if (weechat_argv)
|
|
string_free_split (weechat_argv);
|
|
free (args);
|
|
|
|
/* display WeeChat version */
|
|
input_data (gui_buffer_search_main (), "/command core version");
|
|
|
|
/* run all tests */
|
|
printf ("\n");
|
|
printf (">>>>>>>>>> TESTS >>>>>>>>>>\n");
|
|
rc = CommandLineTestRunner::RunAllTests (argc, argv);
|
|
printf ("<<<<<<<<<< TESTS <<<<<<<<<<\n");
|
|
printf ("\n");
|
|
|
|
/* end WeeChat */
|
|
weechat_end (&gui_main_end);
|
|
printf ("------------------------------------------------------------\n");
|
|
|
|
/* display status */
|
|
printf ("\n");
|
|
printf ("\33[%d;1m*** %s ***\33[0m\n",
|
|
(rc == 0) ? 32 : 31, /* 32 = green (OK), 31 = red (error) */
|
|
(rc == 0) ? "OK" : "ERROR");
|
|
|
|
return rc;
|
|
}
|