forked from intercom/intercom-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcounts.js
70 lines (69 loc) · 2.59 KB
/
counts.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
import assert from 'assert';
import {Client} from '../lib';
import nock from 'nock';
describe('counts', () => {
it('app counts', done => {
nock('https://api.intercom.io').get('/counts').reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.counts.appCounts().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('conversation app counts', done => {
nock('https://api.intercom.io').get('/counts').query({ type: 'conversation' }).reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.counts.conversationCounts().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('conversation admin counts', done => {
nock('https://api.intercom.io').get('/counts').query({ type: 'conversation', count: 'admin' }).reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.counts.conversationAdminCounts().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('user tag counts', done => {
nock('https://api.intercom.io').get('/counts').query({ type: 'user', count: 'tag' }).reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.counts.userTagCounts().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('user segment counts', done => {
nock('https://api.intercom.io').get('/counts').query({ type: 'user', count: 'segment' }).reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.counts.userSegmentCounts().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('company tag counts', done => {
nock('https://api.intercom.io').get('/counts').query({ type: 'company', count: 'tag' }).reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.counts.companyTagCounts().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('company segment counts', done => {
nock('https://api.intercom.io').get('/counts').query({ type: 'company', count: 'segment' }).reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.counts.companySegmentCounts().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('company user counts', done => {
nock('https://api.intercom.io').get('/counts').query({ type: 'company', count: 'user' }).reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.counts.companyUserCounts().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
});