-
Notifications
You must be signed in to change notification settings - Fork 415
/
Copy pathutils.test.js
217 lines (191 loc) · 5.92 KB
/
utils.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
'use strict';
/**
* Unit tests for Configuration.
*/
const _ = require('lodash');
const childProcess = require('child_process');
const Utils = require('../lib/utils');
jest.mock('child_process');
describe('Utils', () => {
describe('guid', () => {
it('should return different unique ids', () => {
const guids = [];
for (let i = 0; i < 10; i++) {
guids.push(Utils.guid());
}
expect(_.size(_.uniq(guids))).toEqual(10);
expect(_.size(_.compact(guids))).toEqual(10);
});
});
describe('SpawnError', () => {
it('should store stdout and stderr', () => {
const err = new Utils.SpawnError('message', 'stdout', 'stderr');
expect(err).toHaveProperty('message', 'message');
expect(err).toHaveProperty('stdout', 'stdout');
expect(err).toHaveProperty('stderr', 'stderr');
});
it('should print message and stderr', () => {
const err = new Utils.SpawnError('message', 'stdout', 'stderr');
expect(err.toString()).toEqual('message\nstderr');
});
});
describe('spawnProcess', () => {
const childMock = {
stdout: {
setEncoding: jest.fn(),
on: jest.fn()
},
stderr: {
setEncoding: jest.fn(),
on: jest.fn()
},
on: jest.fn()
};
beforeEach(() => {
childProcess.spawn.mockReturnValue(childMock);
});
it('should call child_process.spawn', () => {
childMock.on.mockReset();
childMock.on.mockImplementation((name, cb) => {
if (name === 'close') {
cb(0);
}
});
return expect(Utils.spawnProcess('cmd', []))
.resolves.toEqual({ stderr: '', stdout: '' })
.then(() => {
expect(childProcess.spawn).toHaveBeenCalledTimes(1);
return null;
});
});
it('should return stdout and stderr', () => {
childMock.stderr.on.mockImplementation((name, cb) => {
if (name === 'data') {
cb('myErrData');
}
});
childMock.stdout.on.mockImplementation((name, cb) => {
if (name === 'data') {
cb('myOutData');
}
});
childMock.on.mockReset();
childMock.on.mockImplementation((name, cb) => {
if (name === 'close') {
cb(0);
}
});
return expect(Utils.spawnProcess('cmd', [])).resolves.toEqual({ stderr: 'myErrData', stdout: 'myOutData' });
});
it('should reject on spawn internal error', () => {
childMock.on.mockReset();
childMock.on.mockImplementation((name, cb) => {
if (name === 'error') {
cb(new Error('spawn ENOENT'));
}
});
return expect(Utils.spawnProcess('cmd', [])).rejects.toThrow('spawn ENOENT');
});
it('should reject on positive exit code', () => {
childMock.on.mockReset();
childMock.on.mockImplementation((name, cb) => {
if (name === 'close') {
cb(1);
}
});
return expect(Utils.spawnProcess('cmd', [])).rejects.toThrow(Utils.SpawnError);
});
});
describe('safeJsonParse', () => {
it('should parse valid JSON', () => {
expect(Utils.safeJsonParse('{"foo": "bar"}')).toEqual({ foo: 'bar' });
});
it('should return null for invalid JSON', () => {
expect(Utils.safeJsonParse('{"foo":')).toEqual(null);
});
});
describe('splitLines', () => {
it('should split on new line characters', () => {
expect(Utils.splitLines('a\r\nb\nc')).toEqual(['a', 'b', 'c']);
});
});
describe('getAllNodeFunctions', () => {
it('should return all functions with node runtime', () => {
const mockServerless = {
service: {
getAllFunctions: jest.fn(() => ['foo', 'bar', 'baz']),
getFunction: jest.fn(name => {
if (name === 'foo') {
return { runtime: 'nodejs6.10' };
}
if (name === 'bar') {
return { runtime: 'nodejs8.10' };
}
if (name === 'baz') {
return { runtime: 'python3.6' };
}
})
}
};
expect(Utils.getAllNodeFunctions.call({ serverless: mockServerless })).toEqual(['foo', 'bar']);
});
it('should ignore handlers with image.uri property', () => {
const mockServerless = {
service: {
getAllFunctions: jest.fn(() => ['foo', 'bar']),
getFunction: jest.fn(name => {
if (name === 'foo') {
return { runtime: 'nodejs6.10' };
}
if (name === 'bar') {
return { runtime: 'nodejs8.10', image: { uri: 'fake-image-uri' } };
}
})
}
};
expect(Utils.getAllNodeFunctions.call({ serverless: mockServerless })).toEqual(['foo']);
});
it('should ignore handlers with image.name property', () => {
const mockServerless = {
service: {
getAllFunctions: jest.fn(() => ['foo', 'bar']),
getFunction: jest.fn(name => {
if (name === 'foo') {
return { runtime: 'nodejs6.10' };
}
if (name === 'bar') {
return { runtime: 'nodejs8.10', image: { name: 'fake-image-name' } };
}
})
}
};
expect(Utils.getAllNodeFunctions.call({ serverless: mockServerless })).toEqual(['foo']);
});
});
describe('isProviderGoogle', () => {
describe('when the provider is set to "google"', () => {
const mockServerless = {
service: {
provider: {
name: 'google'
}
}
};
it('should return true', () => {
expect(Utils.isProviderGoogle(mockServerless)).toBe(true);
});
});
describe('when the provider is set to "aws"', () => {
const mockServerless = {
service: {
provider: {
name: 'aws'
}
}
};
it('should return false', () => {
expect(Utils.isProviderGoogle(mockServerless)).toBe(false);
});
});
});
});