The following special sequences are not supported in regular expressions on FreeBSD: - "\w": replaced with "[a-zA-Z0-9_]" - "\S": replaced with "[^ ]" (it should be "[^ \t\n\r\f\v]", but in practice only spaces could be a problem when we use this sequence).
553 lines
20 KiB
C++
553 lines
20 KiB
C++
/*
|
|
* test-core-eval.cpp - test evaluation functions
|
|
*
|
|
* Copyright (C) 2014-2019 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "CppUTest/TestHarness.h"
|
|
|
|
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <regex.h>
|
|
#include "src/core/wee-eval.h"
|
|
#include "src/core/wee-config.h"
|
|
#include "src/core/wee-config-file.h"
|
|
#include "src/core/wee-hashtable.h"
|
|
#include "src/core/wee-string.h"
|
|
#include "src/core/wee-version.h"
|
|
#include "src/gui/gui-color.h"
|
|
#include "src/plugins/plugin.h"
|
|
}
|
|
|
|
#define WEE_CHECK_EVAL(__result, __expr) \
|
|
value = eval_expression (__expr, pointers, extra_vars, options); \
|
|
STRCMP_EQUAL(__result, value); \
|
|
free (value);
|
|
|
|
TEST_GROUP(CoreEval)
|
|
{
|
|
};
|
|
|
|
/*
|
|
* Tests functions:
|
|
* eval_is_true
|
|
*/
|
|
|
|
TEST(CoreEval, Boolean)
|
|
{
|
|
/* false */
|
|
LONGS_EQUAL(0, eval_is_true (NULL));
|
|
LONGS_EQUAL(0, eval_is_true (""));
|
|
LONGS_EQUAL(0, eval_is_true ("0"));
|
|
|
|
/* true */
|
|
LONGS_EQUAL(1, eval_is_true ("00"));
|
|
LONGS_EQUAL(1, eval_is_true ("1"));
|
|
LONGS_EQUAL(1, eval_is_true ("A"));
|
|
LONGS_EQUAL(1, eval_is_true ("abcdef"));
|
|
}
|
|
|
|
/*
|
|
* Tests functions:
|
|
* eval_expression (condition)
|
|
*/
|
|
|
|
TEST(CoreEval, EvalCondition)
|
|
{
|
|
struct t_hashtable *pointers, *extra_vars, *options;
|
|
char *value;
|
|
|
|
pointers = NULL;
|
|
|
|
extra_vars = hashtable_new (32,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
NULL, NULL);
|
|
CHECK(extra_vars);
|
|
hashtable_set (extra_vars, "test", "value");
|
|
|
|
options = hashtable_new (32,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
NULL, NULL);
|
|
CHECK(options);
|
|
hashtable_set (options, "type", "condition");
|
|
|
|
POINTERS_EQUAL(NULL, eval_expression (NULL, NULL, NULL, options));
|
|
|
|
/* conditions evaluated as false */
|
|
WEE_CHECK_EVAL("0", "");
|
|
WEE_CHECK_EVAL("0", "0");
|
|
WEE_CHECK_EVAL("0", "1 == 2");
|
|
WEE_CHECK_EVAL("0", "==1");
|
|
WEE_CHECK_EVAL("0", "1 >= 2");
|
|
WEE_CHECK_EVAL("0", "2 <= 1");
|
|
WEE_CHECK_EVAL("0", "2 != 2");
|
|
WEE_CHECK_EVAL("0", "18 < 5");
|
|
WEE_CHECK_EVAL("0", "5 > 18");
|
|
WEE_CHECK_EVAL("0", "18 < -5");
|
|
WEE_CHECK_EVAL("0", "-5 > 18");
|
|
WEE_CHECK_EVAL("0", "-18 > 5");
|
|
WEE_CHECK_EVAL("0", "5 < -18");
|
|
WEE_CHECK_EVAL("0", "18.2 < 5");
|
|
WEE_CHECK_EVAL("0", "5 > 18.2");
|
|
WEE_CHECK_EVAL("0", "18.2 < -5");
|
|
WEE_CHECK_EVAL("0", "-5 > 18.2");
|
|
WEE_CHECK_EVAL("0", "-18.2 > 5");
|
|
WEE_CHECK_EVAL("0", "5 < -18.2");
|
|
WEE_CHECK_EVAL("0", "2.3e-2 != 0.023");
|
|
WEE_CHECK_EVAL("0", "0xA3 < 2");
|
|
WEE_CHECK_EVAL("0", "-0xA3 > 2");
|
|
WEE_CHECK_EVAL("0", "1 == 5 > 18");
|
|
WEE_CHECK_EVAL("0", ">1");
|
|
WEE_CHECK_EVAL("0", "abc == def");
|
|
WEE_CHECK_EVAL("0", "()");
|
|
WEE_CHECK_EVAL("0", "(5 > 26)");
|
|
WEE_CHECK_EVAL("0", "((5 > 26))");
|
|
WEE_CHECK_EVAL("0", "(26 < 5)");
|
|
WEE_CHECK_EVAL("0", "abc > def");
|
|
WEE_CHECK_EVAL("0", "1 && 0");
|
|
WEE_CHECK_EVAL("0", "abc && 0");
|
|
WEE_CHECK_EVAL("0", "0 || 0");
|
|
WEE_CHECK_EVAL("0", "0 || 0 || 0");
|
|
WEE_CHECK_EVAL("0", "0 || 1 && 0");
|
|
WEE_CHECK_EVAL("0", "0 || (1 && 0)");
|
|
WEE_CHECK_EVAL("0", "0 || (0 || (1 && 0))");
|
|
WEE_CHECK_EVAL("0", "1 && (0 || 0)");
|
|
WEE_CHECK_EVAL("0", "(0 || 1) && 0");
|
|
WEE_CHECK_EVAL("0", "((0 || 1) && 1) && 0");
|
|
WEE_CHECK_EVAL("0", "abcd =~ (?-i)^ABC");
|
|
WEE_CHECK_EVAL("0", "abcd =~ \\(abcd\\)");
|
|
WEE_CHECK_EVAL("0", "=~abcd");
|
|
WEE_CHECK_EVAL("0", "(abcd) =~ \\(\\(abcd\\)\\)");
|
|
WEE_CHECK_EVAL("0", "abcd =* abce");
|
|
WEE_CHECK_EVAL("0", "abcd =* a*e");
|
|
WEE_CHECK_EVAL("0", "abcd !* *bc*");
|
|
WEE_CHECK_EVAL("0", "abcd !* *");
|
|
WEE_CHECK_EVAL("0", "${test} == test");
|
|
WEE_CHECK_EVAL("0", "${test2} == value2");
|
|
WEE_CHECK_EVAL("0", "${buffer.number} == 2");
|
|
WEE_CHECK_EVAL("0", "${window.buffer.number} == 2");
|
|
|
|
/* conditions evaluated as true */
|
|
WEE_CHECK_EVAL("1", "1");
|
|
WEE_CHECK_EVAL("1", "123");
|
|
WEE_CHECK_EVAL("1", "abc");
|
|
WEE_CHECK_EVAL("1", "2 == 2");
|
|
WEE_CHECK_EVAL("1", "==0");
|
|
WEE_CHECK_EVAL("1", "2 >= 1");
|
|
WEE_CHECK_EVAL("1", "1 <= 2");
|
|
WEE_CHECK_EVAL("1", "1 != 2");
|
|
WEE_CHECK_EVAL("1", "18 > 5");
|
|
WEE_CHECK_EVAL("1", "5 < 18");
|
|
WEE_CHECK_EVAL("1", "18 > -5");
|
|
WEE_CHECK_EVAL("1", "-5 < 18");
|
|
WEE_CHECK_EVAL("1", "-18 < 5");
|
|
WEE_CHECK_EVAL("1", "5 > -18");
|
|
WEE_CHECK_EVAL("1", "18.2 > 5");
|
|
WEE_CHECK_EVAL("1", "5 < 18.2");
|
|
WEE_CHECK_EVAL("1", "18.2 > -5");
|
|
WEE_CHECK_EVAL("1", "-5 < 18.2");
|
|
WEE_CHECK_EVAL("1", "-18.2 < 5");
|
|
WEE_CHECK_EVAL("1", "5 > -18.2");
|
|
WEE_CHECK_EVAL("1", "2.3e-2 == 0.023");
|
|
WEE_CHECK_EVAL("1", "0xA3 > 2");
|
|
WEE_CHECK_EVAL("1", "-0xA3 < 2");
|
|
WEE_CHECK_EVAL("1", "1 == 18 > 5");
|
|
WEE_CHECK_EVAL("1", "abc == abc");
|
|
WEE_CHECK_EVAL("1", "(26 > 5)");
|
|
WEE_CHECK_EVAL("1", "((26 > 5))");
|
|
WEE_CHECK_EVAL("1", "(5 < 26)");
|
|
WEE_CHECK_EVAL("1", "<1");
|
|
WEE_CHECK_EVAL("1", "def > abc");
|
|
WEE_CHECK_EVAL("1", "1 && 1");
|
|
WEE_CHECK_EVAL("1", "abc && 1");
|
|
WEE_CHECK_EVAL("1", "0 || 1");
|
|
WEE_CHECK_EVAL("1", "0 || 0 || 1");
|
|
WEE_CHECK_EVAL("1", "1 || 1 && 0");
|
|
WEE_CHECK_EVAL("1", "0 || (1 && 1)");
|
|
WEE_CHECK_EVAL("1", "0 || (0 || (1 && 1))");
|
|
WEE_CHECK_EVAL("1", "1 && (0 || 1)");
|
|
WEE_CHECK_EVAL("1", "(0 || 1) && 1");
|
|
WEE_CHECK_EVAL("1", "((0 || 1) && 1) && 1");
|
|
WEE_CHECK_EVAL("1", "abcd =~ ^ABC");
|
|
WEE_CHECK_EVAL("1", "abcd =~ (?-i)^abc");
|
|
WEE_CHECK_EVAL("1", "abcd=~abc");
|
|
WEE_CHECK_EVAL("1", "=~");
|
|
WEE_CHECK_EVAL("1", "abc=~");
|
|
WEE_CHECK_EVAL("1", "(abcd) =~ (abcd)");
|
|
WEE_CHECK_EVAL("1", "(abcd) =~ \\(abcd\\)");
|
|
WEE_CHECK_EVAL("1", "((abcd)) =~ \\(\\(abcd\\)\\)");
|
|
WEE_CHECK_EVAL("1", "abcd !* abce");
|
|
WEE_CHECK_EVAL("1", "abcd !* a*e");
|
|
WEE_CHECK_EVAL("1", "abcd =* *bc*");
|
|
WEE_CHECK_EVAL("1", "abcd =* *");
|
|
WEE_CHECK_EVAL("1", "${test} == value");
|
|
WEE_CHECK_EVAL("1", "${test2} ==");
|
|
WEE_CHECK_EVAL("1", "${buffer.number} == 1");
|
|
WEE_CHECK_EVAL("1", "${window.buffer.number} == 1");
|
|
|
|
/* evaluation of extra_vars */
|
|
hashtable_set (options, "extra", "eval");
|
|
hashtable_set (extra_vars, "test", "${buffer.number}");
|
|
WEE_CHECK_EVAL("1", "${test} == 1");
|
|
|
|
/* test with another prefix/suffix */
|
|
hashtable_set (options, "prefix", "%(");
|
|
WEE_CHECK_EVAL("0", "${buffer.number} == 1");
|
|
WEE_CHECK_EVAL("1", "%(buffer.number} == 1");
|
|
hashtable_set (options, "suffix", ")%");
|
|
WEE_CHECK_EVAL("0", "${buffer.number} == 1");
|
|
WEE_CHECK_EVAL("1", "%(buffer.number)% == 1");
|
|
|
|
hashtable_free (extra_vars);
|
|
hashtable_free (options);
|
|
}
|
|
|
|
/*
|
|
* Tests functions:
|
|
* eval_expression (expression)
|
|
*/
|
|
|
|
TEST(CoreEval, EvalExpression)
|
|
{
|
|
struct t_hashtable *pointers, *extra_vars, *options;
|
|
struct t_config_option *ptr_option;
|
|
char *value, str_value[256];
|
|
|
|
pointers = NULL;
|
|
|
|
extra_vars = hashtable_new (32,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
NULL, NULL);
|
|
CHECK(extra_vars);
|
|
hashtable_set (extra_vars, "test", "value");
|
|
|
|
options = NULL;
|
|
|
|
POINTERS_EQUAL(NULL, eval_expression (NULL, NULL, NULL, NULL));
|
|
|
|
/* test with simple strings */
|
|
WEE_CHECK_EVAL("", "");
|
|
WEE_CHECK_EVAL("a b c", "a b c");
|
|
WEE_CHECK_EVAL("$", "$");
|
|
WEE_CHECK_EVAL("", "${");
|
|
WEE_CHECK_EVAL("}", "}");
|
|
WEE_CHECK_EVAL("", "${}");
|
|
WEE_CHECK_EVAL("", "${xyz}");
|
|
|
|
/* test eval of substring */
|
|
WEE_CHECK_EVAL("\t", "${eval:${\\t}}");
|
|
|
|
/* test value from extra_vars */
|
|
WEE_CHECK_EVAL("value", "${test}");
|
|
|
|
/* test escaped chars */
|
|
WEE_CHECK_EVAL("\t", "${\\t}");
|
|
WEE_CHECK_EVAL("\t", "${esc:\t}");
|
|
|
|
/* test hidden chars */
|
|
WEE_CHECK_EVAL("********", "${hide:*,password}");
|
|
WEE_CHECK_EVAL("\u2603\u2603\u2603", "${hide:${esc:\u2603},abc}");
|
|
|
|
/* test cut of chars */
|
|
WEE_CHECK_EVAL("", "${cut:0,,}");
|
|
WEE_CHECK_EVAL("", "${cutscr:0,,}");
|
|
|
|
WEE_CHECK_EVAL("", "${cut:0,+,}");
|
|
WEE_CHECK_EVAL("", "${cutscr:0,+,}");
|
|
|
|
WEE_CHECK_EVAL("", "${cut:0,,test}");
|
|
WEE_CHECK_EVAL("", "${cutscr:0,,test}");
|
|
|
|
WEE_CHECK_EVAL("+", "${cut:0,+,test}");
|
|
WEE_CHECK_EVAL("+", "${cutscr:0,+,test}");
|
|
|
|
WEE_CHECK_EVAL("te", "${cut:2,,test}");
|
|
WEE_CHECK_EVAL("te", "${cutscr:2,,test}");
|
|
|
|
WEE_CHECK_EVAL("te+", "${cut:2,+,test}");
|
|
WEE_CHECK_EVAL("te+", "${cutscr:2,+,test}");
|
|
|
|
WEE_CHECK_EVAL("tes", "${cut:3,,test}");
|
|
WEE_CHECK_EVAL("tes", "${cutscr:3,,test}");
|
|
WEE_CHECK_EVAL("tes", "${cut:+3,,test}");
|
|
WEE_CHECK_EVAL("tes", "${cutscr:+3,,test}");
|
|
|
|
WEE_CHECK_EVAL("tes+", "${cut:3,+,test}");
|
|
WEE_CHECK_EVAL("tes+", "${cutscr:3,+,test}");
|
|
WEE_CHECK_EVAL("tes++", "${cut:3,++,test}");
|
|
WEE_CHECK_EVAL("tes++", "${cutscr:3,++,test}");
|
|
WEE_CHECK_EVAL("tes+++", "${cut:3,+++,test}");
|
|
WEE_CHECK_EVAL("tes+++", "${cutscr:3,+++,test}");
|
|
WEE_CHECK_EVAL("tes++++", "${cut:3,++++,test}");
|
|
WEE_CHECK_EVAL("tes++++", "${cutscr:3,++++,test}");
|
|
WEE_CHECK_EVAL("tes…", "${cut:3,…,test}");
|
|
WEE_CHECK_EVAL("tes…", "${cutscr:3,…,test}");
|
|
WEE_CHECK_EVAL("te+", "${cut:+3,+,test}");
|
|
WEE_CHECK_EVAL("te+", "${cutscr:+3,+,test}");
|
|
WEE_CHECK_EVAL("te…", "${cut:+3,…,test}");
|
|
WEE_CHECK_EVAL("te…", "${cutscr:+3,…,test}");
|
|
WEE_CHECK_EVAL("t++", "${cut:+3,++,test}");
|
|
WEE_CHECK_EVAL("t++", "${cutscr:+3,++,test}");
|
|
WEE_CHECK_EVAL("+++", "${cut:+3,+++,test}");
|
|
WEE_CHECK_EVAL("+++", "${cutscr:+3,+++,test}");
|
|
WEE_CHECK_EVAL("", "${cut:+3,++++,test}");
|
|
WEE_CHECK_EVAL("", "${cutscr:+3,++++,test}");
|
|
|
|
WEE_CHECK_EVAL("test", "${cut:4,,test}");
|
|
WEE_CHECK_EVAL("test", "${cutscr:4,,test}");
|
|
WEE_CHECK_EVAL("test", "${cut:+4,,test}");
|
|
WEE_CHECK_EVAL("test", "${cutscr:+4,,test}");
|
|
|
|
WEE_CHECK_EVAL("test", "${cut:4,+,test}");
|
|
WEE_CHECK_EVAL("test", "${cutscr:4,+,test}");
|
|
WEE_CHECK_EVAL("test", "${cut:+4,+,test}");
|
|
WEE_CHECK_EVAL("test", "${cutscr:+4,+,test}");
|
|
|
|
WEE_CHECK_EVAL("éà", "${cut:2,,éàô}");
|
|
WEE_CHECK_EVAL("éà", "${cutscr:2,,éàô}");
|
|
|
|
WEE_CHECK_EVAL("éà+", "${cut:2,+,éàô}");
|
|
WEE_CHECK_EVAL("éà+", "${cutscr:2,+,éàô}");
|
|
|
|
WEE_CHECK_EVAL("こ+", "${cut:1,+,こんにちは世界}");
|
|
WEE_CHECK_EVAL("+", "${cutscr:1,+,こんにちは世界}");
|
|
|
|
WEE_CHECK_EVAL("こん+", "${cut:2,+,こんにちは世界}");
|
|
WEE_CHECK_EVAL("こ+", "${cutscr:2,+,こんにちは世界}");
|
|
|
|
WEE_CHECK_EVAL("こんに+", "${cut:3,+,こんにちは世界}");
|
|
WEE_CHECK_EVAL("こ+", "${cutscr:3,+,こんにちは世界}");
|
|
|
|
WEE_CHECK_EVAL("こんにち+", "${cut:4,+,こんにちは世界}");
|
|
WEE_CHECK_EVAL("こん+", "${cutscr:4,+,こんにちは世界}");
|
|
|
|
WEE_CHECK_EVAL("こんにちは+", "${cut:5,+,こんにちは世界}");
|
|
WEE_CHECK_EVAL("こん+", "${cutscr:4,+,こんにちは世界}");
|
|
|
|
WEE_CHECK_EVAL("a+", "${cut:1,+,a${\\u0308}}");
|
|
WEE_CHECK_EVAL("a\u0308", "${cutscr:1,+,a${\\u0308}}");
|
|
|
|
/* test reverse of string */
|
|
WEE_CHECK_EVAL("!dlrow ,olleH", "${rev:Hello, world!}");
|
|
WEE_CHECK_EVAL("界世はちにんこ", "${rev:こんにちは世界}");
|
|
|
|
/* test repeat of string */
|
|
WEE_CHECK_EVAL("", "${repeat:-1,x}");
|
|
WEE_CHECK_EVAL("", "${repeat:0,x}");
|
|
WEE_CHECK_EVAL("x", "${repeat:1,x}");
|
|
WEE_CHECK_EVAL("xxxxx", "${repeat:5,x}");
|
|
WEE_CHECK_EVAL("cbacbacba", "${repeat:3,${rev:abc}}");
|
|
WEE_CHECK_EVAL("cbacba", "${repeat:${rev:20},${rev:abc}}");
|
|
|
|
/* test color */
|
|
WEE_CHECK_EVAL(gui_color_get_custom ("green"), "${color:green}");
|
|
WEE_CHECK_EVAL(gui_color_get_custom ("*214"), "${color:*214}");
|
|
snprintf (str_value, sizeof (str_value),
|
|
"%s-test-",
|
|
gui_color_from_option (config_color_chat_delimiters));
|
|
WEE_CHECK_EVAL(str_value, "${color:chat_delimiters}-test-");
|
|
config_file_search_with_string ("irc.color.message_join", NULL, NULL,
|
|
&ptr_option, NULL);
|
|
if (!ptr_option)
|
|
{
|
|
FAIL("ERROR: option irc.color.message_join not found.");
|
|
}
|
|
snprintf (str_value, sizeof (str_value),
|
|
"%s-test-", gui_color_from_option (ptr_option));
|
|
WEE_CHECK_EVAL(str_value, "${color:irc.color.message_join}-test-");
|
|
WEE_CHECK_EVAL("test", "${option.not.found}test");
|
|
|
|
/* test info */
|
|
WEE_CHECK_EVAL(version_get_version (), "${info:version}");
|
|
|
|
/* test date */
|
|
value = eval_expression ("${date}", pointers, extra_vars, options);
|
|
LONGS_EQUAL(19, strlen (value));
|
|
free (value);
|
|
value = eval_expression ("${date:%H:%M:%S}",
|
|
pointers, extra_vars, options);
|
|
LONGS_EQUAL(8, strlen (value));
|
|
free (value);
|
|
|
|
/* test ternary operator */
|
|
WEE_CHECK_EVAL("1", "${if:5>2}");
|
|
WEE_CHECK_EVAL("0", "${if:1>7}");
|
|
WEE_CHECK_EVAL("yes", "${if:5>2?yes:no}");
|
|
WEE_CHECK_EVAL("no", "${if:1>7?yes:no}");
|
|
WEE_CHECK_EVAL("yes", "${if:5>2 && 6>3?yes:no}");
|
|
WEE_CHECK_EVAL("yes-yes", "${if:5>2?${if:6>3?yes-yes:yes-no}:${if:9>4?no-yes:no-no}}");
|
|
WEE_CHECK_EVAL("yes-no", "${if:5>2?${if:1>7?yes-yes:yes-no}:${if:9>4?no-yes:no-no}}");
|
|
WEE_CHECK_EVAL("no-yes", "${if:1>7?${if:6>3?yes-yes:yes-no}:${if:9>4?no-yes:no-no}}");
|
|
WEE_CHECK_EVAL("no-no", "${if:1>7?${if:1>7?yes-yes:yes-no}:${if:1>7?no-yes:no-no}}");
|
|
WEE_CHECK_EVAL("0", "${if:0}");
|
|
WEE_CHECK_EVAL("1", "${if:1}");
|
|
WEE_CHECK_EVAL("0", "${if:abc!=abc}");
|
|
WEE_CHECK_EVAL("1", "${if:abc==abc}");
|
|
WEE_CHECK_EVAL("1", "${if:${if:abc==abc}}");
|
|
WEE_CHECK_EVAL("0", "${if:${rev:${if:42==42?hello:bye}}==eyb}");
|
|
WEE_CHECK_EVAL("1", "${if:${rev:${if:42==42?hello:bye}}==olleh}");
|
|
|
|
/* test option */
|
|
snprintf (str_value, sizeof (str_value),
|
|
"%d", CONFIG_INTEGER(config_look_scroll_amount));
|
|
WEE_CHECK_EVAL(str_value, "${weechat.look.scroll_amount}");
|
|
WEE_CHECK_EVAL(str_value, "${${window.buffer.name}.look.scroll_amount}");
|
|
|
|
/* test hdata */
|
|
WEE_CHECK_EVAL("x", "x${buffer.number");
|
|
WEE_CHECK_EVAL("x${buffer.number}1",
|
|
"x\\${buffer.number}${buffer.number}");
|
|
WEE_CHECK_EVAL("1", "${buffer.number}");
|
|
WEE_CHECK_EVAL("1", "${window.buffer.number}");
|
|
WEE_CHECK_EVAL("core.weechat", "${buffer.full_name}");
|
|
WEE_CHECK_EVAL("core.weechat", "${window.buffer.full_name}");
|
|
|
|
/* test with another prefix/suffix */
|
|
options = hashtable_new (32,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
NULL, NULL);
|
|
CHECK(options);
|
|
hashtable_set (options, "prefix", "<<<");
|
|
WEE_CHECK_EVAL("${info:version}", "${info:version}");
|
|
WEE_CHECK_EVAL("<info:version}", "<info:version}");
|
|
WEE_CHECK_EVAL("<<info:version}", "<<info:version}");
|
|
WEE_CHECK_EVAL(version_get_version (), "<<<info:version}");
|
|
WEE_CHECK_EVAL("1", "<<<buffer.number}");
|
|
hashtable_set (options, "suffix", ">>>");
|
|
WEE_CHECK_EVAL("${info:version}", "${info:version}");
|
|
WEE_CHECK_EVAL("<info:version>", "<info:version>");
|
|
WEE_CHECK_EVAL("<<info:version>>", "<<info:version>>");
|
|
WEE_CHECK_EVAL(version_get_version (), "<<<info:version>>>");
|
|
WEE_CHECK_EVAL("1", "<<<buffer.number>>>");
|
|
|
|
hashtable_free (extra_vars);
|
|
hashtable_free (options);
|
|
}
|
|
|
|
/*
|
|
* Tests functions:
|
|
* eval_expression (replace with regex)
|
|
*/
|
|
|
|
TEST(CoreEval, EvalReplaceRegex)
|
|
{
|
|
struct t_hashtable *pointers, *extra_vars, *options;
|
|
char *value;
|
|
regex_t regex;
|
|
|
|
pointers = hashtable_new (32,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_POINTER,
|
|
NULL, NULL);
|
|
CHECK(pointers);
|
|
|
|
extra_vars = hashtable_new (32,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
NULL, NULL);
|
|
CHECK(extra_vars);
|
|
hashtable_set (extra_vars, "test", "value");
|
|
|
|
options = hashtable_new (32,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
NULL, NULL);
|
|
CHECK(options);
|
|
|
|
/* replace regex by empty string (on empty string) */
|
|
hashtable_remove (pointers, "regex");
|
|
hashtable_set (options, "regex", ".*");
|
|
hashtable_set (options, "regex_replace", "");
|
|
WEE_CHECK_EVAL("", "");
|
|
|
|
/* replace regex (on empty string) */
|
|
hashtable_remove (pointers, "regex");
|
|
hashtable_set (options, "regex", ".*");
|
|
hashtable_set (options, "regex_replace", "test");
|
|
WEE_CHECK_EVAL("test", "");
|
|
|
|
/* replace regex by empty string */
|
|
hashtable_remove (pointers, "regex");
|
|
hashtable_set (options, "regex", ".*");
|
|
hashtable_set (options, "regex_replace", "");
|
|
WEE_CHECK_EVAL("", "test");
|
|
|
|
/* replace empty regex */
|
|
hashtable_remove (pointers, "regex");
|
|
hashtable_set (options, "regex", "");
|
|
hashtable_set (options, "regex_replace", "abc");
|
|
WEE_CHECK_EVAL("test", "test");
|
|
|
|
/* replace empty regex by empty string */
|
|
hashtable_remove (pointers, "regex");
|
|
hashtable_set (options, "regex", "");
|
|
hashtable_set (options, "regex_replace", "");
|
|
WEE_CHECK_EVAL("test", "test");
|
|
|
|
/* add brackets around URLs (regex as string) */
|
|
hashtable_remove (pointers, "regex");
|
|
hashtable_set (options, "regex", "[a-zA-Z0-9_]+://[^ ]+");
|
|
hashtable_set (options, "regex_replace", "[ ${re:0} ]");
|
|
WEE_CHECK_EVAL("test: [ https://weechat.org/ ]",
|
|
"test: https://weechat.org/");
|
|
|
|
/* add brackets around URLs (compiled regex) */
|
|
LONGS_EQUAL(0, string_regcomp (®ex, "[a-zA-Z0-9_]+://[^ ]+",
|
|
REG_EXTENDED | REG_ICASE));
|
|
hashtable_set (pointers, "regex", ®ex);
|
|
hashtable_remove (options, "regex");
|
|
hashtable_set (options, "regex_replace", "[ ${re:0} ]");
|
|
WEE_CHECK_EVAL("test: [ https://weechat.org/ ]",
|
|
"test: https://weechat.org/");
|
|
regfree (®ex);
|
|
|
|
/* hide passwords (regex as string) */
|
|
hashtable_remove (pointers, "regex");
|
|
hashtable_set (options, "regex", "(password=)([^ ]+)");
|
|
hashtable_set (options, "regex_replace", "${re:1}${hide:*,${re:2}}");
|
|
WEE_CHECK_EVAL("password=*** password=***",
|
|
"password=abc password=def");
|
|
|
|
/* hide passwords (compiled regex) */
|
|
LONGS_EQUAL(0, string_regcomp (®ex, "(password=)([^ ]+)",
|
|
REG_EXTENDED | REG_ICASE));
|
|
hashtable_set (pointers, "regex", ®ex);
|
|
hashtable_remove (options, "regex");
|
|
hashtable_set (options, "regex_replace", "${re:1}${hide:*,${re:2}}");
|
|
WEE_CHECK_EVAL("password=*** password=***",
|
|
"password=abc password=def");
|
|
regfree (®ex);
|
|
|
|
/* regex groups */
|
|
hashtable_remove (pointers, "regex");
|
|
hashtable_set (options, "regex", "([a-z]+) ([a-z]+) ([a-z]+) ([a-z]+)");
|
|
hashtable_set (options, "regex_replace",
|
|
"${re:0} -- ${re:1} ${re:+} (${re:#})");
|
|
WEE_CHECK_EVAL("abc def ghi jkl -- abc jkl (4)", "abc def ghi jkl");
|
|
|
|
hashtable_free (pointers);
|
|
hashtable_free (extra_vars);
|
|
hashtable_free (options);
|
|
}
|