-
Notifications
You must be signed in to change notification settings - Fork 8.2k
/
jobs.test.js
272 lines (230 loc) · 8.61 KB
/
jobs.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import Hapi from 'hapi';
import { difference, memoize } from 'lodash';
import { registerJobInfoRoutes } from './jobs';
import { ExportTypesRegistry } from '../lib/export_types_registry';
jest.mock('./lib/authorized_user_pre_routing', () => {
return {
authorizedUserPreRoutingFactory: () => () => ({}),
};
});
jest.mock('./lib/reporting_feature_pre_routing', () => {
return {
reportingFeaturePreRoutingFactory: () => () => () => ({
jobTypes: ['unencodedJobType', 'base64EncodedJobType'],
}),
};
});
let mockServer;
let exportTypesRegistry;
const mockLogger = {
error: jest.fn(),
debug: jest.fn(),
};
beforeEach(() => {
mockServer = new Hapi.Server({ debug: false, port: 8080, routes: { log: { collect: true } } });
mockServer.config = memoize(() => ({ get: jest.fn() }));
exportTypesRegistry = new ExportTypesRegistry();
exportTypesRegistry.register({
id: 'unencoded',
jobType: 'unencodedJobType',
jobContentExtension: 'csv',
});
exportTypesRegistry.register({
id: 'base64Encoded',
jobType: 'base64EncodedJobType',
jobContentEncoding: 'base64',
jobContentExtension: 'pdf',
});
mockServer.plugins = {
elasticsearch: {
getCluster: memoize(() => ({ callWithInternalUser: jest.fn() })),
createCluster: () => ({
callWithRequest: jest.fn(),
callWithInternalUser: jest.fn(),
}),
},
};
});
const getHits = (...sources) => {
return {
hits: {
hits: sources.map(source => ({ _source: source })),
},
};
};
test(`returns 404 if job not found`, async () => {
mockServer.plugins.elasticsearch
.getCluster('admin')
.callWithInternalUser.mockReturnValue(Promise.resolve(getHits()));
registerJobInfoRoutes(mockServer, exportTypesRegistry, mockLogger);
const request = {
method: 'GET',
url: '/api/reporting/jobs/download/1',
};
const response = await mockServer.inject(request);
const { statusCode } = response;
expect(statusCode).toBe(404);
});
test(`returns 401 if not valid job type`, async () => {
mockServer.plugins.elasticsearch
.getCluster('admin')
.callWithInternalUser.mockReturnValue(Promise.resolve(getHits({ jobtype: 'invalidJobType' })));
registerJobInfoRoutes(mockServer, exportTypesRegistry, mockLogger);
const request = {
method: 'GET',
url: '/api/reporting/jobs/download/1',
};
const { statusCode } = await mockServer.inject(request);
expect(statusCode).toBe(401);
});
describe(`when job is incomplete`, () => {
const getIncompleteResponse = async () => {
mockServer.plugins.elasticsearch
.getCluster('admin')
.callWithInternalUser.mockReturnValue(
Promise.resolve(getHits({ jobtype: 'unencodedJobType', status: 'pending' }))
);
registerJobInfoRoutes(mockServer, exportTypesRegistry, mockLogger);
const request = {
method: 'GET',
url: '/api/reporting/jobs/download/1',
};
return await mockServer.inject(request);
};
test(`sets statusCode to 503`, async () => {
const { statusCode } = await getIncompleteResponse();
expect(statusCode).toBe(503);
});
test(`uses status as payload`, async () => {
const { payload } = await getIncompleteResponse();
expect(payload).toBe('pending');
});
test(`sets content-type header to application/json; charset=utf-8`, async () => {
const { headers } = await getIncompleteResponse();
expect(headers['content-type']).toBe('application/json; charset=utf-8');
});
test(`sets retry-after header to 30`, async () => {
const { headers } = await getIncompleteResponse();
expect(headers['retry-after']).toBe(30);
});
});
describe(`when job is failed`, () => {
const getFailedResponse = async () => {
const hits = getHits({
jobtype: 'unencodedJobType',
status: 'failed',
output: { content: 'job failure message' },
});
mockServer.plugins.elasticsearch
.getCluster('admin')
.callWithInternalUser.mockReturnValue(Promise.resolve(hits));
registerJobInfoRoutes(mockServer, exportTypesRegistry, mockLogger);
const request = {
method: 'GET',
url: '/api/reporting/jobs/download/1',
};
return await mockServer.inject(request);
};
test(`sets status code to 500`, async () => {
const { statusCode } = await getFailedResponse();
expect(statusCode).toBe(500);
});
test(`sets content-type header to application/json; charset=utf-8`, async () => {
const { headers } = await getFailedResponse();
expect(headers['content-type']).toBe('application/json; charset=utf-8');
});
test(`sets the payload.reason to the job content`, async () => {
const { payload } = await getFailedResponse();
expect(JSON.parse(payload).reason).toBe('job failure message');
});
});
describe(`when job is completed`, () => {
const getCompletedResponse = async ({
jobType = 'unencodedJobType',
outputContent = 'job output content',
outputContentType = 'application/pdf',
title = '',
} = {}) => {
const hits = getHits({
jobtype: jobType,
status: 'completed',
output: { content: outputContent, content_type: outputContentType },
payload: {
title,
},
});
mockServer.plugins.elasticsearch
.getCluster('admin')
.callWithInternalUser.mockReturnValue(Promise.resolve(hits));
registerJobInfoRoutes(mockServer, exportTypesRegistry, mockLogger);
const request = {
method: 'GET',
url: '/api/reporting/jobs/download/1',
};
return await mockServer.inject(request);
};
test(`sets statusCode to 200`, async () => {
const { statusCode } = await getCompletedResponse();
expect(statusCode).toBe(200);
});
test(`doesn't encode output content for not-specified jobTypes`, async () => {
const { payload } = await getCompletedResponse({
jobType: 'unencodedJobType',
outputContent: 'test',
});
expect(payload).toBe('test');
});
test(`base64 encodes output content for configured jobTypes`, async () => {
const { payload } = await getCompletedResponse({
jobType: 'base64EncodedJobType',
outputContent: 'test',
});
expect(payload).toBe(Buffer.from('test', 'base64').toString());
});
test(`specifies text/csv; charset=utf-8 contentType header from the job output`, async () => {
const { headers } = await getCompletedResponse({ outputContentType: 'text/csv' });
expect(headers['content-type']).toBe('text/csv; charset=utf-8');
});
test(`specifies default filename in content-disposition header if no title`, async () => {
const { headers } = await getCompletedResponse({});
expect(headers['content-disposition']).toBe('inline; filename="report.csv"');
});
test(`specifies payload title in content-disposition header`, async () => {
const { headers } = await getCompletedResponse({ title: 'something' });
expect(headers['content-disposition']).toBe('inline; filename="something.csv"');
});
test(`specifies jobContentExtension in content-disposition header`, async () => {
const { headers } = await getCompletedResponse({ jobType: 'base64EncodedJobType' });
expect(headers['content-disposition']).toBe('inline; filename="report.pdf"');
});
test(`specifies application/pdf contentType header from the job output`, async () => {
const { headers } = await getCompletedResponse({ outputContentType: 'application/pdf' });
expect(headers['content-type']).toBe('application/pdf');
});
describe(`when non-whitelisted contentType specified in job output`, () => {
test(`sets statusCode to 500`, async () => {
const { statusCode } = await getCompletedResponse({ outputContentType: 'application/html' });
expect(statusCode).toBe(500);
});
test(`doesn't include job output content in payload`, async () => {
const { payload } = await getCompletedResponse({ outputContentType: 'application/html' });
expect(payload).not.toMatch(/job output content/);
});
test(`logs error message about invalid content type`, async () => {
const {
request: { logs },
} = await getCompletedResponse({ outputContentType: 'application/html' });
const errorLogs = logs.filter(
log => difference(['internal', 'implementation', 'error'], log.tags).length === 0
);
expect(errorLogs).toHaveLength(1);
expect(errorLogs[0].error).toBeInstanceOf(Error);
expect(errorLogs[0].error.message).toMatch(/Unsupported content-type of application\/html/);
});
});
});