-
Notifications
You must be signed in to change notification settings - Fork 369
Expand file tree
/
Copy pathdeployment_create_message_spec.rb
More file actions
626 lines (532 loc) · 20.8 KB
/
deployment_create_message_spec.rb
File metadata and controls
626 lines (532 loc) · 20.8 KB
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
require 'lightweight_spec_helper'
require 'messages/deployment_create_message'
module VCAP::CloudController
RSpec.describe DeploymentCreateMessage do
let(:body) do
{
'strategy' => 'rolling',
'relationships' => {
'app' => {
'data' => {
'guid' => '123'
}
}
}
}
end
describe 'validations' do
describe 'strategy' do
it 'can be rolling' do
body['strategy'] = 'rolling'
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
it 'can be canary' do
body['strategy'] = 'canary'
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
it 'is valid with nil strategy' do
body['strategy'] = nil
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
it 'is not a valid strategy' do
body['strategy'] = 'potato'
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include("Strategy 'potato' is not a supported deployment strategy")
end
end
describe 'options' do
context 'not set' do
before do
body['options'] = nil
end
it 'succeeds' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
context 'set to a non-hash' do
before do
body['options'] = 'foo'
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
end
end
context 'when set to hash' do
before do
body['options'] = {}
end
it 'succeeds' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
end
describe 'max_in_flight' do
context 'when set to a non-integer' do
before do
body['options'] = { max_in_flight: 'two' }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Max in flight must be an integer greater than 0')
end
end
context 'when set to a negative integer' do
before do
body['options'] = { max_in_flight: -2 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Max in flight must be an integer greater than 0')
end
end
context 'when set to zero' do
before do
body['options'] = { max_in_flight: 0 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Max in flight must be an integer greater than 0')
end
end
context 'when set to positive integer' do
before do
body['options'] = { max_in_flight: 2 }
end
it 'succeeds' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
end
describe 'web_instances' do
context 'when set to a non-integer' do
before do
body['options'] = { web_instances: 'two' }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Web instances is not a number')
end
end
context 'when set to a negative integer' do
before do
body['options'] = { web_instances: -2 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Web instances must be greater than or equal to 0')
end
end
context 'when set to zero' do
before do
body['options'] = { web_instances: 0 }
end
it 'is valid' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
context 'when set to positive integer' do
before do
body['options'] = { web_instances: 2 }
end
it 'succeeds' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
end
describe 'memory_in_mb' do
context 'when set to a non-integer' do
before do
body['options'] = { memory_in_mb: 'two' }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Memory in mb is not a number')
end
end
context 'when set to a negative integer' do
before do
body['options'] = { memory_in_mb: -2 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Memory in mb must be greater than 0')
end
end
context 'when set to zero' do
before do
body['options'] = { memory_in_mb: 0 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Memory in mb must be greater than 0')
end
end
context 'when set to positive integer' do
before do
body['options'] = { memory_in_mb: 2 }
end
it 'succeeds' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
end
describe 'disk_in_mb' do
context 'when set to a non-integer' do
before do
body['options'] = { disk_in_mb: 'two' }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Disk in mb is not a number')
end
end
context 'when set to a negative integer' do
before do
body['options'] = { disk_in_mb: -2 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Disk in mb must be greater than 0')
end
end
context 'when set to zero' do
before do
body['options'] = { disk_in_mb: 0 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Disk in mb must be greater than 0')
end
end
context 'when set to positive integer' do
before do
body['options'] = { disk_in_mb: 2 }
end
it 'succeeds' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
end
describe 'log_rate_limit_in_bytes_per_second' do
context 'when set to a non-integer' do
before do
body['options'] = { log_rate_limit_in_bytes_per_second: 'two' }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Log rate limit in bytes per second is not a number')
end
end
context 'when set to a negative integer below -1' do
before do
body['options'] = { log_rate_limit_in_bytes_per_second: -2 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors.full_messages).to include('Log rate limit in bytes per second must be greater than or equal to -1')
end
end
context 'when set negative 1' do
before do
body['options'] = { log_rate_limit_in_bytes_per_second: -1 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
context 'when set to zero' do
before do
body['options'] = { log_rate_limit_in_bytes_per_second: 0 }
end
it 'is not valid' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
context 'when set to positive integer' do
before do
body['options'] = { log_rate_limit_in_bytes_per_second: 2 }
end
it 'succeeds' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
end
end
describe 'canary options' do
before do
body['strategy'] = 'canary'
end
it 'is valid when options is nil' do
body['options'] = { 'canary' => nil }
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
it 'is valid when options a hash' do
body['options'] = { canary: {} }
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
it 'errors when options is not a hash' do
body['options'] = { canary: 'test' }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary']).to include('must be an object')
end
it 'errors when strategy is not set' do
body['options'] = { canary: {} }
body['strategy'] = nil
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary']).to include('are only valid for Canary deployments')
end
it 'errors when strategy is set to rolling' do
body['options'] = { canary: {} }
body['strategy'] = 'rolling'
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary']).to include('are only valid for Canary deployments')
end
it 'errors when there is an unknown option' do
body['options'] = { foo: 'bar', baz: 'boo' }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:options]).to include('has unsupported key(s): foo, baz')
end
context 'steps' do
it 'errors when is not an array' do
body['options'] = { canary: { steps: 'foo' } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps']).to include('must be an array of objects')
end
it 'is valid when is an empty array' do
body['options'] = { canary: { steps: [] } }
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
it 'is valid when is nil' do
body['options'] = { canary: { steps: nil } }
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
it 'errors if not an array of objects' do
body['options'] = { canary: { steps: [{ instance_weight: 1 }, 'foo'] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps']).to include('must be an array of objects')
end
it 'errors if steps have an unsupported key' do
body['options'] = { canary: { steps: [{ instance_weight: 1 }, { instance_weight: 1, foo: 'bar', baz: 1 }, { baz: 1 }] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps']).to include('has unsupported key(s): foo, baz')
expect(message.errors[:'options.canary.steps']).to include('has unsupported key(s): baz')
end
context 'instance_weights' do
it 'is valid if instance_weights are Integers between 1-100 in ascending order' do
body['options'] = { canary: { steps: [{ instance_weight: 1 }, { instance_weight: 2 }, { instance_weight: 50 }, { instance_weight: 99 }, { instance_weight: 100 }] } }
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
it 'is valid if there are duplicate instance_weights' do
body['options'] = { canary: { steps: [{ instance_weight: 10 }, { instance_weight: 10 }, { instance_weight: 50 }, { instance_weight: 50 }] } }
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
end
it 'errors if steps are missing instance_weight' do
body['options'] = { canary: { steps: [{ instance_weight: 1 }, { foo: 'bar' }] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps']).to include('missing key: "instance_weight"')
end
it 'errors if steps are missing instance_weight with empty hash' do
body['options'] = { canary: { steps: [{ instance_weight: 1 }, {}] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps']).to include('missing key: "instance_weight"')
end
it 'errors if any instance_weight is not an Integer' do
body['options'] = { canary: { steps: [{ instance_weight: 'foo' }] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps.instance_weight']).to include('must be an Integer between 1-100 (inclusive)')
end
it 'errors if any instance_weight is equal to 0' do
body['options'] = { canary: { steps: [{ instance_weight: 0 }, { instance_weight: 50 }] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps.instance_weight']).to include('must be an Integer between 1-100 (inclusive)')
end
it 'errors if any instance_weight is less than 0' do
body['options'] = { canary: { steps: [{ instance_weight: -5 }, { instance_weight: 50 }] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps.instance_weight']).to include('must be an Integer between 1-100 (inclusive)')
end
it 'errors if any instance_weight is greater than 100' do
body['options'] = { canary: { steps: [{ instance_weight: 50 }, { instance_weight: 101 }] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps.instance_weight']).to include('must be an Integer between 1-100 (inclusive)')
end
it 'errors if any instance_weights are not sorted in ascending order' do
body['options'] = { canary: { steps: [{ instance_weight: 75 }, { instance_weight: 25 }] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps.instance_weight']).to include('must be sorted in ascending order')
end
it 'errors if any instance_weights are a non-integer numeric' do
body['options'] = { canary: { steps: [{ instance_weight: 2 }, { instance_weight: 25.0 }] } }
message = DeploymentCreateMessage.new(body)
expect(message).not_to be_valid
expect(message.errors[:'options.canary.steps.instance_weight']).to include('must be an Integer between 1-100 (inclusive)')
end
end
end
end
describe 'metadata' do
context 'when the annotations params are valid' do
let(:params) do
{
'metadata' => {
'annotations' => {
'potato' => 'mashed'
}
}
}
end
it 'is valid and correctly parses the annotations' do
message = DeploymentCreateMessage.new(params)
expect(message).to be_valid
expect(message.annotations).to include(potato: 'mashed')
end
end
context 'when the annotations params are not valid' do
let(:params) do
{
'metadata' => {
'annotations' => 'timmyd'
}
}
end
it 'is invalid' do
message = DeploymentCreateMessage.new(params)
expect(message).not_to be_valid
expect(message.errors[:metadata]).to include('\'annotations\' is not an object')
end
end
end
end
describe 'web_instances' do
context 'when options is not specified' do
before do
body['options'] = nil
end
it 'returns nil' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
expect(message.web_instances).to be_nil
end
end
context 'when web_instances is specified' do
before do
body['options'] = { 'web_instances' => 10 }
end
it 'returns the passed value' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
expect(message.web_instances).to eq 10
end
end
end
describe 'max_in_flight' do
context 'when options is not specified' do
before do
body['options'] = nil
end
it 'returns the default value of 1' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
expect(message.max_in_flight).to be 1
end
end
context 'when options is specified, but not max_in_flight' do
before do
body['options'] = { canary: nil }
end
it 'returns the default value of 1' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
expect(message.max_in_flight).to be 1
end
end
context 'when options.max_in_flight is set to nil' do
before do
body['options'] = { max_in_flight: nil }
end
it 'returns the default value of 1' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
expect(message.max_in_flight).to be 1
end
end
context 'when options.max_in_flight is specified' do
before do
body['options'] = { max_in_flight: 10 }
end
it 'returns the specified value' do
message = DeploymentCreateMessage.new(body)
expect(message).to be_valid
expect(message.max_in_flight).to be 10
end
end
end
describe 'canary steps' do
context 'when options is not specified' do
before do
body['options'] = nil
end
it 'returns nil' do
message = DeploymentCreateMessage.new(body)
expect(message.canary_steps).to be_nil
end
end
context 'when canary and steps are specified' do
before do
body['options'] = { canary: { steps: [{ instance_weight: 1 }] } }
end
it 'returns the passed value' do
message = DeploymentCreateMessage.new(body)
expect(message.canary_steps).to eq [{ instance_weight: 1 }]
end
end
end
end
end