forked from parse-community/Parse-SDK-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParseLiveQuery-test.js
277 lines (247 loc) · 8.85 KB
/
ParseLiveQuery-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
jest.dontMock('../ParseLiveQuery');
jest.dontMock('../CoreManager');
jest.dontMock('../InstallationController');
jest.dontMock('../LiveQueryClient');
jest.dontMock('../LiveQuerySubscription');
jest.dontMock('../ParseObject');
jest.dontMock('../ParseQuery');
jest.dontMock('../EventEmitter');
jest.dontMock('../promiseUtils');
// Forces the loading
const ParseLiveQuery = require('../ParseLiveQuery').default;
const CoreManager = require('../CoreManager');
const EventEmitter = require('../EventEmitter');
const ParseQuery = require('../ParseQuery').default;
const LiveQuerySubscription = require('../LiveQuerySubscription').default;
const mockLiveQueryClient = {
open: jest.fn(),
close: jest.fn(),
};
CoreManager.setEventEmitter(EventEmitter);
const LiveQuery = new ParseLiveQuery();
describe('ParseLiveQuery', () => {
beforeEach(() => {
const controller = CoreManager.getLiveQueryController();
CoreManager.setLiveQuery(LiveQuery);
controller._clearCachedDefaultClient();
CoreManager.set('InstallationController', {
currentInstallationId() {
return Promise.resolve('1234');
},
});
});
it('fails with an invalid livequery server url', done => {
CoreManager.set('UserController', {
currentUserAsync() {
return Promise.resolve(undefined);
},
});
CoreManager.set('LIVEQUERY_SERVER_URL', 'notaurl');
const controller = CoreManager.getLiveQueryController();
controller.getDefaultLiveQueryClient().catch(err => {
expect(err.message).toBe(
'You need to set a proper Parse LiveQuery server url before using LiveQueryClient'
);
done();
});
});
it('initializes the client', done => {
CoreManager.set('UserController', {
currentUserAsync() {
return Promise.resolve(undefined);
},
});
CoreManager.set('APPLICATION_ID', 'appid');
CoreManager.set('JAVASCRIPT_KEY', 'jskey');
CoreManager.set('LIVEQUERY_SERVER_URL', 'wss://live.example.com/parse');
const controller = CoreManager.getLiveQueryController();
controller.getDefaultLiveQueryClient().then(client => {
expect(client.serverURL).toBe('wss://live.example.com/parse');
expect(client.applicationId).toBe('appid');
expect(client.javascriptKey).toBe('jskey');
expect(client.sessionToken).toBe(undefined);
expect(client.installationId).toBe('1234');
expect(client.additionalProperties).toBe(true);
done();
});
});
it('automatically generates a ws websocket url', done => {
CoreManager.set('UserController', {
currentUserAsync() {
return Promise.resolve(undefined);
},
});
CoreManager.set('APPLICATION_ID', 'appid');
CoreManager.set('JAVASCRIPT_KEY', 'jskey');
CoreManager.set('SERVER_URL', 'http://api.parse.com/1');
CoreManager.set('LIVEQUERY_SERVER_URL', null);
const controller = CoreManager.getLiveQueryController();
controller.getDefaultLiveQueryClient().then(client => {
expect(client.serverURL).toBe('ws://api.parse.com/1');
expect(client.applicationId).toBe('appid');
expect(client.javascriptKey).toBe('jskey');
expect(client.sessionToken).toBe(undefined);
done();
});
});
it('automatically generates a wss websocket url', done => {
CoreManager.set('UserController', {
currentUserAsync() {
return Promise.resolve(undefined);
},
});
CoreManager.set('APPLICATION_ID', 'appid');
CoreManager.set('JAVASCRIPT_KEY', 'jskey');
CoreManager.set('SERVER_URL', 'https://api.parse.com/1');
CoreManager.set('LIVEQUERY_SERVER_URL', null);
const controller = CoreManager.getLiveQueryController();
controller.getDefaultLiveQueryClient().then(client => {
expect(client.serverURL).toBe('wss://api.parse.com/1');
expect(client.applicationId).toBe('appid');
expect(client.javascriptKey).toBe('jskey');
expect(client.sessionToken).toBe(undefined);
done();
});
});
it('populates the session token', done => {
CoreManager.set('UserController', {
currentUserAsync() {
return Promise.resolve({
getSessionToken() {
return 'token';
},
});
},
});
CoreManager.set('APPLICATION_ID', 'appid');
CoreManager.set('JAVASCRIPT_KEY', 'jskey');
CoreManager.set('LIVEQUERY_SERVER_URL', null);
const controller = CoreManager.getLiveQueryController();
controller.getDefaultLiveQueryClient().then(client => {
expect(client.serverURL).toBe('wss://api.parse.com/1');
expect(client.applicationId).toBe('appid');
expect(client.javascriptKey).toBe('jskey');
expect(client.sessionToken).toBe('token');
done();
});
});
it('handle LiveQueryClient events', async () => {
const spy = jest.spyOn(LiveQuery, 'emit');
CoreManager.set('UserController', {
currentUserAsync() {
return Promise.resolve({
getSessionToken() {
return 'token';
},
});
},
});
CoreManager.set('APPLICATION_ID', 'appid');
CoreManager.set('JAVASCRIPT_KEY', 'jskey');
CoreManager.set('LIVEQUERY_SERVER_URL', null);
const controller = CoreManager.getLiveQueryController();
const client = await controller.getDefaultLiveQueryClient();
client.emit('error', 'error thrown');
client.emit('open');
client.emit('close');
expect(spy.mock.calls[0]).toEqual(['error', 'error thrown']);
expect(spy.mock.calls[1]).toEqual(['open']);
expect(spy.mock.calls[2]).toEqual(['close']);
spy.mockRestore();
});
it('subscribes to all subscription events', done => {
CoreManager.set('UserController', {
currentUserAsync() {
return Promise.resolve({
getSessionToken() {
return 'token';
},
});
},
});
CoreManager.set('APPLICATION_ID', 'appid');
CoreManager.set('JAVASCRIPT_KEY', 'jskey');
CoreManager.set('LIVEQUERY_SERVER_URL', null);
const controller = CoreManager.getLiveQueryController();
controller.getDefaultLiveQueryClient().then(async client => {
const query = new ParseQuery('ObjectType');
query.equalTo('test', 'value');
const ourSubscription = await client.subscribe(query, 'close');
const isCalled = {};
['open', 'close', 'error', 'create', 'update', 'enter', 'leave', 'delete'].forEach(key => {
ourSubscription.on(key, () => {
isCalled[key] = true;
});
});
// client.subscribe() completes asynchronously,
// so we need to give it a chance to complete before finishing
setTimeout(() => {
try {
client.socket = {
send() {},
};
client.connectPromise.resolve();
const actualSubscription = client.subscriptions.get(1);
expect(actualSubscription).toBeDefined();
actualSubscription.emit('open');
expect(isCalled['open']).toBe(true);
actualSubscription.emit('close');
expect(isCalled['close']).toBe(true);
actualSubscription.emit('error');
expect(isCalled['error']).toBe(true);
actualSubscription.emit('create');
expect(isCalled['create']).toBe(true);
actualSubscription.emit('update');
expect(isCalled['update']).toBe(true);
actualSubscription.emit('enter');
expect(isCalled['enter']).toBe(true);
actualSubscription.emit('leave');
expect(isCalled['leave']).toBe(true);
actualSubscription.emit('delete');
expect(isCalled['delete']).toBe(true);
done();
} catch (e) {
done.fail(e);
}
}, 1);
});
});
it('should not throw on usubscribe', () => {
CoreManager.set('UserController', {
currentUserAsync() {
return Promise.resolve({
getSessionToken() {
return 'token';
},
});
},
});
const query = new ParseQuery('ObjectType');
query.equalTo('test', 'value');
const subscription = new LiveQuerySubscription('0', query, 'token');
subscription.unsubscribe();
});
it('can handle LiveQuery open event', async () => {
jest.spyOn(mockLiveQueryClient, 'open');
const controller = CoreManager.getLiveQueryController();
controller.setDefaultLiveQueryClient(mockLiveQueryClient);
await LiveQuery.open();
expect(mockLiveQueryClient.open).toHaveBeenCalled();
});
it('can handle LiveQuery close event', async () => {
jest.spyOn(mockLiveQueryClient, 'close');
const controller = CoreManager.getLiveQueryController();
controller.setDefaultLiveQueryClient(mockLiveQueryClient);
await LiveQuery.close();
expect(mockLiveQueryClient.close).toHaveBeenCalled();
});
it('can handle LiveQuery error event', async () => {
try {
LiveQuery.emit('error');
expect(true).toBe(true);
} catch (_) {
// Should not throw error
expect(false).toBe(true);
}
});
});