Blame tests/field_mac48_v1.sh

Packit 1422b7
# added 2015-05-05 by Rainer Gerhards
Packit 1422b7
# This file is part of the liblognorm project, released under ASL 2.0
Packit 1422b7
. $srcdir/exec.sh
Packit 1422b7
Packit 1422b7
test_def $0 "dmac48 syntax"
Packit 1422b7
add_rule 'rule=:%field:mac48%'
Packit 1422b7
Packit 1422b7
execute 'f0:f6:1c:5f:cc:a2'
Packit 1422b7
assert_output_json_eq '{"field": "f0:f6:1c:5f:cc:a2"}'
Packit 1422b7
Packit 1422b7
execute 'f0-f6-1c-5f-cc-a2'
Packit 1422b7
assert_output_json_eq '{"field": "f0-f6-1c-5f-cc-a2"}'
Packit 1422b7
Packit 1422b7
# things that need to NOT match
Packit 1422b7
Packit 1422b7
execute 'f0-f6:1c:5f:cc-a2'
Packit 1422b7
assert_output_json_eq '{ "originalmsg": "f0-f6:1c:5f:cc-a2", "unparsed-data": "f0-f6:1c:5f:cc-a2" }'
Packit 1422b7
Packit 1422b7
execute 'f0:f6:1c:xf:cc:a2'
Packit 1422b7
assert_output_json_eq '{ "originalmsg": "f0:f6:1c:xf:cc:a2", "unparsed-data": "f0:f6:1c:xf:cc:a2" }'
Packit 1422b7
Packit 1422b7
Packit 1422b7
cleanup_tmp_files
Packit 1422b7