-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
Copy pathPushQueue.spec.js
61 lines (59 loc) · 1.76 KB
/
PushQueue.spec.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
const Config = require('../lib/Config');
const { PushQueue } = require('../lib/Push/PushQueue');
describe('PushQueue', () => {
describe('With a defined channel', () => {
it('should be propagated to the PushWorker and PushQueue', done => {
reconfigureServer({
push: {
queueOptions: {
disablePushWorker: false,
channel: 'my-specific-channel',
},
adapter: {
send() {
return Promise.resolve();
},
getValidPushTypes() {
return [];
},
},
},
})
.then(() => {
const config = Config.get(Parse.applicationId);
expect(config.pushWorker.channel).toEqual('my-specific-channel', 'pushWorker.channel');
expect(config.pushControllerQueue.channel).toEqual(
'my-specific-channel',
'pushWorker.channel'
);
})
.then(done, done.fail);
});
});
describe('Default channel', () => {
it('should be prefixed with the applicationId', done => {
reconfigureServer({
push: {
queueOptions: {
disablePushWorker: false,
},
adapter: {
send() {
return Promise.resolve();
},
getValidPushTypes() {
return [];
},
},
},
})
.then(() => {
const config = Config.get(Parse.applicationId);
expect(PushQueue.defaultPushChannel()).toEqual('test-parse-server-push');
expect(config.pushWorker.channel).toEqual('test-parse-server-push');
expect(config.pushControllerQueue.channel).toEqual('test-parse-server-push');
})
.then(done, done.fail);
});
});
});