-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathhelm-chart.test.ts
276 lines (215 loc) · 8.43 KB
/
helm-chart.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
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
import * as path from 'path';
import { testFixtureCluster } from './util';
import { Template } from '../../assertions';
import { Asset } from '../../aws-s3-assets';
import { Duration } from '../../core';
import * as eks from '../lib';
/* eslint-disable max-len */
describe('helm chart', () => {
describe('add Helm chart', () => {
test('should have default namespace', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyChart', { cluster, chart: 'chart' });
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, { Namespace: 'default' });
});
test('should have a lowercase default release name', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyChart', { cluster, chart: 'chart' });
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, {
Release: 'stackmychartff398361',
});
});
test('should throw when chart and chartAsset not specified', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
const t = () => {
new eks.HelmChart(stack, 'MyChart', { cluster });
};
// THEN
expect(t).toThrowError();
});
test('should throw when chart and repository specified', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
const t = () => {
const chartAsset = new Asset(stack, 'ChartAsset', {
path: path.join(__dirname, 'test-chart'),
});
new eks.HelmChart(stack, 'MyChart', {
cluster,
chartAsset,
repository: 'repository',
});
};
// THEN
expect(t).toThrowError();
});
test('should throw when chartAsset and version specified', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
const t = () => {
const chartAsset = new Asset(stack, 'ChartAsset', {
path: path.join(__dirname, 'test-chart'),
});
new eks.HelmChart(stack, 'MyChart', {
cluster,
chartAsset,
version: 'version',
});
};
// THEN
expect(t).toThrowError();
});
test('should handle chart from S3 asset', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
const chartAsset = new Asset(stack, 'ChartAsset', {
path: path.join(__dirname, 'test-chart'),
});
new eks.HelmChart(stack, 'MyChart', { cluster, chartAsset });
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, {
ChartAssetURL: {
'Fn::Sub':
's3://cdk-hnb659fds-assets-${AWS::AccountId}-us-east-1/d65fbdc11b108e0386ed8577c454d4544f6d4e7960f84a0d2e211478d6324dbf.zip',
},
});
});
test('should use the last 53 of the default release name', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyChartNameWhichISMostProbablyLongerThanFiftyThreeCharacters', {
cluster,
chart: 'chart',
});
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, {
Release: 'hismostprobablylongerthanfiftythreecharacterscaf15d09',
});
});
test('with values', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyChart', { cluster, chart: 'chart', values: { foo: 123 } });
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, { Values: '{"foo":123}' });
});
test('should support create namespaces by default', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyChart', { cluster, chart: 'chart' });
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, { CreateNamespace: true });
});
test('should support create namespaces when explicitly specified', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyChart', { cluster, chart: 'chart', createNamespace: true });
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, { CreateNamespace: true });
});
test('should not create namespaces when disabled', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyChart', { cluster, chart: 'chart', createNamespace: false });
// THEN
const charts = Template.fromStack(stack).findResources(eks.HelmChart.RESOURCE_TYPE, { CreateNamespace: true });
expect(Object.keys(charts).length).toEqual(0);
});
test('should support waiting until everything is completed before marking release as successful', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyWaitingChart', { cluster, chart: 'chart', wait: true });
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, { Wait: true });
});
test('should default to not waiting before marking release as successful', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyWaitingChart', { cluster, chart: 'chart' });
// THEN
const charts = Template.fromStack(stack).findResources(eks.HelmChart.RESOURCE_TYPE, { Wait: true });
expect(Object.keys(charts).length).toEqual(0);
});
test('should enable waiting when specified', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyWaitingChart', { cluster, chart: 'chart', wait: true });
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, { Wait: true });
});
test('should disable waiting when specified as false', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyWaitingChart', { cluster, chart: 'chart', wait: false });
// THEN
const charts = Template.fromStack(stack).findResources(eks.HelmChart.RESOURCE_TYPE, { Wait: true });
expect(Object.keys(charts).length).toEqual(0);
});
test('should enable atomic operations when specified', () => {
//GIVEN
const { stack, cluster } = testFixtureCluster();
//WHEN
new eks.HelmChart(stack, 'MyAtomicChart', { cluster, chart: 'chart', atomic: true });
//THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, { Atomic: true });
});
test('should disable atomic operations by default', () => {
//GIVEN
const { stack, cluster } = testFixtureCluster();
//WHEN
new eks.HelmChart(stack, 'MyAtomicChart', { cluster, chart: 'chart' });
//THEN
const charts = Template.fromStack(stack).findResources(eks.HelmChart.RESOURCE_TYPE, { Atomic: true });
expect(Object.keys(charts).length).toEqual(0);
});
test('should timeout only after 10 minutes', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyChart', {
cluster,
chart: 'chart',
timeout: Duration.minutes(10),
});
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, { Timeout: '600s' });
});
test('should disable skip crds by default', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyChart', { cluster, chart: 'chart' });
// THEN
const charts = Template.fromStack(stack).findResources(eks.HelmChart.RESOURCE_TYPE, { SkipCrds: false });
expect(Object.keys(charts).length).toEqual(0);
});
test('should enable atomic operations when specified', () => {
// GIVEN
const { stack, cluster } = testFixtureCluster();
// WHEN
new eks.HelmChart(stack, 'MyAtomicChart', { cluster, chart: 'chart', skipCrds: true });
// THEN
Template.fromStack(stack).hasResourceProperties(eks.HelmChart.RESOURCE_TYPE, { SkipCrds: true });
});
});
});