-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnestedRulesSample.ts
183 lines (171 loc) · 5 KB
/
nestedRulesSample.ts
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
import {Validator} from '../Validator';
import {ValidatorConfig} from '..';
let data = {
platform: '', // can be MOBILE or DESKTOP
os: '', // if platform is MOBILE, can be ANDROID, iOS or WINDOWS
// if platform is DESKTOP, can be WINDOWS or LINUX
programming_lang: '', // if os is ANDROID, can be Java or Kotlin
// if os is iOS it can be SWIFT or OBJECTIVE-C
// if platform is MOBILE and os is WINDOWS it can be C#
// if platform is DESKTOP and os is LINUX, it can be Java or C/C++
// if platform is DESKTOP and os is WIDNOWS, it can be Java, C/C++ or C#
};
const validatorConfig: ValidatorConfig = {
ruleSets: [
{
// This ruleset is always executed
fields: {
platform: [
{
// platform can be only MOBILE or DESKTOP
type: 'isIn',
values: 'MOBILE,DESKTOP',
},
],
},
},
{
// execute these rulesets if platform is 'MOBILE'
constraints: [
{
type: 'FIELD_VALUE',
path: 'platform',
value: 'MOBILE',
},
],
fields: {
os: [
{
// os can be only ANDROID, iOS or WINDOWS
type: 'isIn',
values: 'ANDROID,iOS,WINDOWS',
},
],
programming_lang: [
{
type: 'COMPOSITE',
algorithm: 'any',
subRules: [
{
type: 'COMPOSITE',
subRules: [
{
type: 'EXACT_VALUE',
path: 'os',
value: 'ANDROID',
},
{
type: 'isIn',
values: 'Java,Kotlin',
},
],
},
{
type: 'COMPOSITE',
subRules: [
{
type: 'EXACT_VALUE',
path: 'os',
value: 'iOS',
},
{
type: 'isIn',
values: 'SWIFT,OBJECTIVE-C',
},
],
},
{
type: 'COMPOSITE',
subRules: [
{
type: 'EXACT_VALUE',
path: 'os',
value: 'WINDOWS',
},
{
type: 'isIn',
values: 'C#',
},
],
},
],
},
],
},
},
{
constraints: [
{
type: 'FIELD_VALUE',
path: 'platform',
value: 'DESKTOP',
},
],
fields: {
os: [
{
// os can be only ANDROID, iOS or WINDOWS
type: 'isIn',
values: 'WINDOWS,LINUX',
},
],
programming_lang: [
{
type: 'COMPOSITE',
algorithm: 'any',
subRules: [
{
type: 'COMPOSITE',
subRules: [
{
type: 'EXACT_VALUE',
path: 'os',
value: 'WINDOWS',
},
{
type: 'isIn',
values: 'Java,C/C++,C#',
},
],
},
{
type: 'COMPOSITE',
subRules: [
{
type: 'EXACT_VALUE',
path: 'os',
value: 'LINUX',
},
{
type: 'isIn',
values: 'Java,C/C++',
},
],
},
],
},
],
},
},
],
};
const validator = new Validator(validatorConfig);
console.log('========================================');
console.log('DATA: ', data);
console.log('VALIDATION: ', validator.validate(data));
data = {...data, platform: 'DESKTOP', os: 'LINUX', programming_lang: 'Basic'}; // INVALID: programming_lang must be Java or C/C++
console.log('========================================');
console.log('DATA: ', data);
console.log('VALIDATION: ', validator.validate(data));
data = {...data, platform: 'DESKTOP', os: 'MACOS', programming_lang: 'Basic'}; // INVALID: os must be WINDOWS or LINUX
console.log('========================================');
console.log('DATA: ', data);
console.log('VALIDATION: ', validator.validate(data));
data = {...data, platform: 'MOBILE', os: 'iOS', programming_lang: 'Java'}; // INVALID programming_lang must be SWIFT or OBJECTIVE-C
console.log('========================================');
console.log('DATA: ', data);
console.log('VALIDATION: ', validator.validate(data));
data = {...data, platform: 'MOBILE', os: 'ANDROID', programming_lang: 'Java'}; // VALID
console.log('========================================');
console.log('DATA: ', data);
console.log('VALIDATION: ', validator.validate(data));