forked from jruizgit/rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestsamples.py
751 lines (592 loc) · 24.8 KB
/
testsamples.py
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
from durable.lang import *
import threading
import datetime
with statechart('expense'):
with state('input'):
@to('denied')
@when_all((m.subject == 'approve') & (m.amount > 1000))
def denied(c):
print ('expense denied')
@to('pending')
@when_all((m.subject == 'approve') & (m.amount <= 1000))
def request(c):
print ('requesting expense approva')
with state('pending'):
@to('approved')
@when_all(m.subject == 'approved')
def approved(c):
print ('expense approved')
@to('denied')
@when_all(m.subject == 'denied')
def denied(c):
print ('expense denied')
state('denied')
state('approved')
with ruleset('animal'):
@when_all(c.first << (m.predicate == 'eats') & (m.object == 'flies'),
(m.predicate == 'lives') & (m.object == 'water') & (m.subject == c.first.subject))
def frog(c):
c.assert_fact({ 'subject': c.first.subject, 'predicate': 'is', 'object': 'frog' })
@when_all(c.first << (m.predicate == 'eats') & (m.object == 'flies'),
(m.predicate == 'lives') & (m.object == 'land') & (m.subject == c.first.subject))
def chameleon(c):
c.assert_fact({ 'subject': c.first.subject, 'predicate': 'is', 'object': 'chameleon' })
@when_all((m.predicate == 'eats') & (m.object == 'worms'))
def bird(c):
c.assert_fact({ 'subject': c.m.subject, 'predicate': 'is', 'object': 'bird' })
@when_all((m.predicate == 'is') & (m.object == 'frog'))
def green(c):
c.assert_fact({ 'subject': c.m.subject, 'predicate': 'is', 'object': 'green' })
@when_all((m.predicate == 'is') & (m.object == 'chameleon'))
def grey(c):
c.assert_fact({ 'subject': c.m.subject, 'predicate': 'is', 'object': 'grey' })
@when_all((m.predicate == 'is') & (m.object == 'bird'))
def black(c):
c.assert_fact({ 'subject': c.m.subject, 'predicate': 'is', 'object': 'black' })
@when_all(+m.subject)
def output(c):
print ('Fact: {0} {1} {2}'.format(c.m.subject, c.m.predicate, c.m.object))
@when_start
def start(host):
host.assert_fact('animal', { 'subject': 'Kermit', 'predicate': 'eats', 'object': 'flies' })
host.assert_fact('animal', { 'subject': 'Kermit', 'predicate': 'lives', 'object': 'water' })
host.assert_fact('animal', { 'subject': 'Greedy', 'predicate': 'eats', 'object': 'flies' })
host.assert_fact('animal', { 'subject': 'Greedy', 'predicate': 'lives', 'object': 'land' })
host.assert_fact('animal', { 'subject': 'Tweety', 'predicate': 'eats', 'object': 'worms' })
with ruleset('test'):
# antecedent
@when_all(m.subject == 'World')
def say_hello(c):
# consequent
print('Hello {0}'.format(c.m.subject))
# on ruleset start
@when_start
def start(host):
host.post('test', { 'subject': 'World' })
with ruleset('animal0'):
# will be triggered by 'Kermit eats flies'
@when_all((m.predicate == 'eats') & (m.object == 'flies'))
def frog(c):
c.assert_fact({ 'subject': c.m.subject, 'predicate': 'is', 'object': 'frog' })
@when_all((m.predicate == 'eats') & (m.object == 'worms'))
def bird(c):
c.assert_fact({ 'subject': c.m.subject, 'predicate': 'is', 'object': 'bird' })
# will be chained after asserting 'Kermit is frog'
@when_all((m.predicate == 'is') & (m.object == 'frog'))
def green(c):
c.assert_fact({ 'subject': c.m.subject, 'predicate': 'is', 'object': 'green' })
@when_all((m.predicate == 'is') & (m.object == 'bird'))
def black(c):
c.assert_fact({ 'subject': c.m.subject, 'predicate': 'is', 'object': 'black' })
@when_all(+m.subject)
def output(c):
print('Fact: {0} {1} {2}'.format(c.m.subject, c.m.predicate, c.m.object))
@when_start
def start(host):
host.assert_fact('animal0', { 'subject': 'Kermit', 'predicate': 'eats', 'object': 'flies' })
with ruleset('risk'):
@when_all(c.first << m.t == 'purchase',
c.second << m.location != c.first.location)
# the event pair will only be observed once
def fraud(c):
print('Fraud detected -> {0}, {1}'.format(c.first.location, c.second.location))
@when_start
def start(host):
# 'post' submits events, try 'assert' instead and to see differt behavior
host.post('risk', {'t': 'purchase', 'location': 'US'});
host.post('risk', {'t': 'purchase', 'location': 'CA'});
with ruleset('flow'):
# state condition uses 's'
@when_all(s.status == 'start')
def start(c):
# state update on 's'
c.s.status = 'next'
print('start')
@when_all(s.status == 'next')
def next(c):
c.s.status = 'last'
print('next')
@when_all(s.status == 'last')
def last(c):
c.s.status = 'end'
print('last')
# deletes state at the end
c.delete_state()
@when_start
def on_start(host):
# modifies default context state
host.patch_state('flow', { 'status': 'start' })
with ruleset('expense0'):
@when_all((m.subject == 'approve') | (m.subject == 'ok'))
def approved(c):
print ('Approved subject: {0}'.format(c.m.subject))
@when_start
def start(host):
host.post('expense0', { 'subject': 'approve'})
with ruleset('match'):
@when_all(m.url.matches('(https?://)?([0-9a-z.-]+)%.[a-z]{2,6}(/[A-z0-9_.-]+/?)*'))
def approved(c):
print ('match url ->{0}'.format(c.m.url))
@when_start
def start(host):
host.post('match', { 'url': 'https://github.com' })
host.post('match', { 'url': 'http://github.com/jruizgit/rul!es' })
host.post('match', { 'url': 'https://github.com/jruizgit/rules/reference.md' })
host.post('match', { 'url': '//rules'})
host.post('match', { 'url': 'https://github.c/jruizgit/rules' })
with ruleset('strings'):
@when_all(m.subject.matches('hello.*'))
def starts_with(c):
print ('string starts with hello -> {0}'.format(c.m.subject))
@when_all(m.subject.matches('.*hello'))
def ends_with(c):
print ('string ends with hello -> {0}'.format(c.m.subject))
@when_all(m.subject.imatches('.*hello.*'))
def contains(c):
print ('string contains hello (case insensitive) -> {0}'.format(c.m.subject))
@when_start
def start(host):
host.assert_fact('strings', { 'subject': 'HELLO world' })
host.assert_fact('strings', { 'subject': 'world hello' })
host.assert_fact('strings', { 'subject': 'hello hi' })
host.assert_fact('strings', { 'subject': 'has Hello string' })
host.assert_fact('strings', { 'subject': 'does not match' })
with ruleset('indistinct'):
@when_all(distinct(False),
c.first << m.amount > 10,
c.second << m.amount > c.first.amount * 2,
c.third << m.amount > (c.first.amount + c.second.amount) / 2)
def detected(c):
print('indistinct detected -> {0}'.format(c.first.amount))
print(' -> {0}'.format(c.second.amount))
print(' -> {0}'.format(c.third.amount))
@when_start
def start(host):
host.post('indistinct', { 'amount': 50 })
host.post('indistinct', { 'amount': 200 })
host.post('indistinct', { 'amount': 251 })
with ruleset('distinct'):
@when_all(c.first << m.amount > 10,
c.second << m.amount > c.first.amount * 2,
c.third << m.amount > (c.first.amount + c.second.amount) / 2)
def detected(c):
print('distinct detected -> {0}'.format(c.first.amount))
print(' -> {0}'.format(c.second.amount))
print(' -> {0}'.format(c.third.amount))
@when_start
def start(host):
host.post('distinct', { 'amount': 50 })
host.post('distinct', { 'amount': 200 })
host.post('distinct', { 'amount': 251 })
with ruleset('expense1'):
@when_any(all(c.first << m.subject == 'approve',
c.second << m.amount == 1000),
all(c.third << m.subject == 'jumbo',
c.fourth << m.amount == 10000))
def action(c):
if c.first:
print ('Approved {0} {1}'.format(c.first.subject, c.second.amount))
else:
print ('Approved {0} {1}'.format(c.third.subject, c.fourth.amount))
@when_start
def start(host):
host.post('expense1', { 'subject': 'approve' })
host.post('expense1', { 'amount': 1000 })
host.post('expense1', { 'subject': 'jumbo' })
host.post('expense1', { 'amount': 10000 })
with ruleset('risk1'):
@when_all(c.first << m.t == 'deposit',
none(m.t == 'balance'),
c.third << m.t == 'withrawal',
c.fourth << m.t == 'chargeback')
def detected(c):
print('fraud detected {0} {1} {2}'.format(c.first.t, c.third.t, c.fourth.t))
@when_start
def start(host):
host.post('risk1', { 't': 'deposit' })
host.post('risk1', { 't': 'withrawal' })
host.post('risk1', { 't': 'chargeback' })
with ruleset('attributes'):
@when_all(pri(3), m.amount < 300)
def first_detect(c):
print('attributes P3 ->{0}'.format(c.m.amount))
@when_all(pri(2), m.amount < 200)
def second_detect(c):
print('attributes P2 ->{0}'.format(c.m.amount))
@when_all(pri(1), m.amount < 100)
def third_detect(c):
print('attributes P1 ->{0}'.format(c.m.amount))
@when_start
def start(host):
host.assert_fact('attributes', { 'amount': 50 })
host.assert_fact('attributes', { 'amount': 150 })
host.assert_fact('attributes', { 'amount': 250 })
with ruleset('expense2'):
# this rule will trigger as soon as three events match the condition
@when_all(count(3), m.amount < 100)
def approve(c):
print('approved {0}'.format(c.m))
# this rule will be triggered when 'expense' is asserted batching at most two results
@when_all(cap(2),
c.expense << m.amount >= 100,
c.approval << m.review == True)
def reject(c):
print('rejected {0}'.format(c.m))
@when_start
def start(host):
host.post_batch('expense2', [{ 'amount': 10 },
{ 'amount': 20 },
{ 'amount': 100 },
{ 'amount': 30 },
{ 'amount': 200 },
{ 'amount': 400 }])
host.assert_fact('expense2', { 'review': True })
with ruleset('flow0'):
timer = None
def start_timer(time, callback):
timer = threading.Timer(time, callback)
timer.daemon = True
timer.start()
@when_all(s.state == 'first')
# async actions take a callback argument to signal completion
def first(c, complete):
def end_first():
c.s.state = 'second'
print('first completed')
# completes the action after 3 seconds
complete(None)
start_timer(3, end_first)
@when_all(s.state == 'second')
def second(c, complete):
def end_second():
c.s.state = 'third'
print('second completed')
# completes the action after 6 seconds
# use the first argument to signal an error
complete(Exception('error detected'))
start_timer(6, end_second)
# overrides the 5 second default abandon timeout
return 10
@when_start
def on_start(host):
host.patch_state('flow0', { 'state': 'first' })
with ruleset('flow1'):
@when_all(m.action == 'start')
def first(c):
raise Exception('Unhandled Exception!')
# when the exception property exists
@when_all(+s.exception)
def second(c):
print(c.s.exception)
c.s.exception = None
@when_start
def on_start(host):
host.post('flow1', { 'action': 'start' })
with ruleset('timer'):
# will trigger when MyTimer expires
@when_any(all(s.count == 0),
all(s.count < 5,
timeout('MyTimer')))
def pulse(c):
c.s.count += 1
# MyTimer will expire in 5 seconds
c.start_timer('MyTimer', 5)
print('pulse ->{0}'.format(datetime.datetime.now().strftime('%I:%M:%S%p')))
@when_all(m.cancel == True)
def cancel(c):
c.cancel_timer('MyTimer')
print('canceled timer')
@when_start
def on_start(host):
host.patch_state('timer', { 'count': 0 })
# curl -H "content-type: application/json" -X POST -d '{"cancel": true}' http://localhost:5000/timer/events
with statechart('risk3'):
with state('start'):
@to('meter')
def start(c):
c.start_timer('RiskTimer', 5)
with state('meter'):
@to('fraud')
@when_all(count(3), c.message << m.amount > 100)
def fraud(c):
for e in c.m:
print(e.message)
@to('exit')
@when_all(timeout('RiskTimer'))
def exit(c):
print('exit')
state('fraud')
state('exit')
@when_start
def on_start(host):
# three events in a row will trigger the fraud rule
host.post('risk3', { 'amount': 200 })
host.post('risk3', { 'amount': 300 })
host.post('risk3', { 'amount': 400 })
# two events will exit after 5 seconds
host.post('risk3', { 'sid': 1, 'amount': 500 })
host.post('risk3', { 'sid': 1, 'amount': 600 })
with statechart('risk4'):
with state('start'):
@to('meter')
def start(c):
c.start_timer('VelocityTimer', 5, True)
with state('meter'):
@to('meter')
@when_all(cap(5),
m.amount > 100,
timeout('VelocityTimer'))
def some_events(c):
print('velocity: {0} in 5 seconds'.format(len(c.m)))
# resets and restarts the manual reset timer
c.reset_timer('VelocityTimer')
c.start_timer('VelocityTimer', 5, True)
@to('meter')
@when_all(pri(1), timeout('VelocityTimer'))
def no_events(c):
print('velocity: no events in 5 seconds')
c.reset_timer('VelocityTimer')
c.start_timer('VelocityTimer', 5, True)
@when_start
def on_start(host):
# the velocity will be 4 events in 5 seconds
host.post('risk4', { 'amount': 200 })
host.post('risk4', { 'amount': 300 })
host.post('risk4', { 'amount': 50 })
host.post('risk4', { 'amount': 500 })
host.post('risk4', { 'amount': 600 })
# curl -H "content-type: application/json" -X POST -d '{"amount": 200}' http://localhost:5000/risk4/events
with statechart('expense3'):
# initial state 'input' with two triggers
with state('input'):
# trigger to move to 'denied' given a condition
@to('denied')
@when_all((m.subject == 'approve') & (m.amount > 1000))
# action executed before state change
def denied(c):
print ('denied amount {0}'.format(c.m.amount))
@to('pending')
@when_all((m.subject == 'approve') & (m.amount <= 1000))
def request(c):
print ('requesting approve amount {0}'.format(c.m.amount))
# intermediate state 'pending' with two triggers
with state('pending'):
@to('approved')
@when_all(m.subject == 'approved')
def approved(c):
print ('expense approved')
@to('denied')
@when_all(m.subject == 'denied')
def denied(c):
print ('expense denied')
# 'denied' and 'approved' are final states
state('denied')
state('approved')
@when_start
def on_start(host):
# events directed to default statechart instance
host.post('expense3', { 'subject': 'approve', 'amount': 100 });
host.post('expense3', { 'subject': 'approved' });
# events directed to statechart instance with id '1'
host.post('expense3', { 'sid': 1, 'subject': 'approve', 'amount': 100 });
host.post('expense3', { 'sid': 1, 'subject': 'denied' });
# events directed to statechart instance with id '2'
host.post('expense3', { 'sid': 2, 'subject': 'approve', 'amount': 10000 });
with flowchart('expense4'):
# initial stage 'input' has two conditions
with stage('input'):
to('request').when_all((m.subject == 'approve') & (m.amount <= 1000))
to('deny').when_all((m.subject == 'approve') & (m.amount > 1000))
# intermediate stage 'request' has an action and three conditions
with stage('request'):
@run
def request(c):
print('requesting approve')
to('approve').when_all(m.subject == 'approved')
to('deny').when_all(m.subject == 'denied')
# reflexive condition: if met, returns to the same stage
to('request').when_all(m.subject == 'retry')
with stage('approve'):
@run
def approved(c):
print('expense approved')
with stage('deny'):
@run
def denied(c):
print('expense denied')
@when_start
def start(host):
# events for the default flowchart instance, approved after retry
host.post('expense4', { 'subject': 'approve', 'amount': 100 })
host.post('expense4', { 'subject': 'retry' })
host.post('expense4', { 'subject': 'approved' })
# events for the flowchart instance '1', denied after first try
host.post('expense4', { 'sid': 1, 'subject': 'approve', 'amount': 100})
host.post('expense4', { 'sid': 1, 'subject': 'denied'})
# event for the flowchart instance '2' immediately denied
host.post('expense4', { 'sid': 2, 'subject': 'approve', 'amount': 10000})
with statechart('worker'):
# super-state 'work' has two states and one trigger
with state('work'):
# sub-sate 'enter' has only one trigger
with state('enter'):
@to('process')
@when_all(m.subject == 'enter')
def continue_process(c):
print('start process')
with state('process'):
@to('process')
@when_all(m.subject == 'continue')
def continue_process(c):
print('continue processing')
# the super-state trigger will be evaluated for all sub-state triggers
@to('canceled')
@when_all(m.subject == 'cancel')
def cancel(c):
print('cancel process')
state('canceled')
@when_start
def start(host):
# will move the statechart to the 'work.process' sub-state
host.post('worker', { 'subject': 'enter' })
# will keep the statechart to the 'work.process' sub-state
host.post('worker', { 'subject': 'continue' })
host.post('worker', { 'subject': 'continue' })
# will move the statechart out of the work state
host.post('worker', { 'subject': 'cancel' })
with ruleset('expense5'):
@when_all(c.bill << (m.t == 'bill') & (m.invoice.amount > 50),
c.account << (m.t == 'account') & (m.payment.invoice.amount == c.bill.invoice.amount))
def approved(c):
print ('bill amount ->{0}'.format(c.bill.invoice.amount))
print ('account payment amount ->{0}'.format(c.account.payment.invoice.amount))
@when_start
def start(host):
host.post('expense5', {'t': 'bill', 'invoice': {'amount': 100}})
host.post('expense5', {'t': 'account', 'payment': {'invoice': {'amount': 100}}})
with ruleset('bookstore'):
# this rule will trigger for events with status
@when_all(+m.status)
def event(c):
print('Reference {0} status {1}'.format(c.m.reference, c.m.status))
@when_all(+m.name)
def fact(c):
print('Added {0}'.format(c.m.name))
c.retract_fact({
'name': 'The new book',
'reference': '75323',
'price': 500,
'seller': 'bookstore'
})
# this rule will be triggered when the fact is retracted
@when_all(none(+m.name))
def empty(c):
print('No books')
@when_start
def start(host):
# will return 0 because the fact assert was successful
print(host.assert_fact('bookstore', {
'name': 'The new book',
'seller': 'bookstore',
'reference': '75323',
'price': 500
}))
# will return 212 because the fact has already been asserted
print(host.assert_fact('bookstore', {
'reference': '75323',
'name': 'The new book',
'price': 500,
'seller': 'bookstore'
}))
# will return 0 because a new event is being posted
print(host.post('bookstore', {
'reference': '75323',
'status': 'Active'
}))
# will return 0 because a new event is being posted
print(host.post('bookstore', {
'reference': '75323',
'status': 'Active'
}))
with ruleset('risk5'):
# compares properties in the same event, this expression is evaluated in the client
@when_all(m.debit > m.credit * 2)
def fraud_1(c):
print('debit {0} more than twice the credit {1}'.format(c.m.debit, c.m.credit))
# compares two correlated events, this expression is evaluated in the backend
@when_all(c.first << m.amount > 100,
c.second << m.amount > c.first.amount + m.amount / 2)
def fraud_2(c):
print('fraud detected ->{0}'.format(c.first.amount))
print('fraud detected ->{0}'.format(c.second.amount))
@when_start
def start(host):
host.post('risk5', { 'debit': 220, 'credit': 100 })
host.post('risk5', { 'debit': 150, 'credit': 100 })
host.post('risk5', { 'amount': 200 })
host.post('risk5', { 'amount': 500 })
with ruleset('risk6'):
# matching primitive array
@when_all(m.payments.allItems((item > 100) & (item < 400)))
def rule1(c):
print('should not match {0}'.format(c.m.payments))
# matching primitive array
@when_all(m.payments.allItems((item > 100) & (item < 500)))
def rule1(c):
print('fraud 1 detected {0}'.format(c.m.payments))
# matching object array
@when_all(m.payments.allItems((item.amount < 250) | (item.amount >= 300)))
def rule2(c):
print('fraud 2 detected {0}'.format(c.m.payments))
# pattern matching string array
@when_all(m.cards.anyItem(item.matches('three.*')))
def rule3(c):
print('fraud 3 detected {0}'.format(c.m.cards))
# matching nested arrays
@when_all(m.payments.anyItem(item.allItems(item < 100)))
def rule4(c):
print('fraud 4 detected {0}'.format(c.m.payments))
@when_all(m.payments.allItems(item > 100) & (m.cash == True))
def rule5(c):
print('fraud 5 detected {0}'.format(c.m.cash))
@when_all((m.field == 1) & m.payments.allItems(item.allItems((item > 100) & (item < 1000))))
def rule6(c):
print('fraud 6 detected {0}'.format(c.m.payments))
@when_all((m.field == 1) & m.payments.allItems(item.anyItem((item > 100) | (item < 50))))
def rule7(c):
print('fraud 7 detected {0}'.format(c.m.payments))
@when_all(m.payments.anyItem(-item.field1 & (item.field2 == 2)))
def rule8(c):
print('fraud 8 detected {0}'.format(c.m.payments))
@when_start
def start(host):
host.post('risk6', {'payments': [ 150, 300, 450 ]})
host.post('risk6', {'payments': [ { 'amount' : 200 }, { 'amount' : 300 }, { 'amount' : 450 } ]})
host.post('risk6', {'cards': [ 'one card', 'two cards', 'three cards' ]})
host.post('risk6', {'payments': [ [ 10, 20, 30 ], [ 30, 40, 50 ], [ 10, 20 ] ]})
host.post('risk6', {'payments': [ 150, 350, 600 ], 'cash': True })
host.post('risk6', {'field': 1, 'payments': [ [ 200, 300 ], [ 150, 200 ] ]})
host.post('risk6', {'field': 1, 'payments': [ [ 20, 180 ], [ 90, 190 ] ]})
host.post('risk6', {'payments': [ {'field2': 2 } ]})
host.post('risk6', {'payments': [ {'field2': 1 } ]})
host.post('risk6', {'payments': [ {'field1': 1, 'field2': 2} ]})
host.post('risk6', {'payments': [ {'field1': 1, 'field2': 1} ]})
# with ruleset('flow'):
# @when_all(m.status == 'start')
# def start(c):
# c.post({ 'status': 'next' })
# print('start')
# # the process will always exit here every time the action is run
# # when restarting the process this action will be retried after a few seconds
# @when_all(m.status == 'next')
# def next(c):
# c.post({ 'status': 'last' })
# print('next')
# os._exit(1)
# @when_all(m.status == 'last')
# def last(c):
# print('last')
# @when_start
# def on_start(host):
# host.post('flow', { 'status': 'start' })
run_all()