File: include_RULEBASES.sh

package info (click to toggle)
liblognorm 2.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,696 kB
  • sloc: ansic: 11,634; sh: 2,639; makefile: 255; python: 34
file content (26 lines) | stat: -rwxr-xr-x 637 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
# added 2015-08-28 by Rainer Gerhards
# This file is part of the liblognorm project, released under ASL 2.0
. $srcdir/exec.sh

test_def $0 "include (via LIBLOGNORM_RULEBASES directory)"
reset_rules
add_rule 'version=2'
add_rule 'include=inc.rulebase'

reset_rules inc
add_rule 'version=2' inc
add_rule 'rule=:%field:mac48%' inc

mv inc.rulebase /tmp

export LIBLOGNORM_RULEBASES=/tmp
execute 'f0:f6:1c:5f:cc:a2'
assert_output_json_eq '{"field": "f0:f6:1c:5f:cc:a2"}'

export LIBLOGNORM_RULEBASES=/tmp/
execute 'f0:f6:1c:5f:cc:a2'
assert_output_json_eq '{"field": "f0:f6:1c:5f:cc:a2"}'

rm /tmp/inc.rulebase
cleanup_tmp_files