Blame tests/field_regex_with_negation.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
export ln_opts='-oallowRegex'
Packit 1422b7
. $srcdir/exec.sh
Packit 1422b7
Packit 1422b7
test_def $0 "regex field with negation"
Packit 1422b7
add_rule 'rule=:%text:regex:[^,]+%,%more:rest%'
Packit 1422b7
execute '123,abc'
Packit 1422b7
assert_output_contains '"text": "123"'
Packit 1422b7
assert_output_contains '"more": "abc"'
Packit 1422b7
reset_rules
Packit 1422b7
add_rule 'rule=:%text:regex:([^ ,|]+( |\||,)?)+%%more:rest%'
Packit 1422b7
execute '123 abc|456 789,def|ghi,jkl| and some more text'
Packit 1422b7
assert_output_contains '"text": "123 abc|456 789,def|ghi,jkl|"'
Packit 1422b7
assert_output_contains '"more": " and some more text"'
Packit 1422b7
Packit 1422b7
Packit 1422b7
cleanup_tmp_files
Packit 1422b7