generated from maxgfr/typescript-swc-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
context.test.ts
197 lines (177 loc) · 5.08 KB
/
context.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
import EventEmitter from 'events';
import { createSimpleContext, SimpleContext } from '..';
describe('SimpleContext', () => {
it('should create a context', () => {
const context = createSimpleContext();
expect(context).toBeInstanceOf(SimpleContext);
});
it('should get a value from a context', () => {
const context = createSimpleContext();
context.set('A', 10);
const res = context.get<number>('A');
expect(res).toBe(10);
});
it('should display value in order with fork', async () => {
const context = createSimpleContext();
const func = (): string => {
const foo = context.get('foo');
return `foo=${foo}`;
};
context.fork();
context.set('foo', 'bar');
const res = await Promise.all([
new Promise((resolve) => {
context.fork().set('foo', 'tata');
setTimeout(() => {
resolve(func());
}, 400);
}),
new Promise((resolve) => {
context.fork().set('foo', 'toto');
setTimeout(() => {
resolve(func());
}, 200);
}),
new Promise((resolve) => {
context.fork().set('foo', 'titi');
setTimeout(() => {
resolve(func());
}, 100);
}),
new Promise((resolve) => {
context.fork().set('foo', 'tutu');
setTimeout(() => {
resolve(func());
}, 600);
}),
]);
expect(res).toStrictEqual(['foo=tata', 'foo=toto', 'foo=titi', 'foo=tutu']);
});
it('should display value in order with multiple context', async () => {
const contextA = createSimpleContext();
const contextB = createSimpleContext();
const contextC = createSimpleContext();
const contextD = createSimpleContext();
const func = (context: SimpleContext): string => {
const foo = context.get('foo');
return `foo=${foo}`;
};
const res = await Promise.all([
new Promise((resolve) => {
contextA.set('foo', 'tata');
setTimeout(() => {
resolve(func(contextA));
}, 400);
}),
new Promise((resolve) => {
contextB.set('foo', 'toto');
setTimeout(() => {
resolve(func(contextB));
}, 200);
}),
new Promise((resolve) => {
contextC.set('foo', 'titi');
setTimeout(() => {
resolve(func(contextC));
}, 100);
}),
new Promise((resolve) => {
contextD.set('foo', 'tutu');
setTimeout(() => {
resolve(func(contextD));
}, 600);
}),
]);
expect(res).toStrictEqual(['foo=tata', 'foo=toto', 'foo=titi', 'foo=tutu']);
});
it('should display value in order with multiple value', async () => {
const context = createSimpleContext();
const func = (key: string): string => {
const foo = context.get(key);
return `foo=${foo}`;
};
const res = await Promise.all([
new Promise((resolve) => {
context.set('foo1', 'tata');
setTimeout(() => {
resolve(func('foo1'));
}, 400);
}),
new Promise((resolve) => {
context.set('foo2', 'toto');
setTimeout(() => {
resolve(func('foo2'));
}, 200);
}),
new Promise((resolve) => {
context.set('foo3', 'titi');
setTimeout(() => {
resolve(func('foo3'));
}, 100);
}),
new Promise((resolve) => {
context.set('foo4', 'tutu');
setTimeout(() => {
resolve(func('foo4'));
}, 600);
}),
]);
expect(res).toStrictEqual(['foo=tata', 'foo=toto', 'foo=titi', 'foo=tutu']);
});
it('should work if the values are wrapped in a callback run', async () => {
function Deferred() {
let resolve;
let reject;
const promise = new Promise((thisResolve, thisReject) => {
resolve = thisResolve;
reject = thisReject;
});
return Object.assign(promise, { resolve, reject });
}
const emitter = new EventEmitter();
const context = createSimpleContext();
const deferredTiti: any = Deferred();
const deferredToto: any = Deferred();
emitter.on('titi', () => {
context.fork(() => {
context.set('foo', 'titi2');
});
});
emitter.on('toto', () => {
context.fork(() => {
context.set('foo', 'toto2');
});
});
setTimeout(() => {
context.fork(() => {
context.set('foo', 'titi');
emitter.emit('titi');
setTimeout(() => {
deferredTiti.resolve(context.get('foo'));
}, 50);
});
}, 100);
setTimeout(() => {
context.fork(() => {
context.set('foo', 'toto');
emitter.emit('toto');
setTimeout(() => {
deferredToto.resolve(context.get('foo'));
}, 50);
});
}, 200);
expect([await deferredTiti, await deferredToto]).toStrictEqual([
'titi',
'toto',
]);
});
it('should return good value with the callback', async () => {
const context = createSimpleContext();
const string = context
.fork(() => {
return 'hello';
})
.toUpperCase();
expect(string).toBe('HELLO');
});
});