-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdatabinding-advanced.harness.ts
More file actions
339 lines (280 loc) · 11.1 KB
/
databinding-advanced.harness.ts
File metadata and controls
339 lines (280 loc) · 11.1 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
import { describe, it, expect } from 'react-native-harness';
import type {
ViewModelInstance,
ViewModelStringProperty,
} from '@rive-app/react-native';
import { RiveFileFactory } from '@rive-app/react-native';
const DATABINDING = require('../assets/rive/databinding.riv');
const DATABINDING_LISTS = require('../assets/rive/databinding_lists.riv');
const DATABINDING_IMAGES = require('../assets/rive/databinding_images.riv');
const ARTBOARD_DB_TEST = require('../assets/rive/artboard_db_test.riv');
function expectDefined<T>(value: T): asserts value is NonNullable<T> {
expect(value).toBeDefined();
}
async function loadFile(source: number) {
return RiveFileFactory.fromSource(source, undefined);
}
describe('RiveFile ViewModel Access', () => {
it('viewModelCount returns expected count', async () => {
const file = await loadFile(DATABINDING);
expect(file.viewModelCount).toBe(2);
});
it('viewModelByIndex(0) returns a ViewModel', async () => {
const file = await loadFile(DATABINDING);
const vm = file.viewModelByIndex(0);
expect(vm).toBeDefined();
});
it('viewModelByIndex(-1) returns undefined or throws', async () => {
const file = await loadFile(DATABINDING);
try {
const vm = file.viewModelByIndex(-1);
expect(vm).toBeUndefined();
} catch {
// Android Rive SDK throws a JNI exception for invalid indices
}
});
it('viewModelByIndex(100) returns undefined or throws', async () => {
const file = await loadFile(DATABINDING);
try {
const vm = file.viewModelByIndex(100);
expect(vm).toBeUndefined();
} catch {
// Android Rive SDK throws a JNI exception for out-of-range indices
}
});
it('viewModelByName("Person") returns a ViewModel', async () => {
const file = await loadFile(DATABINDING);
const vm = file.viewModelByName('Person');
expect(vm).toBeDefined();
expect(vm!.modelName).toBe('Person');
});
it('viewModelByName("DoesNotExist") returns undefined or throws', async () => {
const file = await loadFile(DATABINDING);
try {
const vm = file.viewModelByName('DoesNotExist');
expect(vm).toBeUndefined();
} catch {
// Android Rive SDK throws a JNI exception for non-existent names
}
});
});
describe('ViewModel Properties Metadata', () => {
it('Person VM has expected propertyCount and instanceCount', async () => {
const file = await loadFile(DATABINDING);
const vm = file.viewModelByName('Person');
expectDefined(vm);
expect(await vm.getPropertyCountAsync()).toBeGreaterThanOrEqual(0);
expect(await vm.getInstanceCountAsync()).toBeGreaterThanOrEqual(0);
});
});
describe('ViewModel Creation Variants', () => {
it('createInstanceByName("Gordon") works', async () => {
const file = await loadFile(DATABINDING);
const vm = file.viewModelByName('Person');
expectDefined(vm);
const instance = vm.createInstanceByName('Gordon');
expectDefined(instance);
});
it('createInstanceByName("DoesNotExist") returns undefined or throws', async () => {
const file = await loadFile(DATABINDING);
const vm = file.viewModelByName('Person');
expectDefined(vm);
// Legacy returns undefined, experimental throws
try {
const instance = vm.createInstanceByName('DoesNotExist');
expect(instance).toBeUndefined();
} catch {
// experimental backend throws - that's fine
}
});
it('createInstanceByIndex(0) works', async () => {
const file = await loadFile(DATABINDING);
const vm = file.viewModelByIndex(0);
expectDefined(vm);
const instance = vm.createInstanceByIndex(0);
expectDefined(instance);
});
it('createInstanceByIndex(100) returns undefined or empty instance', async () => {
const file = await loadFile(DATABINDING);
const vm = file.viewModelByName('Person');
expectDefined(vm);
// Legacy returns undefined, experimental returns an empty instance
vm.createInstanceByIndex(100);
expect(true).toBe(true);
});
it('createDefaultInstance() works', async () => {
const file = await loadFile(DATABINDING);
const vm = file.viewModelByName('Person');
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
});
it('createInstance() (blank) works', async () => {
const file = await loadFile(DATABINDING);
const vm = file.viewModelByName('Person');
expectDefined(vm);
const instance = vm.createInstance();
expectDefined(instance);
});
});
describe('List Properties', () => {
it('listProperty("team") returns defined property', async () => {
const file = await loadFile(DATABINDING_LISTS);
const vm = file.viewModelByName('DevRel');
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const list = instance.listProperty('team');
expectDefined(list);
});
it('list length returns expected count', async () => {
const file = await loadFile(DATABINDING_LISTS);
const vm = file.viewModelByName('DevRel');
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const list = instance.listProperty('team');
expectDefined(list);
expect(list.length).toBe(5);
});
it('getInstanceAt returns ViewModelInstances with correct names', async () => {
const file = await loadFile(DATABINDING_LISTS);
const vm = file.viewModelByName('DevRel');
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const list = instance.listProperty('team');
expectDefined(list);
const names = ['Gordon', 'David', 'Tod', 'Erik', 'Adam'];
for (let i = 0; i < names.length; i++) {
const item: ViewModelInstance = list.getInstanceAt(i)!;
expectDefined(item);
const nameProp: ViewModelStringProperty = item.stringProperty('name')!;
expectDefined(nameProp);
expect(nameProp.value).toBe(names[i]);
}
});
it('addInstance increases length', async () => {
const file = await loadFile(DATABINDING_LISTS);
const devRelVM = file.viewModelByName('DevRel');
expectDefined(devRelVM);
const instance = devRelVM.createDefaultInstance();
expectDefined(instance);
const list = instance.listProperty('team');
expectDefined(list);
const initialLength = list.length;
const personVM = file.viewModelByName('Person');
expectDefined(personVM);
const newPerson = personVM.createInstance();
expectDefined(newPerson);
const nameProp = newPerson.stringProperty('name');
expectDefined(nameProp);
nameProp.value = 'Hernan';
list.addInstance(newPerson);
expect(list.length).toBe(initialLength + 1);
const added = list.getInstanceAt(list.length - 1);
expectDefined(added);
const addedName = added.stringProperty('name');
expectDefined(addedName);
expect(addedName.value).toBe('Hernan');
});
// These 3 list mutations crash the Rive experimental renderer
// (EXC_BAD_ACCESS in rive::CommandQueue::processMessages).
// They pass on the legacy backend. Skipping until the Rive engine fix.
it.skip('removeInstanceAt decreases length', async () => {
const file = await loadFile(DATABINDING_LISTS);
const vm = file.viewModelByName('DevRel');
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const list = instance.listProperty('team');
expectDefined(list);
const initialLength = list.length;
list.removeInstanceAt(0);
expect(list.length).toBe(initialLength - 1);
});
it.skip('swap reorders items', async () => {
const file = await loadFile(DATABINDING_LISTS);
const vm = file.viewModelByName('DevRel');
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const list = instance.listProperty('team');
expectDefined(list);
const name0Before = list.getInstanceAt(0)!.stringProperty('name')!.value;
const name1Before = list.getInstanceAt(1)!.stringProperty('name')!.value;
const result = list.swap(0, 1);
expect(result).toBe(true);
const name0After = list.getInstanceAt(0)!.stringProperty('name')!.value;
const name1After = list.getInstanceAt(1)!.stringProperty('name')!.value;
expect(name0After).toBe(name1Before);
expect(name1After).toBe(name0Before);
});
it.skip('addInstanceAt inserts at position', async () => {
const file = await loadFile(DATABINDING_LISTS);
const devRelVM = file.viewModelByName('DevRel');
expectDefined(devRelVM);
const instance = devRelVM.createDefaultInstance();
expectDefined(instance);
const list = instance.listProperty('team');
expectDefined(list);
const initialLength = list.length;
const personVM = file.viewModelByName('Person');
expectDefined(personVM);
const lancePerson = personVM.createInstance();
expectDefined(lancePerson);
lancePerson.stringProperty('name')!.value = 'Lance';
const result = list.addInstanceAt(lancePerson, 2);
expect(result).toBe(true);
expect(list.length).toBe(initialLength + 1);
const insertedName = list.getInstanceAt(2)!.stringProperty('name')!.value;
expect(insertedName).toBe('Lance');
});
});
// These two .riv files crash the Rive experimental renderer on load
// (EXC_BAD_ACCESS in rive::CommandQueue::processMessages).
// They pass on the legacy backend. Skipping until the Rive engine fix.
describe.skip('Artboard Properties', () => {
it('artboardProperty returns defined properties', async () => {
const file = await loadFile(ARTBOARD_DB_TEST);
const vm = file.defaultArtboardViewModel();
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const artboard1 = instance.artboardProperty('artboard_1');
expectDefined(artboard1);
const artboard2 = instance.artboardProperty('artboard_2');
expectDefined(artboard2);
});
it('getBindableArtboard returns a BindableArtboard with correct name', async () => {
const file = await loadFile(ARTBOARD_DB_TEST);
const artboardNames = file.artboardNames;
expect(artboardNames.length).toBeGreaterThan(0);
const bindable = file.getBindableArtboard(artboardNames[0]!);
expectDefined(bindable);
expect(bindable.artboardName).toBe(artboardNames[0]);
});
it('artboardProperty.set(bindable) does not throw', async () => {
const file = await loadFile(ARTBOARD_DB_TEST);
const vm = file.defaultArtboardViewModel();
expectDefined(vm);
const instance = vm.createDefaultInstance();
expectDefined(instance);
const artboardProp = instance.artboardProperty('artboard_1');
expectDefined(artboardProp);
const artboardNames = file.artboardNames;
const bindable = file.getBindableArtboard(artboardNames[0]!);
expect(() => artboardProp.set(bindable)).not.toThrow();
});
});
describe.skip('Image Properties', () => {
it('imageProperty("bound_image") returns defined property', async () => {
const file = await loadFile(DATABINDING_IMAGES);
const vm = file.viewModelByName('MyViewModel');
expectDefined(vm);
const instance = vm.createInstanceByIndex(0);
expectDefined(instance);
const imageProp = instance.imageProperty('bound_image');
expectDefined(imageProp);
});
});