-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathmonitorDeployment.test.js
157 lines (140 loc) · 4.86 KB
/
monitorDeployment.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
'use strict';
const sinon = require('sinon');
const BbPromise = require('bluebird');
const monitorDeployment = require('./monitorDeployment');
const GoogleProvider = require('../provider/googleProvider');
const Serverless = require('../test/serverless');
const GoogleCommand = require('../test/googleCommand');
describe('MonitorDeployment', () => {
let serverless;
let googleCommand;
let consoleLogStub;
let requestStub;
beforeEach(() => {
serverless = new Serverless();
serverless.service = {
service: 'my-service',
};
serverless.service.provider = {
project: 'my-project',
};
const options = {
stage: 'dev',
region: 'us-central1',
};
serverless.setProvider('google', new GoogleProvider(serverless));
googleCommand = new GoogleCommand(serverless, options, monitorDeployment);
consoleLogStub = sinon.stub(googleCommand.serverless.cli, 'log').returns();
requestStub = sinon.stub(googleCommand.provider, 'request');
});
afterEach(() => {
googleCommand.serverless.cli.log.restore();
googleCommand.provider.request.restore();
});
describe('#monitorDeployment()', () => {
describe('when monitoring creations or updates', () => {
it('should keep monitoring until "DONE" status is reached', () => {
const deploymentName = 'sls-my-service-dev';
const response1 = {
deployments: [
{
name: deploymentName,
operation: {
status: 'RUNNING',
},
},
],
};
const response2 = {
deployments: [
{
name: deploymentName,
operation: {
status: 'DONE',
},
},
],
};
requestStub.onCall(0).returns(BbPromise.resolve(response1));
requestStub.onCall(1).returns(BbPromise.resolve(response2));
return googleCommand
.monitorDeployment(deploymentName, 'create', 10)
.then((deploymentStatus) => {
expect(consoleLogStub.called).toEqual(true);
expect(
requestStub.calledWithExactly('deploymentmanager', 'deployments', 'list', {
project: 'my-project',
})
).toEqual(true);
expect(deploymentStatus).toEqual('DONE');
});
});
it('should throw an error if deployment errors out', () => {
const deploymentName = 'sls-my-service-dev';
const response = {
deployments: [
{
name: deploymentName,
operation: {
error: {
errors: [
{
code: 'ERROR',
message: '{ "ResourceErrorMessage": { "details": [ "Error detail"] } }',
},
],
},
},
},
],
};
requestStub.returns(BbPromise.resolve(response));
return googleCommand.monitorDeployment(deploymentName, 'update', 10).catch((error) => {
expect(consoleLogStub.called).toEqual(true);
expect(
requestStub.calledWithExactly('deploymentmanager', 'deployments', 'list', {
project: 'my-project',
})
).toEqual(true);
expect(error.toString()).toMatch(/Error detail/);
});
});
});
describe('when monitoring removals', () => {
it('should stop if there are no deployments and the action is "remove"', () => {
const deploymentName = 'sls-my-service-dev';
const response = {};
requestStub.returns(BbPromise.resolve(response));
return googleCommand
.monitorDeployment(deploymentName, 'remove', 10)
.then((deploymentStatus) => {
expect(consoleLogStub.called).toEqual(true);
expect(
requestStub.calledWithExactly('deploymentmanager', 'deployments', 'list', {
project: 'my-project',
})
).toEqual(true);
expect(deploymentStatus).toEqual('DONE');
});
});
it('should stop if the deployment is unavailable and the action is "remove"', () => {
const deploymentName = 'sls-my-service-dev';
const response = {
deployments: [{ name: 'a-different-deployment' }],
};
requestStub.returns(BbPromise.resolve(response));
return googleCommand
.monitorDeployment(deploymentName, 'remove', 10)
.then((deploymentStatus) => {
expect(consoleLogStub.called).toEqual(true);
expect(
requestStub.calledWithExactly('deploymentmanager', 'deployments', 'list', {
project: 'my-project',
})
).toEqual(true);
expect(deploymentStatus).toEqual('DONE');
});
});
});
});
});