-
Notifications
You must be signed in to change notification settings - Fork 488
/
Copy pathengine-parallel-condition-cache.test.js
84 lines (75 loc) · 1.91 KB
/
engine-parallel-condition-cache.test.js
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
'use strict'
import engineFactory from '../src/index'
import sinon from 'sinon'
describe('Engine', () => {
let engine
let sandbox
before(() => {
sandbox = sinon.createSandbox()
})
afterEach(() => {
sandbox.restore()
})
const event = { type: 'early-twenties' }
const conditions = {
all: [{
fact: 'age',
operator: 'lessThanInclusive',
value: 25
}, {
fact: 'age',
operator: 'greaterThanInclusive',
value: 20
}, {
fact: 'age',
operator: 'notIn',
value: [21, 22]
}]
}
let eventSpy
let factSpy
function setup (factOptions) {
factSpy = sandbox.spy()
eventSpy = sandbox.spy()
const factDefinition = () => {
factSpy()
return 24
}
engine = engineFactory()
const rule = factories.rule({ conditions, event })
engine.addRule(rule)
engine.addFact('age', factDefinition, factOptions)
engine.on('success', eventSpy)
}
describe('1 rule with parallel conditions', () => {
it('calls the fact definition once for each condition if caching is off', async () => {
setup({ cache: false })
await engine.run()
expect(eventSpy).to.have.been.calledOnce()
expect(factSpy).to.have.been.calledThrice()
})
it('calls the fact definition once', async () => {
setup()
await engine.run()
expect(eventSpy).to.have.been.calledOnce()
expect(factSpy).to.have.been.calledOnce()
})
})
describe('2 rules with parallel conditions', () => {
it('calls the fact definition once', async () => {
setup()
const conditions = {
all: [{
fact: 'age',
operator: 'notIn',
value: [21, 22]
}]
}
const rule = factories.rule({ conditions, event })
engine.addRule(rule)
await engine.run()
expect(eventSpy).to.have.been.calledTwice()
expect(factSpy).to.have.been.calledOnce()
})
})
})