-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpubnub.spec.js
57 lines (52 loc) · 1.89 KB
/
pubnub.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
/* eslint-env jest */
import waitFor from 'wait-for-async'
import RingCentral from '../src/ringcentral'
import PubNub from '../src/pubnub'
jest.setTimeout(128000)
const rc = new RingCentral(process.env.RINGCENTRAL_CLIENT_ID, process.env.RINGCENTRAL_CLIENT_SECRET, process.env.RINGCENTRAL_SERVER_URL)
describe('pubnub', () => {
test('SMS notification', async () => {
await rc.authorize({
username: process.env.RINGCENTRAL_USERNAME,
extension: process.env.RINGCENTRAL_EXTENSION,
password: process.env.RINGCENTRAL_PASSWORD
})
let count = 0
const pubnub = new PubNub(rc, ['/restapi/v1.0/account/~/extension/~/message-store'], message => {
count += 1
})
await pubnub.subscribe()
await waitFor({ interval: 3000 })
await rc.post('/restapi/v1.0/account/~/extension/~/sms', {
to: [{ phoneNumber: process.env.RINGCENTRAL_RECEIVER }],
from: { phoneNumber: process.env.RINGCENTRAL_USERNAME },
text: 'Hello world'
})
await waitFor({ interval: 3000, times: 10, condition: () => count >= 1 })
await pubnub.revoke()
expect(count >= 1).toBe(true)
await rc.revoke()
})
test('Glip post notification', async () => {
await rc.authorize({
username: process.env.RINGCENTRAL_USERNAME,
extension: process.env.RINGCENTRAL_EXTENSION,
password: process.env.RINGCENTRAL_PASSWORD
})
let count = 0
const pubnub = new PubNub(rc, ['/restapi/v1.0/glip/posts'], message => {
count += 1
})
await pubnub.subscribe()
await waitFor({ interval: 3000 })
const r = await rc.get('/restapi/v1.0/glip/groups')
const groupId = r.data.records[0].id
await rc.post(`/restapi/v1.0/glip/groups/${groupId}/posts`, {
text: 'Hello world'
})
await waitFor({ interval: 3000, times: 10, condition: () => count >= 1 })
await pubnub.revoke()
expect(count >= 1).toBe(true)
await rc.revoke()
})
})