-
Notifications
You must be signed in to change notification settings - Fork 0
/
aurora.activity-stream.is-complete.test.ts
159 lines (139 loc) · 4.66 KB
/
aurora.activity-stream.is-complete.test.ts
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
import { RDSClient, DescribeDBClustersCommand } from '@aws-sdk/client-rds';
import { mockClient } from 'aws-sdk-client-mock';
import sinon from 'sinon';
import { CfnRequestType, IsComplete, IsCompleteEvent } from '../src/aurora.activity-stream';
const rdsMock = mockClient(RDSClient);
sinon.stub(console, 'log');
sinon.stub(console, 'error');
beforeEach(() => {
rdsMock.reset();
});
const resourcePropertiesBase = {
ServiceToken: 'fakeServiceToken',
};
const eventBase = {
LogicalResourceId: 'fakeLogicalResourceId',
RequestId: 'fakeRequestId',
ResourceType: 'Custom::RdsUser',
ResponseURL: 'fakeResponseUrl',
ResourceProperties: resourcePropertiesBase,
ServiceToken: 'fakeServiceToken',
StackId: 'fakeStackId',
};
const context = {
awsRequestId: 'fakeAwsRequestId',
callbackWaitsForEmptyEventLoop: true,
done: sinon.stub(),
fail: sinon.stub(),
functionName: 'fakeFunctionName',
functionVersion: 'fakeFunctionVersion',
getRemainingTimeInMillis: () => 0,
invokedFunctionArn: 'fakeInvokedFunctionArn',
logGroupName: 'fakeLogGroupName',
logStreamName: 'fakeLogStreamName',
memoryLimitInMB: 'fakeMemoryLimitInMB',
succeed: () => {},
};
const callback = (_err: any, _data: any) => {};
describe('update', () => {
const isCompleteEvent: IsCompleteEvent = {
...eventBase,
PhysicalResourceId: 'fakePhysicalResourceId',
RequestType: CfnRequestType.UPDATE,
};
it('completes', async () => {
const r = await IsComplete(isCompleteEvent, context, callback);
expect(r.IsComplete).toEqual(true);
expect(rdsMock.calls().length).toEqual(0);
});
});
describe('create', () => {
const isCompleteEvent: IsCompleteEvent = {
...eventBase,
PhysicalResourceId: 'fakePhysicalResourceId',
RequestType: CfnRequestType.CREATE,
};
// Not sure how to get this working. But... it covers a really small niche.
// it('passes through when describeDBClusters fails', async () => {
// rdsMock.on(DescribeDBClustersCommand).rejects(new Error('fakeError'));
// await expect(IsComplete(isCompleteEvent, context, callback)).rejects;
// expect(rdsMock.calls().length).toEqual(1);
// });
it('completes when no cluster found', async () => {
rdsMock.on(DescribeDBClustersCommand).resolves({
DBClusters: [],
});
const r = await IsComplete(isCompleteEvent, context, callback);
expect(r.IsComplete).toEqual(true);
expect(rdsMock.calls().length).toEqual(1);
});
it('completes when no dbclusters returned', async () => {
rdsMock.on(DescribeDBClustersCommand).resolves({});
const r = await IsComplete(isCompleteEvent, context, callback);
expect(r.IsComplete).toEqual(true);
expect(rdsMock.calls().length).toEqual(1);
});
it('completes when cluster found and started', async () => {
rdsMock.on(DescribeDBClustersCommand).resolves({
DBClusters: [
{
ActivityStreamStatus: 'started',
},
],
});
const r = await IsComplete(isCompleteEvent, context, callback);
expect(r.IsComplete).toEqual(true);
expect(rdsMock.calls().length).toEqual(1);
});
it('not completes when cluster found and not started', async () => {
rdsMock.on(DescribeDBClustersCommand).resolves({
DBClusters: [
{
ActivityStreamStatus: 'starting',
},
],
});
const r = await IsComplete(isCompleteEvent, context, callback);
expect(r.IsComplete).toEqual(false);
expect(rdsMock.calls().length).toEqual(1);
});
});
describe('delete', () => {
const isCompleteEvent: IsCompleteEvent = {
...eventBase,
PhysicalResourceId: 'fakePhysicalResourceId',
RequestType: CfnRequestType.DELETE,
};
it('completes when no cluster found', async () => {
rdsMock.on(DescribeDBClustersCommand).resolves({
DBClusters: [],
});
const r = await IsComplete(isCompleteEvent, context, callback);
expect(r.IsComplete).toEqual(true);
expect(rdsMock.calls().length).toEqual(1);
});
it('completes when cluster found and stopped', async () => {
rdsMock.on(DescribeDBClustersCommand).resolves({
DBClusters: [
{
ActivityStreamStatus: 'stopped',
},
],
});
const r = await IsComplete(isCompleteEvent, context, callback);
expect(r.IsComplete).toEqual(true);
expect(rdsMock.calls().length).toEqual(1);
});
it('not completes when cluster found and not stopped', async () => {
rdsMock.on(DescribeDBClustersCommand).resolves({
DBClusters: [
{
ActivityStreamStatus: 'stopping',
},
],
});
const r = await IsComplete(isCompleteEvent, context, callback);
expect(r.IsComplete).toEqual(false);
expect(rdsMock.calls().length).toEqual(1);
});
});