forked from parse-community/Parse-SDK-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoreManager-test.js
445 lines (376 loc) · 12.6 KB
/
CoreManager-test.js
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
/**
* Copyright (c) 2015-present, Parse, LLC.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
jest.dontMock('../CoreManager');
const CoreManager = require('../CoreManager');
describe('CoreManager', () => {
it('is initialized with default values', () => {
expect(CoreManager.get('SERVER_URL')).toBe('https://api.parse.com/1');
});
it('pulls the version string from package.json', () => {
expect(CoreManager.get('VERSION').length).toBeGreaterThan(0);
});
it('detects when running in node', () => {
expect(CoreManager.get('IS_NODE')).toBe(true);
});
it('can set and retrieve arbitrary values', () => {
expect(CoreManager.get.bind(null, 'something')).toThrow(
'Configuration key not found: something'
);
CoreManager.set('something', 'a string');
expect(CoreManager.get('something')).toBe('a string');
});
it('requires AnalyticsController to implement certain functionality', () => {
expect(CoreManager.setAnalyticsController.bind(null, {})).toThrow(
'AnalyticsController must implement track()'
);
expect(
CoreManager.setAnalyticsController.bind(null, {
track: function () {},
})
).not.toThrow();
});
it('can set and get AnalyticsController', () => {
const controller = {
track: function () {},
};
CoreManager.setAnalyticsController(controller);
expect(CoreManager.getAnalyticsController()).toBe(controller);
});
it('requires CloudController to implement certain functionality', () => {
expect(CoreManager.setCloudController.bind(null, {})).toThrow(
'CloudController must implement run()'
);
expect(
CoreManager.setCloudController.bind(null, {
run: function () {},
getJobsData: function () {},
startJob: function () {},
getJobStatus: function () {},
})
).not.toThrow();
});
it('can set and get CloudController', () => {
const controller = {
run: function () {},
getJobsData: function () {},
startJob: function () {},
getJobStatus: function () {},
};
CoreManager.setCloudController(controller);
expect(CoreManager.getCloudController()).toBe(controller);
});
it('requires ConfigController to implement certain functionality', () => {
expect(CoreManager.setConfigController.bind(null, {})).toThrow(
'ConfigController must implement current()'
);
expect(
CoreManager.setConfigController.bind(null, {
current: function () {},
})
).toThrow('ConfigController must implement get()');
expect(
CoreManager.setConfigController.bind(null, {
current: function () {},
get: function () {},
save: function () {},
})
).not.toThrow();
});
it('can set and get ConfigController', () => {
const controller = {
current: function () {},
get: function () {},
save: function () {},
};
CoreManager.setConfigController(controller);
expect(CoreManager.getConfigController()).toBe(controller);
});
it('requires FileController to implement certain functionality', () => {
expect(CoreManager.setFileController.bind(null, {})).toThrow(
'FileController must implement saveFile()'
);
expect(
CoreManager.setFileController.bind(null, {
saveFile: function () {},
})
).toThrow('FileController must implement saveBase64()');
expect(
CoreManager.setFileController.bind(null, {
saveFile: function () {},
saveBase64: function () {},
})
).not.toThrow();
});
it('can set and get FileController', () => {
const controller = {
saveFile: function () {},
saveBase64: function () {},
};
CoreManager.setFileController(controller);
expect(CoreManager.getFileController()).toBe(controller);
});
it('requires InstallationController to implement certain functionality', () => {
expect(CoreManager.setInstallationController.bind(null, {})).toThrow(
'InstallationController must implement currentInstallationId()'
);
expect(
CoreManager.setInstallationController.bind(null, {
currentInstallationId: function () {},
})
).not.toThrow();
});
it('can set and get InstallationController', () => {
const controller = {
currentInstallationId: function () {},
};
CoreManager.setInstallationController(controller);
expect(CoreManager.getInstallationController()).toBe(controller);
});
it('requires PushController to implement certain functionality', () => {
expect(CoreManager.setPushController.bind(null, {})).toThrow(
'PushController must implement send()'
);
expect(
CoreManager.setPushController.bind(null, {
send: function () {},
})
).not.toThrow();
});
it('can set and get PushController', () => {
const controller = {
send: function () {},
};
CoreManager.setPushController(controller);
expect(CoreManager.getPushController()).toBe(controller);
});
it('requires ObjectController to implement certain functionality', () => {
expect(CoreManager.setObjectController.bind(null, {})).toThrow(
'ObjectController must implement save()'
);
expect(
CoreManager.setObjectController.bind(null, {
save: function () {},
})
).toThrow('ObjectController must implement fetch()');
expect(
CoreManager.setObjectController.bind(null, {
save: function () {},
fetch: function () {},
})
).toThrow('ObjectController must implement destroy()');
expect(
CoreManager.setObjectController.bind(null, {
save: function () {},
fetch: function () {},
destroy: function () {},
})
).not.toThrow();
});
it('can set and get ObjectController', () => {
const controller = {
save: function () {},
fetch: function () {},
destroy: function () {},
};
CoreManager.setObjectController(controller);
expect(CoreManager.getObjectController()).toBe(controller);
});
it('can set and get ObjectStateController', () => {
const controller = {
getState: function () {},
initializeState: function () {},
removeState: function () {},
getServerData: function () {},
setServerData: function () {},
getPendingOps: function () {},
setPendingOp: function () {},
pushPendingState: function () {},
popPendingState: function () {},
mergeFirstPendingState: function () {},
getObjectCache: function () {},
estimateAttribute: function () {},
estimateAttributes: function () {},
commitServerChanges: function () {},
enqueueTask: function () {},
clearAllState: function () {},
};
CoreManager.setObjectStateController(controller);
expect(CoreManager.getObjectStateController()).toBe(controller);
});
it('requires QueryController to implement certain functionality', () => {
expect(CoreManager.setQueryController.bind(null, {})).toThrow(
'QueryController must implement find()'
);
expect(
CoreManager.setQueryController.bind(null, {
find: function () {},
aggregate: function () {},
})
).not.toThrow();
});
it('can set and get QueryController', () => {
const controller = {
find: function () {},
aggregate: function () {},
};
CoreManager.setQueryController(controller);
expect(CoreManager.getQueryController()).toBe(controller);
});
it('requires RESTController to implement certain functionality', () => {
expect(CoreManager.setRESTController.bind(null, {})).toThrow(
'RESTController must implement request()'
);
expect(
CoreManager.setRESTController.bind(null, {
request: function () {},
})
).toThrow('RESTController must implement ajax()');
expect(
CoreManager.setRESTController.bind(null, {
request: function () {},
ajax: function () {},
})
).not.toThrow();
});
it('can set and get RESTController', () => {
const controller = {
request: function () {},
ajax: function () {},
};
CoreManager.setRESTController(controller);
expect(CoreManager.getRESTController()).toBe(controller);
});
it('requires StorageController to implement certain functionality', () => {
expect(CoreManager.setStorageController.bind(null, { async: 0 })).toThrow(
'A synchronous StorageController must implement getItem()'
);
expect(
CoreManager.setStorageController.bind(null, {
async: 0,
getItem: function () {},
})
).toThrow('A synchronous StorageController must implement setItem()');
expect(
CoreManager.setStorageController.bind(null, {
async: 0,
getItem: function () {},
setItem: function () {},
})
).toThrow('A synchronous StorageController must implement removeItem()');
expect(
CoreManager.setStorageController.bind(null, {
async: 0,
getItem: function () {},
setItem: function () {},
removeItem: function () {},
getAllKeys: function () {},
})
).not.toThrow();
expect(CoreManager.setStorageController.bind(null, { async: 1 })).toThrow(
'An async StorageController must implement getItemAsync()'
);
expect(
CoreManager.setStorageController.bind(null, {
async: 1,
getItemAsync: function () {},
})
).toThrow('An async StorageController must implement setItemAsync()');
expect(
CoreManager.setStorageController.bind(null, {
async: 1,
getItemAsync: function () {},
setItemAsync: function () {},
})
).toThrow('An async StorageController must implement removeItemAsync()');
expect(
CoreManager.setStorageController.bind(null, {
async: 1,
getItemAsync: function () {},
setItemAsync: function () {},
removeItemAsync: function () {},
getAllKeysAsync: function () {},
})
).not.toThrow();
});
it('can set and get StorageController', () => {
const controller = {
async: 0,
getItem: function () {},
setItem: function () {},
removeItem: function () {},
getAllKeys: function () {},
};
CoreManager.setStorageController(controller);
expect(CoreManager.getStorageController()).toBe(controller);
});
it('requires SchemaController to implement certain functionality', () => {
expect(CoreManager.setSchemaController.bind(null, {})).toThrow(
'SchemaController must implement get()'
);
expect(
CoreManager.setSchemaController.bind(null, {
send: function () {},
get: function () {},
create: function () {},
update: function () {},
delete: function () {},
purge: function () {},
})
).not.toThrow();
});
it('can set and get SchemaController', () => {
const controller = {
send: function () {},
get: function () {},
create: function () {},
update: function () {},
delete: function () {},
purge: function () {},
};
CoreManager.setSchemaController(controller);
expect(CoreManager.getSchemaController()).toBe(controller);
});
it('requires LocalDatastoreController to implement certain functionality', () => {
expect(CoreManager.setLocalDatastoreController.bind(null, {})).toThrow(
'LocalDatastoreController must implement pinWithName()'
);
expect(
CoreManager.setLocalDatastoreController.bind(null, {
fromPinWithName: function () {},
pinWithName: function () {},
unPinWithName: function () {},
getAllContents: function () {},
clear: function () {},
})
).not.toThrow();
});
it('can set and get setLocalDatastoreController', () => {
const controller = {
fromPinWithName: function () {},
pinWithName: function () {},
unPinWithName: function () {},
getAllContents: function () {},
clear: function () {},
};
CoreManager.setLocalDatastoreController(controller);
expect(CoreManager.getLocalDatastoreController()).toBe(controller);
});
it('can set and get WebSocketController', () => {
const controller = {
onopen: function () {},
onmessage: function () {},
onclose: function () {},
onerror: function () {},
send: function () {},
close: function () {},
};
CoreManager.setWebSocketController(controller);
expect(CoreManager.getWebSocketController()).toBe(controller);
});
});