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

waitFor.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
import { interpret } from '../src/interpreter';import { createMachine } from '../src';import { waitFor } from '../src/waitFor';
describe('waitFor', () => { it('should wait for a condition to be true and return the emitted value', async () => { const machine = createMachine({ initial: 'a', states: { a: { on: { NEXT: 'b' } }, b: {} } });
const service = interpret(machine).start();
setTimeout(() => service.send('NEXT'), 10);
const state = await waitFor(service, (s) => s.matches('b'));
expect(state.value).toEqual('b'); });
it('should throw an error after a timeout', async () => { const machine = createMachine({ initial: 'a', states: { a: { on: { NEXT: 'b' } }, b: { on: { NEXT: 'c' } }, c: {} } });
const service = interpret(machine).start();
try { await waitFor(service, (state) => state.matches('c'), { timeout: 10 }); } catch (e) { expect(e).toBeInstanceOf(Error); } });
it('should not reject immediately when passing Infinity as timeout', async () => { const machine = createMachine({ initial: 'a', states: { a: { on: { NEXT: 'b' } }, b: { on: { NEXT: 'c' } }, c: {} } }); const service = interpret(machine).start(); const result = await Promise.race([ waitFor(service, (state) => state.matches('c'), { timeout: Infinity }), new Promise((res) => setTimeout(res, 10)).then(() => 'timeout') ]);
expect(result).toBe('timeout'); service.stop(); });
it('should throw an error when reaching a final state that does not match the predicate', async () => { const machine = createMachine({ initial: 'a', states: { a: { on: { NEXT: 'b' } }, b: { type: 'final' } } });
const service = interpret(machine).start();
setTimeout(() => { service.send('NEXT'); }, 10);
await expect( waitFor(service, (state) => state.matches('never')) ).rejects.toMatchInlineSnapshot( `[Error: Actor terminated without satisfying predicate]` ); });
it('should resolve correctly when the predicate immediately matches the current state', async () => { const machine = createMachine({ initial: 'a', states: { a: {} } });
const service = interpret(machine).start();
await expect( waitFor(service, (state) => state.matches('a')) ).resolves.toHaveProperty('value', 'a'); });
it('should internally unsubscribe when the predicate immediately matches the current state', async () => { let count = 0; const machine = createMachine({ initial: 'a', states: { a: { on: { NEXT: 'b' } }, b: {} } });
const service = interpret(machine).start();
await waitFor(service, (state) => { count++; return state.matches('a'); });
service.send({ type: 'NEXT' });
expect(count).toBe(1); });
it('should immediately resolve for an actor in its final state that matches the predicate', async () => { const machine = createMachine({ initial: 'a', states: { a: { on: { NEXT: 'b' } }, b: { type: 'final' } } });
const service = interpret(machine).start(); service.send({ type: 'NEXT' });
await expect( waitFor(service, (state) => state.matches('b')) ).resolves.toHaveProperty('value', 'b'); });
it('should immediately reject for an actor in its final state that does not match the predicate', async () => { const machine = createMachine({ initial: 'a', states: { a: { on: { NEXT: 'b' } }, b: { type: 'final' } } });
const service = interpret(machine).start(); service.send({ type: 'NEXT' });
await expect( waitFor(service, (state) => state.matches('a')) ).rejects.toMatchInlineSnapshot( `[Error: Actor terminated without satisfying predicate]` ); });});
xstate

Version Info

Tagged at
2 years ago