Blame tests/field_tokenized.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
. $srcdir/exec.sh
Packit 1422b7
Packit 1422b7
test_def $0 "tokenized field"
Packit 1422b7
Packit 1422b7
add_rule 'rule=:%arr:tokenized: , :word% %more:rest%'
Packit 1422b7
execute '123 , abc , 456 , def ijk789'
Packit 1422b7
assert_output_contains '"arr": [ "123", "abc", "456", "def" ]'
Packit 1422b7
assert_output_contains '"more": "ijk789"'
Packit 1422b7
Packit 1422b7
reset_rules
Packit 1422b7
add_rule 'rule=:%ips:tokenized:, :ipv4% %text:rest%'
Packit 1422b7
execute '10.20.30.40, 50.60.70.80, 90.100.110.120 are blocked'
Packit 1422b7
assert_output_contains '"text": "are blocked"'
Packit 1422b7
assert_output_contains '"ips": [ "10.20.30.40", "50.60.70.80", "90.100.110.120" ]'
Packit 1422b7
Packit 1422b7
reset_rules
Packit 1422b7
add_rule 'rule=:comma separated list of colon separated list of # separated numbers: %some_nos:tokenized:, :tokenized: \x3a :tokenized:#:number%'
Packit 1422b7
execute 'comma separated list of colon separated list of # separated numbers: 10, 20 : 30#40#50 : 60#70#80, 90 : 100'
Packit 1422b7
assert_output_contains '"some_nos": [ [ [ "10" ] ], [ [ "20" ], [ "30", "40", "50" ], [ "60", "70", "80" ] ], [ [ "90" ], [ "100" ] ] ]'
Packit 1422b7
Packit 1422b7
reset_rules
Packit 1422b7
add_rule 'rule=:%arr:tokenized:\x3a:number% %more:rest%'
Packit 1422b7
execute '123:456:789 ijk789'
Packit 1422b7
assert_output_json_eq '{"arr": [ "123", "456", "789" ], "more": "ijk789"}'
Packit 1422b7
Packit 1422b7
Packit 1422b7
cleanup_tmp_files
Packit 1422b7