Blame tests/field_mac48_jsoncnf.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 'version=2'
|
|
Packit |
1422b7 |
add_rule 'rule=:%{"name":"field", "type":"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 |
|