forked from mhart/kinesalite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincreaseStreamRetentionPeriod.js
132 lines (105 loc) · 4.87 KB
/
increaseStreamRetentionPeriod.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
var helpers = require('./helpers')
require('should')
var target = 'IncreaseStreamRetentionPeriod',
request = helpers.request,
opts = helpers.opts.bind(null, target),
randomName = helpers.randomName,
assertType = helpers.assertType.bind(null, target),
assertValidation = helpers.assertValidation.bind(null, target),
assertNotFound = helpers.assertNotFound.bind(null, target),
assertInvalidArgument = helpers.assertInvalidArgument.bind(null, target)
describe('increaseStreamRetentionPeriod', function() {
describe('serializations', function() {
it('should return SerializationException when StreamName is not a String', function(done) {
assertType('StreamName', 'String', done)
})
it('should return SerializationException when RetentionPeriodHours is not an Integer', function(done) {
assertType('RetentionPeriodHours', 'Integer', done)
})
})
describe('validations', function() {
it('should return ValidationException for no StreamName', function(done) {
assertValidation({}, [
'Value null at \'retentionPeriodHours\' failed to satisfy constraint: ' +
'Member must not be null',
'Value null at \'streamName\' failed to satisfy constraint: ' +
'Member must not be null',
], done)
})
it('should return ValidationException for empty StreamName', function(done) {
assertValidation({StreamName: '', RetentionPeriodHours: -1}, [
'Value \'-1\' at \'retentionPeriodHours\' failed to satisfy constraint: ' +
'Member must have value greater than or equal to 1',
'Value \'\' at \'streamName\' failed to satisfy constraint: ' +
'Member must satisfy regular expression pattern: [a-zA-Z0-9_.-]+',
'Value \'\' at \'streamName\' failed to satisfy constraint: ' +
'Member must have length greater than or equal to 1',
], done)
})
it('should return ValidationException for long StreamName', function(done) {
var name = new Array(129 + 1).join('a')
assertValidation({StreamName: name, RetentionPeriodHours: 24}, [
'Value \'' + name + '\' at \'streamName\' failed to satisfy constraint: ' +
'Member must have length less than or equal to 128',
], done)
})
it('should return ValidationException for retention period greater than 168', function(done) {
assertValidation({StreamName: 'a', RetentionPeriodHours: 169}, [
'Value \'169\' at \'retentionPeriodHours\' failed to satisfy constraint: ' +
'Member must have value less than or equal to 168',
], done)
})
it('should return InvalidArgumentException for retention period less than 24', function(done) {
assertInvalidArgument({StreamName: helpers.testStream, RetentionPeriodHours: 23},
'Minimum allowed retention period is 24 hours. ' +
'Requested retention period (23 hours) is too short.', done)
})
it('should return ResourceNotFoundException if stream does not exist', function(done) {
var name1 = randomName()
assertNotFound({StreamName: name1, RetentionPeriodHours: 25},
'Stream ' + name1 + ' under account ' + helpers.awsAccountId + ' not found.', done)
})
})
describe('functionality', function() {
it('should increase stream retention period', function(done) {
this.timeout(100000)
request(opts({
StreamName: helpers.testStream,
RetentionPeriodHours: 25,
}), function(err, res) {
if (err) return done(err)
res.statusCode.should.equal(200)
helpers.waitUntilActive(helpers.testStream, function(err, res) {
if (err) return done(err)
res.body.StreamDescription.RetentionPeriodHours.should.eql(25)
request(opts({
StreamName: helpers.testStream,
RetentionPeriodHours: 25,
}), function(err, res) {
if (err) return done(err)
res.statusCode.should.equal(200)
assertInvalidArgument({StreamName: helpers.testStream, RetentionPeriodHours: 24},
'Requested retention period (24 hours) for stream ' + helpers.testStream +
' can not be shorter than existing retention period (25 hours).' +
' Use DecreaseRetentionPeriod API.',
function(err) {
if (err) return done(err)
request(helpers.opts('DecreaseStreamRetentionPeriod', {
StreamName: helpers.testStream,
RetentionPeriodHours: 24,
}), function(err, res) {
if (err) return done(err)
res.statusCode.should.equal(200)
helpers.waitUntilActive(helpers.testStream, function(err, res) {
if (err) return done(err)
res.body.StreamDescription.RetentionPeriodHours.should.eql(24)
done()
})
})
})
})
})
})
})
})
})