-
Notifications
You must be signed in to change notification settings - Fork 2
/
rekey_test.go
290 lines (228 loc) · 7.79 KB
/
rekey_test.go
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
package vaultkv_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/cloudfoundry-community/vaultkv"
)
var _ = Describe("Rekey", func() {
When("the vault is not initialized", func() {
Describe("Starting a new rekey operation", func() {
JustBeforeEach(func() {
_, err = vault.NewRekey(vaultkv.RekeyConfig{
Shares: 1,
Threshold: 1,
})
})
It("should return ErrUninitialized", AssertErrorOfType(&vaultkv.ErrUninitialized{}))
})
Describe("Getting the current rekey operation", func() {
JustBeforeEach(func() {
_, err = vault.CurrentRekey()
})
It("should return ErrUninitialized", AssertErrorOfType(&vaultkv.ErrUninitialized{}))
})
})
When("the vault is initialized", func() {
var initShares, initThreshold int
var initOutput *vaultkv.InitVaultOutput
BeforeEach(func() {
initShares = 1
initThreshold = 1
})
JustBeforeEach(func() {
initOutput, err = vault.InitVault(vaultkv.InitConfig{
Shares: initShares,
Threshold: initThreshold,
})
Expect(err).NotTo(HaveOccurred())
})
When("Vault is sealed", func() {
Describe("Starting a new rekey operation", func() {
JustBeforeEach(func() {
_, err = vault.NewRekey(vaultkv.RekeyConfig{
Shares: 1,
Threshold: 1,
})
})
It("should return ErrSealed", AssertErrorOfType(&vaultkv.ErrSealed{}))
})
Describe("Getting the current rekey operation", func() {
JustBeforeEach(func() {
_, err = vault.CurrentRekey()
})
It("should return ErrSealed", AssertErrorOfType(&vaultkv.ErrSealed{}))
})
})
When("Vault is unsealed", func() {
JustBeforeEach(func() {
err = initOutput.Unseal()
Expect(err).NotTo(HaveOccurred())
})
Describe("CurrentRekey with no rekey in progress", func() {
JustBeforeEach(func() {
_, err = vault.CurrentRekey()
})
It("should return ErrNotFound", AssertErrorOfType(&vaultkv.ErrNotFound{}))
})
Describe("Starting a new rekey operation", func() {
var rekeyConf vaultkv.RekeyConfig
var rekey *vaultkv.Rekey
var AssertRemaining = func(rem int) func() {
return func() {
Expect(rekey.Remaining()).To(Equal(rem))
}
}
var AssertHasKeys = func(numKeys int) func() {
return func() {
Expect(rekey.Keys()).To(HaveLen(numKeys))
}
}
JustBeforeEach(func() {
rekey, err = vault.NewRekey(rekeyConf)
})
Context("With one key in the previous initialization", func() {
Context("With one share and threshold of one requested", func() {
BeforeEach(func() {
rekeyConf.Shares = 1
rekeyConf.Threshold = 1
})
It("should rekey properly", func() {
By("initializing the rekey without erroring")
Expect(err).NotTo(HaveOccurred())
By("having remaining report one")
AssertRemaining(1)()
By("having State not return nil")
state := rekey.State()
//State with zero keys submitted
By("having the state say PendingShares is one")
Expect(state.PendingShares).To(Equal(1))
By("having the state say PendingThreshold is one")
Expect(state.PendingThreshold).To(Equal(1))
By("having the state say Required is one")
Expect(state.Required).To(Equal(1))
By("having the state say Progress is zero")
Expect(state.Progress).To(Equal(0))
var rekeyDone bool
rekeyDone, err = rekey.Submit(initOutput.Keys[0])
By("having the first key submission not err")
Expect(err).NotTo(HaveOccurred())
By("having the first key submission finish the rekey")
Expect(rekeyDone).To(BeTrue())
By("having Keys have one new key")
Expect(rekey.Keys()).To(HaveLen(1))
By("having Remaining return zero")
AssertRemaining(0)()
})
Describe("Submitting too many keys all at once", func() {
var rekeyDone bool
JustBeforeEach(func() {
rekeyDone, err = rekey.Submit(initOutput.Keys[0], "a", "b", "c")
})
It("should properly unseal the vault (as long as the first keys are correct)", func() {
By("not erroring")
Expect(err).NotTo(HaveOccurred())
By("saying that the rekey is done")
Expect(rekeyDone).To(BeTrue())
})
})
Describe("Submitting an incorrect key", func() {
var rekeyDone bool
JustBeforeEach(func() {
//If this is somehow your unseal key, then I'm sorry
rekeyDone, err = rekey.Submit("k8vk0IdoDeNAJl5JDJ282eehqIbRLv5WWoBy6ppBK9c=")
})
It("should err properly", func() {
By("returning an ErrBadRequest")
AssertErrorOfType(&vaultkv.ErrBadRequest{})()
By("saying that it's not done")
Expect(rekeyDone).To(BeFalse())
})
})
})
Context("with improper rekey parameters", func() {
BeforeEach(func() {
rekeyConf.Shares = 1
rekeyConf.Threshold = 2
})
It("should return ErrBadRequest", AssertErrorOfType(&vaultkv.ErrBadRequest{}))
})
})
Context("With multiple keys in the previous initialization", func() {
BeforeEach(func() {
initShares = 3
initThreshold = 3
})
Context("With one share and threshold of one requested", func() {
BeforeEach(func() {
rekeyConf.Shares = 1
rekeyConf.Threshold = 1
})
It("should allow rekey operations", func() {
By("not erroring from the creation of the rekey")
Expect(err).NotTo(HaveOccurred())
By("having Remaining return three")
AssertRemaining(3)()
By("having the first key submission not err")
var rekeyDone bool
rekeyDone, err = rekey.Submit(initOutput.Keys[0])
Expect(err).NotTo(HaveOccurred())
By("not claiming to be done with the rekey")
Expect(rekeyDone).To(BeFalse())
By("having Remaining return two")
AssertRemaining(2)()
By("getting the current rekey operation not erroring")
rekey, err = vault.CurrentRekey()
Expect(err).NotTo(HaveOccurred())
By("the CurrentRekey operation not returning nil")
Expect(rekey).NotTo(BeNil())
By("the CurrentRekey return value's Remaining should return two")
AssertRemaining(2)
By("cancelling the rekey not returning an error")
err = rekey.Cancel()
Expect(err).NotTo(HaveOccurred())
By("submitting after the rekey was cancelled returning an ErrBadRequest")
rekeyDone, err = rekey.Submit(initOutput.Keys[0])
AssertErrorOfType(&vaultkv.ErrBadRequest{})()
By("the submission after the rekey was cancelled returning that the rekey is done")
Expect(rekeyDone).To(BeTrue())
})
Describe("Submitting all necessary keys", func() {
var rekeyDone bool
Context("All at once", func() {
JustBeforeEach(func() {
rekeyDone, err = rekey.Submit(initOutput.Keys...)
})
It("should rekey the vault successfully", func() {
By("not erroring")
Expect(err).NotTo(HaveOccurred())
By("claiming that the rekey is done")
Expect(rekeyDone).To(BeTrue())
By("having Remaining return 0")
By("Keys returning the 1 new key")
AssertHasKeys(1)()
})
})
Context("One Submit call at a time", func() {
var rekeyDone bool
JustBeforeEach(func() {
for _, key := range initOutput.Keys {
rekeyDone, err = rekey.Submit(key)
Expect(err).NotTo(HaveOccurred())
}
})
It("should rekey successfully", func() {
By("returning that the rekey is done")
Expect(rekeyDone).To(BeTrue())
By("having Remaining return zero")
AssertRemaining(0)()
By("having Keys return the one new key")
AssertHasKeys(1)()
})
})
})
})
})
})
})
})
})