-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.js
325 lines (287 loc) · 11.1 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
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
const i = require('./index');
jest.mock('@actions/core');
const core = require('@actions/core');
jest.mock('@aws-sdk/client-app-mesh');
const {AppMeshClient} = require('@aws-sdk/client-app-mesh');
/**
*
* PARAMETER DEFINITIONS
*
*****************************************************************************************/
const mockSpec = JSON.stringify(
{
'httpRoute': {
'action': {
'weightedTargets': [
{
'virtualNode': 'my-virtual-node',
'weight': 1,
},
],
},
'match': {
'prefix': '/',
},
},
},
);
const parameters = {
meshName: 'my-mesh',
spec: mockSpec,
routeName: 'my-route',
virtualRouterName: 'my-virtual-router',
action: 'create',
};
const createInput = {
meshName: 'my-mesh',
spec: mockSpec,
routeName: 'my-route',
virtualRouterName: 'my-virtual-router',
};
const describeInput = {
meshName: 'my-mesh',
routeName: 'my-route',
virtualRouterName: 'my-virtual-router',
};
const deleteInput = {
...describeInput,
};
/**
*
* MOCKED RESPONSES
*
*****************************************************************************************/
const createdOrFoundResponse = {
$metadata: {
httpStatusCode: 201,
},
route: {
meshName: 'my-mesh',
metadata: {
arn: 'arn:aws:appmesh:us-east-1:1234567890:mesh/my-mesh/virtualRouter/my-virtual-router/route/my-route',
},
spec: mockSpec,
status: {status: 'ACTIVE'}, // or INACTIVE, DELETED
routeName: 'my-route',
virtualRouterName: 'my-virtual-router',
},
};
// DescribeRouteCommandError
const missingResponse = {
$metadata: {
httpStatusCode: 404,
},
name: 'NotFoundException',
$fault: 'client',
message: 'Route with name my-route is not present in mesh my-mesh for account 1234567890',
};
const genericFailureResponse = {
$metadata: {
httpStatusCode: 500,
},
name: 'NotARealException',
$fault: 'client',
message: 'Not A Real Exception. Only used for testing.',
};
/**
*
* PARAMETER CONVERSION
* Converts the supplied (create) parameters into the formats for describe, update, and delete.
*
*****************************************************************************************/
describe('createInput', () => {
test('only returns valid elements', () => {
expect(i.createInput(parameters)).toStrictEqual(createInput);
});
});
describe('describeInput', () => {
test('only returns valid elements', () => {
expect(i.describeInput(parameters)).toStrictEqual(describeInput);
});
});
describe('deleteInput', () => {
test('only returns valid elements', () => {
expect(i.deleteInput(parameters)).toStrictEqual(deleteInput);
});
});
/**
*
* AWS CALLS
* Take the supplied parameters and send them to AWS
*
*****************************************************************************************/
describe('describeResource', () => {
test('returns the Route when one exists and it is active', async () => {
AppMeshClient.send = jest.fn().mockResolvedValue(createdOrFoundResponse);
await expect(i.describeResource(AppMeshClient, parameters)).resolves.toEqual(createdOrFoundResponse);
});
test('throws an error when none exists already', async () => {
AppMeshClient.send = jest.fn().mockRejectedValue(missingResponse);
await expect(i.describeResource(AppMeshClient, parameters)).rejects.toEqual(missingResponse);
});
test('throws an error when a generic error occurs', async () => {
AppMeshClient.send = jest.fn().mockRejectedValue(genericFailureResponse);
await expect(i.describeResource(AppMeshClient, parameters)).rejects.toEqual(genericFailureResponse);
});
});
describe('createResource', () => {
test('returns the Route when it is created successfully', async () => {
AppMeshClient.send = jest.fn().mockResolvedValue(createdOrFoundResponse);
await expect(i.createResource(AppMeshClient, parameters)).resolves.toEqual(createdOrFoundResponse);
});
test('throws an error when a generic error occurs', async () => {
AppMeshClient.send = jest.fn().mockRejectedValue(genericFailureResponse);
await expect(i.createResource(AppMeshClient, parameters)).rejects.toEqual(genericFailureResponse);
});
});
describe('deleteResource', () => {
test('returns the Route when it is deleted successfully', async () => {
AppMeshClient.send = jest.fn().mockResolvedValue(createdOrFoundResponse);
await expect(i.deleteResource(AppMeshClient, parameters)).resolves.toEqual(createdOrFoundResponse);
});
test('throws an error when a generic error occurs', async () => {
AppMeshClient.send = jest.fn().mockRejectedValue(genericFailureResponse);
await expect(i.deleteResource(AppMeshClient, parameters)).rejects.toEqual(genericFailureResponse);
});
});
/**
*
* FIND/CREATE/DELETE BUSINESS LOGIC
*
*****************************************************************************************/
describe('findOrCreate', () => {
test('creates the Route when none exists already', async () => {
AppMeshClient.send = jest.fn()
.mockRejectedValueOnce(missingResponse) // DescribeRouteCommand
.mockResolvedValueOnce(createdOrFoundResponse); // CreateRouteCommand
await expect(i.findOrCreate(AppMeshClient, parameters)).resolves.toEqual(createdOrFoundResponse);
});
test('returns the Route when one exists and it is active', async () => {
AppMeshClient.send = jest.fn().mockResolvedValue(createdOrFoundResponse); // DescribeRouteCommand
await expect(i.findOrCreate(AppMeshClient, parameters)).resolves.toEqual(createdOrFoundResponse);
});
test('throws an error when a generic error occurs', async () => {
AppMeshClient.send = jest.fn().mockRejectedValueOnce(genericFailureResponse); // CreateRouteCommand
await expect(i.findOrCreate(AppMeshClient, parameters)).rejects.toEqual(genericFailureResponse);
});
});
/**
*
* GITHUB ACTIONS INTERFACE
* - Gets parameters from the user.
* - Posts results as output.
*
*****************************************************************************************/
describe('getParameters', () => {
describe('when there is not meshOwner', () => {
test('it does not include meshOwner', () => {
core.getInput = jest
.fn()
.mockReturnValueOnce('') // zeroeth call is to get the action
.mockReturnValueOnce('') // first call is to get the mesh owner
.mockReturnValueOnce('mesh') // second call is to get the name of the Mesh
.mockReturnValueOnce('name') // third call is to get the name
.mockReturnValueOnce('virtualRouterName') // fourth call is to get the name of the VirtualRouter
.mockReturnValueOnce(mockSpec); // fifth call is to get the spec
expect(i.getParameters()).toStrictEqual(
{
action: 'create',
spec: JSON.parse(mockSpec),
routeName: 'name',
meshName: 'mesh',
virtualRouterName: 'virtualRouterName',
},
);
});
});
describe('when there is meshOwner', () => {
test('it includes meshOwner', () => {
core.getInput = jest
.fn()
.mockReturnValueOnce('') // zeroeth call is to get the action
.mockReturnValueOnce('meshOwner') // first call is to get the mesh owner
.mockReturnValueOnce('mesh') // second call is to get the name of the Mesh
.mockReturnValueOnce('name') // third call is to get the name
.mockReturnValueOnce('virtualRouterName') // fourth call is to get the name of the VirtualRouter
.mockReturnValueOnce(mockSpec); // fifth call is to get the spec
expect(i.getParameters()).toStrictEqual(
{
action: 'create',
spec: JSON.parse(mockSpec),
routeName: 'name',
meshName: 'mesh',
meshOwner: 'meshOwner',
virtualRouterName: 'virtualRouterName',
},
);
});
});
describe('when there are tags', () => {
test('it includes tags', () => {
core.getInput = jest
.fn()
.mockReturnValueOnce('') // zeroeth call is to get the action
.mockReturnValueOnce('') // first call is to get the mesh owner
.mockReturnValueOnce('mesh') // second call is to get the name of the Mesh
.mockReturnValueOnce('name') // third call is to get the name
.mockReturnValueOnce('virtualRouterName') // fourth call is to get the name of the VirtualRouter
.mockReturnValueOnce(mockSpec) // fifth call is to get the spec
.mockReturnValueOnce('[{"key": "my-key"}]'); // sixth call is to get the tags
expect(i.getParameters()).toStrictEqual(
{
action: 'create',
spec: JSON.parse(mockSpec),
routeName: 'name',
meshName: 'mesh',
tags: [{key: 'my-key'}],
virtualRouterName: 'virtualRouterName',
},
);
});
});
describe('when there is both meshOwner and tags', () => {
test('it includes tags and meshOwner', () => {
core.getInput = jest
.fn()
.mockReturnValueOnce('') // zeroeth call is to get the action
.mockReturnValueOnce('meshOwner') // first call is to get the mesh owner
.mockReturnValueOnce('mesh') // second call is to get the name of the Mesh
.mockReturnValueOnce('name') // third call is to get the name
.mockReturnValueOnce('virtualRouterName') // fourth call is to get the name of the VirtualRouter
.mockReturnValueOnce(mockSpec) // fifth call is to get the spec
.mockReturnValueOnce('[{"key": "my-key"}]'); // sixth call is to get the tags
expect(i.getParameters()).toStrictEqual(
{
action: 'create',
spec: JSON.parse(mockSpec),
routeName: 'name',
meshName: 'mesh',
meshOwner: 'meshOwner',
tags: [{key: 'my-key'}],
virtualRouterName: 'virtualRouterName',
},
);
});
});
describe('when there is a typo in the spec', () => {
test('it throws an error', () => {
core.getInput = jest
.fn()
.mockReturnValueOnce('') // zeroeth call is to get the action
.mockReturnValueOnce('') // first call is to get the mesh owner
.mockReturnValueOnce('mesh') // second call is to get the name of the Mesh
.mockReturnValueOnce('name') // third call is to get the name
.mockReturnValueOnce('virtualRouterName') // fourth call is to get the name of the VirtualRouter
.mockReturnValueOnce('{') // fifth call is to get the spec
.mockReturnValueOnce('[{"key": "my-key"}]'); // sixth call is to get the tags
expect(() => i.getParameters()).toThrow('Invalid JSON for spec: Unexpected end of JSON input: {');
});
});
});
describe('postToGithub', () => {
test('sets response and arn when created or found', () => {
i.postToGithub(createdOrFoundResponse);
expect(core.setOutput).toHaveBeenNthCalledWith(1, 'response', createdOrFoundResponse);
expect(core.setOutput).toHaveBeenNthCalledWith(2, 'arn', 'arn:aws:appmesh:us-east-1:1234567890:mesh/my-mesh/virtualRouter/my-virtual-router/route/my-route');
});
});