Blame tests/field_tokenized_with_regex.sh

Packit 1422b7
# added 2014-11-17 by singh.janmejay
Packit 1422b7
# This file is part of the liblognorm project, released under ASL 2.0
Packit 1422b7
Packit 1422b7
uname -a | grep "SunOS.*5.10"
Packit 1422b7
if [ $? -eq 0 ] ; then
Packit 1422b7
   echo platform: `uname -a`
Packit 1422b7
   echo This looks like solaris 10, we disable known-failing tests to
Packit 1422b7
   echo permit OpenCSW to build packages. However, this are real failurs
Packit 1422b7
   echo and so a fix should be done as soon as time permits.
Packit 1422b7
   exit 77
Packit 1422b7
fi
Packit 1422b7
Packit 1422b7
#test that tokenized disabled regex if parent context has it disabled
Packit 1422b7
. $srcdir/exec.sh
Packit 1422b7
Packit 1422b7
test_def $0 "tokenized field with regex based field"
Packit 1422b7
add_rule 'rule=:%parts:tokenized:,:regex:[^, ]+% %text:rest%'
Packit 1422b7
execute '123,abc,456,def foo bar'
Packit 1422b7
assert_output_contains '"unparsed-data": "123,abc,456,def foo bar"'
Packit 1422b7
assert_output_contains '"originalmsg": "123,abc,456,def foo bar"'
Packit 1422b7
Packit 1422b7
#and then enables it when parent context has it enabled
Packit 1422b7
export ln_opts='-oallowRegex'
Packit 1422b7
. $srcdir/exec.sh
Packit 1422b7
Packit 1422b7
test_def $0 "tokenized field with regex based field"
Packit 1422b7
add_rule 'rule=:%parts:tokenized:,:regex:[^, ]+% %text:rest%'
Packit 1422b7
execute '123,abc,456,def foo bar'
Packit 1422b7
assert_output_contains '"parts": [ "123", "abc", "456", "def" ]'
Packit 1422b7
assert_output_contains '"text": "foo bar"'
Packit 1422b7
Packit 1422b7
Packit 1422b7
cleanup_tmp_files
Packit 1422b7