Welcome to mirror list, hosted at ThFree Co, Russian Federation.

zbx_eval_compose_expression.yaml « zbxserver « libs « tests - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2f021d5e975a5e86bdb4194426c757262d422eb (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
test case: Replace '{$U} -> 10'
in:
  rules: [ZBX_EVAL_PARSE_USERMACRO,ZBX_EVAL_COMPOSE_TRIGGER_EXPRESSION]
  expression: '1 + {$U}'
  replace: 
  - {token: '{$U}', value: 10}
out:
  expression: '1 + 10'
---
test case: Replace '{$U} -> xyz'
in:
  rules: [ZBX_EVAL_PARSE_USERMACRO,ZBX_EVAL_COMPOSE_TRIGGER_EXPRESSION]
  expression: '1 + {$U}'
  replace: 
  - {token: '{$U}', value: 'xyz'}
out:
  expression: '1 + "xyz"'
---
test case: Replace '{$U} -> x\y/z'
in:
  rules: [ZBX_EVAL_PARSE_USERMACRO,ZBX_EVAL_COMPOSE_TRIGGER_EXPRESSION]
  expression: '1 + {$U}'
  replace: 
  - {token: '{$U}', value: 'x\y/z'}
out:
  expression: '1 + "x\\y/z"'
---
test case: Replace '{$U} -> xyz'
in:
  rules: [ZBX_EVAL_PARSE_USERMACRO,ZBX_EVAL_PARSE_FUNCTION,ZBX_EVAL_COMPOSE_TRIGGER_EXPRESSION]
  expression: 'strlen({$U})'
  replace: 
  - {token: '{$U}', value: 'xyz'}
out:
  expression: 'strlen("xyz")'
---
test case: Replace '"{$U}" -> 123'
in:
  rules: [ZBX_EVAL_PARSE_USERMACRO,ZBX_EVAL_PARSE_FUNCTION,ZBX_EVAL_COMPOSE_TRIGGER_EXPRESSION]
  expression: 'strlen("{$U}")'
  replace: 
  - {token: '"{$U}"', value: '123'}
out:
  expression: 'strlen("123")'
---
test case: Replace '"{#LLD}" -> c:\data'
in:
  rules: [ZBX_EVAL_PARSE_FUNCTIONID,ZBX_EVAL_PARSE_USERMACRO,ZBX_EVAL_COMPOSE_LLD_EXPRESSION]
  expression: '{123} < {$LIMIT:"{#LLD}"}'
  replace: 
  - {token: '{$LIMIT:"{#LLD}"}', value: '{$LIMIT:"c:\\data"}'}
out:
  expression: '{123} < {$LIMIT:"c:\\data"}'
---
test case: Replace '"{$U}" -> 123'
in:
  rules: [ZBX_EVAL_PARSE_LLDMACRO,ZBX_EVAL_PARSE_FUNCTION,ZBX_EVAL_COMPOSE_LLD_EXPRESSION]
  expression: 'strlen({#U})'
  replace: 
  - {token: '{#U}', value: 'xyz'}
out:
  expression: 'strlen("xyz")'
...