forked from intercom/intercom-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.js
76 lines (75 loc) · 2.64 KB
/
client.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
import assert from 'assert';
import {Client} from '../lib';
import nock from 'nock';
describe('clients', () => {
it('should resolve promises', done => {
nock('https://api.intercom.io').get('/users').reply(200, {});
const client = new Client('foo', 'bar').usePromises();
assert.equal(true, client.promises);
client.users.list().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('should use promises when callbacks are absent', done => {
nock('https://api.intercom.io').get('/users').reply(200, {});
const client = new Client('foo', 'bar');
client.users.list().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('should reject promises', done => {
nock('https://api.intercom.io').get('/users').reply(200, {type: 'error.list'});
const client = new Client('foo', 'bar').usePromises();
assert.equal(true, client.promises);
client.users.list().catch(err => {
assert.deepStrictEqual({ type: 'error.list' }, err.body);
done();
});
});
it('should reject promises with error objects', done => {
nock('https://api.intercom.io').get('/users').reply(200, {type: 'error.list'});
const client = new Client('foo', 'bar').usePromises();
client.users.list().catch(err => {
assert.equal(true, err instanceof Error);
done();
});
});
it('should callback with errors', done => {
const callback = function (err, d) {
assert.equal('error.list', err.body.type);
assert.equal(null, d);
done();
};
const client = new Client('foo', 'bar');
client.callback(callback, { body: { type: 'error.list' }});
});
it('should not crash if the callback is missing', () => {
const client = new Client('foo', 'bar');
assert.doesNotThrow(() => {
client.callback();
});
});
it('should construct with two fields', () => {
const client = new Client('foo', 'bar');
assert.equal('foo', client.usernamePart);
assert.equal('bar', client.passwordPart);
});
it('should construct with an object', () => {
const client = new Client({ appId: 'foo', appApiKey: 'bar' });
assert.equal('foo', client.usernamePart);
assert.equal('bar', client.passwordPart);
});
it('should construct with an object containing an OAuth token', () => {
const client = new Client({ token: 'foo' });
assert.equal('foo', client.usernamePart);
assert.equal('', client.passwordPart);
});
it('should throw if no credentials found', () => {
assert.throws(() => {
const client = new Client('baz');
console.log(client.usernamePart);
}, /Could not construct a client with those parameters/);
});
});