-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathsetDeploymentBucketName.test.js
90 lines (79 loc) · 2.91 KB
/
setDeploymentBucketName.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
'use strict';
const sinon = require('sinon');
const BbPromise = require('bluebird');
const setDeploymentBucketName = require('./setDeploymentBucketName');
const GoogleProvider = require('../provider/googleProvider');
const Serverless = require('../test/serverless');
const GoogleCommand = require('../test/googleCommand');
describe('SetDeploymentBucketName', () => {
let serverless;
let googleCommand;
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, setDeploymentBucketName);
requestStub = sinon.stub(googleCommand.provider, 'request');
});
afterEach(() => {
googleCommand.provider.request.restore();
});
describe('#setDeploymentBucketName()', () => {
it('should set the name if the deployment request errors out', () => {
requestStub.returns(BbPromise.reject());
return googleCommand.setDeploymentBucketName().then(() => {
expect(serverless.service.provider.deploymentBucketName).toMatch(/sls-my-service-dev-.+/);
expect(
requestStub.calledWithExactly('deploymentmanager', 'resources', 'list', {
project: 'my-project',
deployment: 'sls-my-service-dev',
})
).toEqual(true);
});
});
it('should set the name if a deployment is not present', () => {
const response = {};
requestStub.returns(BbPromise.resolve(response));
return googleCommand.setDeploymentBucketName().then(() => {
expect(serverless.service.provider.deploymentBucketName).toMatch(/sls-my-service-dev-.+/);
expect(
requestStub.calledWithExactly('deploymentmanager', 'resources', 'list', {
project: 'my-project',
deployment: 'sls-my-service-dev',
})
).toEqual(true);
});
});
it('should set the bucket name with the one of the deployment if exists', () => {
const response = {
resources: [
{ type: 'some-other-type', name: 'some-other-resource' },
{ type: 'storage.v1.bucket', name: 'some-bucket' },
{ type: 'storage.v1.bucket', name: 'sls-my-service-dev-12345678' },
],
};
requestStub.returns(BbPromise.resolve(response));
return googleCommand.setDeploymentBucketName().then(() => {
expect(serverless.service.provider.deploymentBucketName).toEqual(
'sls-my-service-dev-12345678'
);
expect(
requestStub.calledWithExactly('deploymentmanager', 'resources', 'list', {
project: 'my-project',
deployment: 'sls-my-service-dev',
})
).toEqual(true);
});
});
});
});