-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.test.js
149 lines (137 loc) · 4.39 KB
/
index.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
const fetch = require('isomorphic-fetch');
const RPCClient = require('./index');
describe('RPCClient', () => {
it('should create an RPCClient', () => {
expect(new RPCClient()).toBeDefined();
});
it('should set RPC server url', () => {
const url = 'http://some-rpc-server';
const rpc = new RPCClient({ url });
expect(rpc.url).toBe(url);
});
it('should set default RPC server url', () => {
const rpc = new RPCClient();
expect(rpc.url).toBe('http://localhost');
});
describe('listMethods', () => {
it('should list available RPC methods', () => {
const rpc = new RPCClient();
return rpc.listMethods().then((methods) => {
expect(fetch).toBeCalledWith('http://localhost/methods', {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({}),
});
expect(methods).toEqual(fetch.fakeMethods);
});
});
});
describe('call', () => {
it('should call RPC method', () => {
const name = 'someMethod';
const rpc = new RPCClient();
return rpc.call(name).then((response) => {
expect(fetch).toBeCalledWith('http://localhost/someMethod', {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({}),
});
expect(response).toEqual(fetch.fakeResponse);
});
});
it('should call RPC method with args', () => {
const name = 'someMethod';
const args = { a: 'a', b: 'b' };
const rpc = new RPCClient();
return rpc.call(name, args).then((response) => {
expect(fetch).toBeCalledWith('http://localhost/someMethod', {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
args: JSON.stringify(args),
}),
});
expect(response).toEqual(fetch.fakeResponse);
});
});
it('should trigger error when response !== 200', async () => {
expect.assertions(4);
const name = 'shouldThrow';
const rpc = new RPCClient();
try {
await rpc.call(name);
} catch (err) {
expect(err.handled).toBe(true);
expect(err.message).toBe('this method should throw an error');
expect(err.code).toBeUndefined();
expect(err.status).toBe(400);
}
});
it('should trigger error when response !== 200 with custom code', async () => {
expect.assertions(5);
const name = 'shouldThrowCustomCode';
const rpc = new RPCClient();
try {
await rpc.call(name);
} catch (err) {
expect(err.message).toBe('this method should throw an error');
expect(err.code).toBeDefined();
expect(err.code).toBe(fetch.fakeCode);
expect(err.handled).toBe(true);
expect(err.status).toBe(400);
}
});
it('should trigger an unhandled error when response === 500', async () => {
expect.assertions(3);
const name = 'shouldThrowJSON500';
const rpc = new RPCClient();
try {
await rpc.call(name);
} catch (err) {
expect(err.message).toBe('some unexpected error occured');
expect(err.handled).toBe(false);
expect(err.status).toBe(500);
}
});
it('should reject when json parse fails', async () => {
expect.assertions(1);
const name = 'shouldFailJson';
const rpc = new RPCClient();
try {
await rpc.call(name);
} catch (err) {
expect(err.message).toBe('something went wrong parsing json');
}
});
});
describe('headers', () => {
it('should call RPC method with headers', async () => {
const name = 'someMethod';
const args = { a: 'a', b: 'b' };
const headers = { foo: 'bar' };
const rpc = new RPCClient();
const response = await rpc.call(name, args, headers);
expect(fetch).toBeCalledWith('http://localhost/someMethod', {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
...headers,
},
body: JSON.stringify({
args: JSON.stringify(args),
}),
});
expect(response).toEqual(fetch.fakeResponse);
});
});
});