-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathuse.test.jsx
More file actions
210 lines (177 loc) · 4.2 KB
/
use.test.jsx
File metadata and controls
210 lines (177 loc) · 4.2 KB
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
import { setupScratch, teardown } from '../../../test/_util/helpers';
import { setupRerender } from 'preact/test-utils';
import { createElement, render, createContext } from 'preact';
import { Suspense } from 'preact/compat';
import { use, useErrorBoundary } from 'preact/hooks';
describe('use(promise)', () => {
/** @type {HTMLDivElement} */
let scratch;
/** @type {() => void} */
let rerender;
beforeEach(() => {
scratch = setupScratch();
rerender = setupRerender();
});
afterEach(() => {
teardown(scratch);
});
it('suspends on pending and renders fallback, then shows resolved data', async () => {
/** @type {(v: string) => void} */
let resolve;
const p = new Promise((res, _rej) => {
resolve = v => res(v);
});
function Data() {
const val = use(p);
return <div>Data: {val}</div>;
}
render(
<Suspense fallback={<div>Loading</div>}>
<Data />
</Suspense>,
scratch
);
// Initial render followed by rerender to reflect fallback during suspension
rerender();
expect(scratch.innerHTML).to.equal('<div>Loading</div>');
resolve('hello');
await p;
rerender();
expect(scratch.innerHTML).to.equal('<div>Data: hello</div>');
});
it('renders two components using same promise and updates both on resolve', async () => {
/** @type {(v: string) => void} */
let resolve;
const p = new Promise((res, _rej) => {
resolve = v => res(v);
});
function A() {
const val = use(p);
return <div>A: {val}</div>;
}
function B() {
const val = use(p);
return <div>B: {val}</div>;
}
render(
<Suspense fallback={<div>Loading</div>}>
<A />
<B />
</Suspense>,
scratch
);
rerender();
expect(scratch.innerHTML).to.equal('<div>Loading</div>');
resolve('x');
await p;
rerender();
expect(scratch.innerHTML).to.equal('<div>A: x</div><div>B: x</div>');
});
it('propagates rejection to error boundary after suspension', async () => {
/** @type {() => void} */
let reject;
const p = new Promise((res, rej) => {
reject = () => rej(new Error('boom'));
});
p.catch(() => {});
function Catcher(props) {
const [err] = useErrorBoundary();
return err ? <div>Caught: {err.message}</div> : props.children;
}
function Data() {
const val = use(p);
return <div>Data: {val}</div>;
}
render(
<Suspense fallback={<div>Loading</div>}>
<Catcher>
<Data />
</Catcher>
</Suspense>,
scratch
);
await new Promise(resolve => setTimeout(resolve, 0));
rerender();
expect(scratch.innerHTML).to.equal('<div>Loading</div>');
reject();
await new Promise(resolve => setTimeout(resolve, 0));
rerender();
expect(scratch.innerHTML).to.equal('<div>Caught: boom</div>');
});
});
describe('use(context)', () => {
/** @type {HTMLDivElement} */
let scratch;
beforeEach(() => {
scratch = setupScratch();
});
afterEach(() => {
teardown(scratch);
});
it('gets values from context via use(Context)', () => {
const values = [];
const Ctx = createContext(13);
function Comp() {
const value = use(Ctx);
values.push(value);
return null;
}
render(<Comp />, scratch);
render(
<Ctx.Provider value={42}>
<Comp />
</Ctx.Provider>,
scratch
);
render(
<Ctx.Provider value={69}>
<Comp />
</Ctx.Provider>,
scratch
);
expect(values).to.deep.equal([13, 42, 69]);
});
it('uses default value when no provider is present', () => {
const Foo = createContext(42);
let read;
function App() {
read = use(Foo);
return <div />;
}
render(<App />, scratch);
expect(read).to.equal(42);
});
it('supports multiple contexts via use(Context)', () => {
const Foo = createContext(0);
const Bar = createContext(10);
/** @type {Array<[number, number]>} */
const reads = [];
function Comp() {
const foo = use(Foo);
const bar = use(Bar);
reads.push([foo, bar]);
return <div />;
}
render(
<Foo.Provider value={0}>
<Bar.Provider value={10}>
<Comp />
</Bar.Provider>
</Foo.Provider>,
scratch
);
expect(reads).to.deep.equal([[0, 10]]);
render(
<Foo.Provider value={11}>
<Bar.Provider value={42}>
<Comp />
</Bar.Provider>
</Foo.Provider>,
scratch
);
expect(reads).to.deep.equal([
[0, 10],
[11, 42]
]);
});
});