-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappState.spec.js
190 lines (172 loc) · 5.34 KB
/
appState.spec.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
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
/* eslint-env mocha */
const should = require('should') // eslint-disable-line
const sinon = require('sinon')
const shouldSinon = require('should-sinon') // eslint-disable-line
describe('appState', () => {
it('handling undefined logger callback function', () => {
const appState = require('./appState')()
appState.reset()
appState.get().should.equal('INIT')
appState.running()
appState.get().should.equal('RUNNING')
})
it('handling logger callback function, logging changes', () => {
const loggerCB = sinon.spy()
const appState = require('./appState')(loggerCB)
appState.reset()
appState.init()
appState.running()
loggerCB.should.be.calledOnce()
// appState hasn't changed: called one
appState.running()
loggerCB.should.be.calledOnce()
})
it('changed: logged', () => {
const loggerCB = sinon.spy()
const appState = require('./appState')(loggerCB)
appState.reset()
appState.running()
loggerCB.should.be.calledOnce()
appState.stopped()
loggerCB.should.be.calledTwice()
})
it('is logging', () => {
sinon.spy(console, 'log')
const logger = {
info(appState, newAppState) {
console.log(`App state has changed from ${appState} to ${newAppState}`)
},
}
const appState = require('./appState')(logger.info)
appState.reset()
appState.running()
console.log.should.be.calledOnce()
console.log.should.be.calledWith('App state has changed from INIT to RUNNING')
console.log.restore()
})
it('is INIT', () => {
const appState = require('./appState')()
appState.reset()
appState.init()
appState.get().should.be.equal('INIT')
})
it('is RUNNING', () => {
const appState = require('./appState')()
appState.reset()
appState.running()
appState.get().should.be.equal('RUNNING')
})
it('is STOPPED', () => {
const appState = require('./appState')()
appState.reset()
appState.stopped()
appState.get().should.be.equal('STOPPED')
})
it('is ERROR', () => {
const appState = require('./appState')()
appState.reset()
appState.error()
appState.get().should.be.equal('ERROR')
})
it('isInit ok', () => {
const appState = require('./appState')()
appState.reset()
appState.init()
appState.isInit().should.be.true()
})
it('isRunning ok', () => {
const appState = require('./appState')()
appState.reset()
appState.running()
appState.isRunning().should.be.true()
})
it('isStopped ok', () => {
const appState = require('./appState')()
appState.reset()
appState.stopped()
appState.isStopped().should.be.true()
})
it('isError ok', () => {
const appState = require('./appState')()
appState.reset()
appState.error()
appState.isError().should.be.true()
})
it('list state values', () => {
const appState = require('./appState')()
appState.reset()
appState.error()
appState.list().should.be.eql({
INIT: 'INIT',
RUNNING: 'RUNNING',
STOPPED: 'STOPPED',
ERROR: 'ERROR',
FATAL: 'FATAL',
})
})
it('get state machine values', () => {
const appState = require('./appState')()
const state = appState.list()
appState.reset()
appState.error()
appState.getStateMachine().should.be.eql({
INIT: [state.INIT, state.RUNNING, state.STOPPED, state.ERROR, state.FATAL],
RUNNING: [state.INIT, state.RUNNING, state.STOPPED, state.ERROR, state.FATAL],
STOPPED: [state.INIT, state.RUNNING, state.STOPPED, state.ERROR, state.FATAL],
ERROR: [state.INIT, state.RUNNING, state.STOPPED, state.ERROR, state.FATAL],
FATAL: [state.FATAL],
})
})
it('invalid state change FATAL to INIT', () => {
const loggerCB = sinon.spy()
const appState = require('./appState')(loggerCB)
appState.reset()
appState.get().should.equal('INIT')
appState.running()
loggerCB.should.be.calledOnce()
appState.get().should.equal('RUNNING')
appState.fatal()
loggerCB.should.be.calledTwice()
appState.init()
loggerCB.should.be.calledTwice() // not called
})
it('invalid state change FATAL to RUNNING', () => {
const loggerCB = sinon.spy()
const appState = require('./appState')(loggerCB)
appState.reset()
appState.get().should.equal('INIT')
appState.running()
loggerCB.should.be.calledOnce()
appState.get().should.equal('RUNNING')
appState.fatal()
loggerCB.should.be.calledTwice()
appState.running()
loggerCB.should.be.calledTwice() // not called
})
it('invalid state change FATAL to STOPPED', () => {
const loggerCB = sinon.spy()
const appState = require('./appState')(loggerCB)
appState.reset()
appState.get().should.equal('INIT')
appState.running()
loggerCB.should.be.calledOnce()
appState.get().should.equal('RUNNING')
appState.fatal()
loggerCB.should.be.calledTwice()
appState.stopped()
loggerCB.should.be.calledTwice() // not called
})
it('invalid state change FATAL to ERROR', () => {
const loggerCB = sinon.spy()
const appState = require('./appState')(loggerCB)
appState.reset()
appState.get().should.equal('INIT')
appState.running()
loggerCB.should.be.calledOnce()
appState.get().should.equal('RUNNING')
appState.fatal()
loggerCB.should.be.calledTwice()
appState.error()
loggerCB.should.be.calledTwice() // not called
})
})