-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathhooks.harness.tsx
More file actions
278 lines (233 loc) · 6.89 KB
/
hooks.harness.tsx
File metadata and controls
278 lines (233 loc) · 6.89 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
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
import {
describe,
it,
expect,
render,
waitFor,
cleanup,
} from 'react-native-harness';
import { useEffect, useMemo } from 'react';
import { Text, View } from 'react-native';
import {
RiveFileFactory,
useRiveFile,
useRiveNumber,
useRiveString,
useViewModelInstance,
type RiveFile,
} from '@rive-app/react-native';
import type { ViewModelInstance } from '@rive-app/react-native';
const QUICK_START = require('../assets/rive/quick_start.riv');
const DATABINDING = require('../assets/rive/databinding.riv');
const FONT_FALLBACK = require('../assets/rive/font_fallback.riv');
type UseRiveNumberContext = {
value: number | undefined;
error: Error | null;
setValue: ((v: number) => void) | null;
};
function createUseRiveNumberContext(): UseRiveNumberContext {
return { value: undefined, error: null, setValue: null };
}
type UseViewModelInstanceContext = {
instance: ViewModelInstance | null;
age: number | undefined;
};
function createUseViewModelInstanceContext(): UseViewModelInstanceContext {
return { instance: null, age: undefined };
}
function UseRiveNumberTestComponent({
instance,
context,
}: {
instance: ViewModelInstance;
context: UseRiveNumberContext;
}) {
const { value, setValue, error } = useRiveNumber('health', instance);
useEffect(() => {
context.value = value;
context.error = error;
context.setValue = setValue;
}, [context, value, error, setValue]);
return (
<View>
<Text testID="value">{String(value)}</Text>
</View>
);
}
function UseViewModelInstanceTestComponent({
file,
context,
}: {
file: RiveFile;
context: UseViewModelInstanceContext;
}) {
const instance = useViewModelInstance(file);
const age = useMemo(() => {
if (!instance) return undefined;
return instance.numberProperty('age')?.value;
}, [instance]);
useEffect(() => {
context.instance = instance;
context.age = age;
}, [context, instance, age]);
return (
<View>
<Text>
instance={String(!!instance)} age={String(age)}
</Text>
</View>
);
}
function expectDefined<T>(value: T): asserts value is NonNullable<T> {
expect(value).toBeDefined();
}
describe('useRiveNumber Hook', () => {
it('starts undefined then receives value via listener', async () => {
const file = await RiveFileFactory.fromSource(QUICK_START, undefined);
const vm = file.defaultArtboardViewModel();
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const context = createUseRiveNumberContext();
// Value must start undefined — not synchronously read from property.value
expect(context.value).toBeUndefined();
await render(
<UseRiveNumberTestComponent instance={instance} context={context} />
);
// After listener fires, value should be a number
await waitFor(
() => {
expect(context.error).toBeNull();
expect(typeof context.value).toBe('number');
},
{ timeout: 5000 }
);
cleanup();
});
it('returns value from number property', async () => {
const file = await RiveFileFactory.fromSource(QUICK_START, undefined);
const vm = file.defaultArtboardViewModel();
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const context = createUseRiveNumberContext();
await render(
<UseRiveNumberTestComponent instance={instance} context={context} />
);
await waitFor(
() => {
expect(context.error).toBeNull();
expect(typeof context.value).toBe('number');
},
{ timeout: 5000 }
);
cleanup();
});
it('can set value via setValue', async () => {
const file = await RiveFileFactory.fromSource(QUICK_START, undefined);
const vm = file.defaultArtboardViewModel();
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const context = createUseRiveNumberContext();
await render(
<UseRiveNumberTestComponent instance={instance} context={context} />
);
await waitFor(
() => {
expect(context.setValue).not.toBeNull();
},
{ timeout: 5000 }
);
context.setValue!(42);
const property = instance.numberProperty('health');
expectDefined(property);
expect(property.value).toBe(42);
cleanup();
});
});
describe('useViewModelInstance hook', () => {
it('gets default ViewModel instance from RiveFile', async () => {
const file = await RiveFileFactory.fromSource(DATABINDING, undefined);
const context = createUseViewModelInstanceContext();
await render(
<UseViewModelInstanceTestComponent file={file} context={context} />
);
await waitFor(
() => {
expect(context.instance).not.toBeNull();
},
{ timeout: 5000 }
);
expect(context.age).toBe(30);
cleanup();
});
});
class UseRiveStringContext {
value: string | undefined = undefined;
error: Error | null = null;
errorEverSet = false;
setValue: ((v: string) => void) | null = null;
setValueCalledBeforeReady = false;
}
/**
* Loads a riv file via useRiveFile (async) and immediately calls
* setText in a useEffect — exercising the "setValue before ready" path.
* See #141 / PR #155 for context.
*/
function UseRiveStringBeforeReadyComponent({
source,
context,
}: {
source: number;
context: UseRiveStringContext;
}) {
const { riveFile } = useRiveFile(source);
const instance = useMemo(
() => riveFile?.defaultArtboardViewModel()?.createDefaultInstance(),
[riveFile]
);
const { value, setValue, error } = useRiveString('text', instance);
// Call setValue immediately — before file has loaded on first render
useEffect(() => {
if (!instance) {
context.setValueCalledBeforeReady = true;
}
setValue('Harness test');
}, [setValue, instance, context]);
useEffect(() => {
context.value = value;
context.error = error;
if (error) context.errorEverSet = true;
context.setValue = setValue;
}, [context, value, error, setValue]);
return (
<View>
<Text testID="value">{String(value)}</Text>
<Text testID="error">{String(error?.message ?? 'none')}</Text>
</View>
);
}
describe('useRiveString setValue before ready (#141)', () => {
it('does not error when setValue is called before instance loads', async () => {
const context = new UseRiveStringContext();
await render(
<UseRiveStringBeforeReadyComponent
source={FONT_FALLBACK}
context={context}
/>
);
// Wait for file to load and property to resolve
await waitFor(
() => {
expect(context.value).toBeDefined();
},
{ timeout: 5000 }
);
// setValue was called before instance was ready (first render)
expect(context.setValueCalledBeforeReady).toBe(true);
// No error should have ever been set — setValue before ready is a silent no-op
expect(context.errorEverSet).toBe(false);
cleanup();
});
});