deno.land / x / xstate@xstate@4.33.6 / test / deterministic.test.ts

deterministic.test.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
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
import { Machine } from '../src/Machine';
describe('deterministic machine', () => { const pedestrianStates = { initial: 'walk', states: { walk: { on: { PED_COUNTDOWN: 'wait', TIMER: undefined // forbidden event } }, wait: { on: { PED_COUNTDOWN: 'stop', TIMER: undefined // forbidden event } }, stop: {} } };
const lightMachine = Machine({ key: 'light', initial: 'green', states: { green: { on: { TIMER: 'yellow', POWER_OUTAGE: 'red' } }, yellow: { on: { TIMER: 'red', POWER_OUTAGE: 'red' } }, red: { on: { TIMER: 'green', POWER_OUTAGE: 'red' }, ...pedestrianStates } } });
const testMachine = Machine({ key: 'test', initial: 'a', states: { a: { on: { T: 'b.b1', F: 'c' } }, b: { initial: 'b1', states: { b1: {} } }, c: {} } });
const deepMachine = Machine({ key: 'deep', initial: 'a', states: { a1: { initial: 'a2', states: { a2: { initial: 'a3', states: { a3: { initial: 'a4', states: { a4: {} } } } } } } } });
describe('machine.initialState', () => { it('should return the initial state value', () => { expect(lightMachine.initialState.value).toEqual('green'); });
it('should not have any history', () => { expect(lightMachine.initialState.history).not.toBeDefined(); }); });
describe('machine.transition()', () => { it('should properly transition states based on string event', () => { expect(lightMachine.transition('green', 'TIMER').value).toEqual('yellow'); });
it('should properly transition states based on event-like object', () => { const event = { type: 'TIMER' };
expect(lightMachine.transition('green', event).value).toEqual('yellow'); });
it('should not transition states for illegal transitions', () => { expect(lightMachine.transition('green', 'FAKE').value).toEqual('green'); expect(lightMachine.transition('green', 'FAKE').actions).toHaveLength(0); });
it('should throw an error if not given an event', () => { expect(() => lightMachine.transition('red', undefined as any)).toThrow(); });
it('should transition to nested states as target', () => { expect(testMachine.transition('a', 'T').value).toEqual({ b: 'b1' }); });
it('should throw an error for transitions from invalid states', () => { expect(() => testMachine.transition('fake', 'T')).toThrow(); });
xit('should throw an error for transitions to invalid states', () => { expect(() => testMachine.transition('a', 'F')).toThrow(); });
it('should throw an error for transitions from invalid substates', () => { expect(() => testMachine.transition('a.fake', 'T')).toThrow(); });
it('should use the machine.initialState when an undefined state is given', () => { expect(lightMachine.transition(undefined, 'TIMER').value).toEqual( 'yellow' ); });
it('should use the machine.initialState when an undefined state is given (unhandled event)', () => { expect(lightMachine.transition(undefined, 'TIMER').value).toEqual( 'yellow' ); }); });
describe('machine.transition() with nested states', () => { it('should properly transition a nested state', () => { expect( lightMachine.transition('red.walk', 'PED_COUNTDOWN').value ).toEqual({ red: 'wait' }); });
it('should transition from initial nested states', () => { expect(lightMachine.transition('red', 'PED_COUNTDOWN').value).toEqual({ red: 'wait' }); });
it('should transition from deep initial nested states', () => { expect(lightMachine.transition('red', 'PED_COUNTDOWN').value).toEqual({ red: 'wait' }); });
it('should bubble up events that nested states cannot handle', () => { expect(lightMachine.transition('red.stop', 'TIMER').value).toEqual( 'green' ); });
it('should not transition from illegal events', () => { expect(lightMachine.transition('red.walk', 'FAKE').value).toEqual({ red: 'walk' }); expect(lightMachine.transition('red.walk', 'FAKE').actions).toHaveLength( 0 );
expect(deepMachine.transition('a1', 'FAKE').value).toEqual({ a1: { a2: { a3: 'a4' } } }); expect(deepMachine.transition('a1', 'FAKE').actions).toHaveLength(0); });
it('should transition to the deepest initial state', () => { expect(lightMachine.transition('yellow', 'TIMER').value).toEqual({ red: 'walk' }); });
it('should return the equivalent state if no transition occurs', () => { const initialState = lightMachine.transition( lightMachine.initialState, 'NOTHING' ); const nextState = lightMachine.transition(initialState, 'NOTHING');
expect(initialState.value).toEqual(nextState.value); expect(nextState.changed).toBe(false); }); });
describe('machine.transition() with array `.on` configs', () => { it('should properly transition based on an event', () => { const machine = Machine({ initial: 'a', states: { a: { on: [{ event: 'NEXT', target: 'pass' }] }, pass: {} } }); expect(machine.transition('a', 'NEXT').value).toBe('pass'); }); });
describe('state key names', () => { const machine = Machine({ key: 'test', initial: 'test', states: { test: { activities: ['activity'], onEntry: ['onEntry'], on: { NEXT: 'test' }, onExit: ['onExit'] } } });
it('should work with substate nodes that have the same key', () => { expect(machine.transition(machine.initialState, 'NEXT').value).toEqual( 'test' ); }); });
describe('forbidden events', () => { it('undefined transitions should forbid events', () => { const walkState = lightMachine.transition('red.walk', 'TIMER');
expect(walkState.value).toEqual({ red: 'walk' }); }); });});
xstate

Version Info

Tagged at
2 years ago