-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcredentials_test.go
397 lines (337 loc) · 10.3 KB
/
credentials_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
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
package credentials
import (
"bytes"
"encoding/base64"
"encoding/hex"
"encoding/json"
"errors"
"io"
"testing"
"time"
"github.com/Rocket-Rescue-Node/credentials/pb"
"google.golang.org/protobuf/proto"
)
// TestCredentialRoundTrip creates, anthenticates, marshals, encodes, decodes, unmarshals, and verifies a credential
func TestCredentialRoundTrip(t *testing.T) {
cm := NewCredentialManager([]byte("Curiouser and curiouser"))
nodeID, err := hex.DecodeString("1234567890123456789012345678901234567890")
if err != nil {
t.Error(err)
}
cred, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_SOLO)
if err != nil {
t.Error(err)
}
marshaled, err := proto.Marshal(cred.Pb())
if err != nil {
t.Error(err)
}
t.Logf("Marshaled proto: %x\n", marshaled)
var encoded bytes.Buffer
encoder := base64.NewEncoder(base64.URLEncoding, &encoded)
_, err = encoder.Write(marshaled)
if err != nil {
t.Error(err)
}
encoder.Close()
t.Logf("b64 encoded proto: %s\n", encoded.String())
// Now to reverse the process
decoder := base64.NewDecoder(base64.URLEncoding, bytes.NewReader(encoded.Bytes()))
decoded, err := io.ReadAll(decoder)
t.Logf("b64 decoded proto: %x\n", decoded)
if err != nil {
t.Error(err)
}
unmarshaled := &AuthenticatedCredential{}
err = proto.Unmarshal(decoded, unmarshaled.Pb())
if err != nil {
t.Error(err)
}
_, err = cm.Verify(unmarshaled)
if err != nil {
t.Error(err)
}
// Finally, do some sanity checks
if !bytes.Equal(unmarshaled.Credential.NodeId, cred.Credential.NodeId) {
t.Fail()
}
if unmarshaled.Credential.Timestamp != cred.Credential.Timestamp {
t.Fail()
}
}
// TestCredentialStolenMac creates 2 authenticated credentials, swaps their MACs, and ensures that they don't pass Verify
func TestCredentialStolenMac(t *testing.T) {
cm := NewCredentialManager([]byte("We're all mad here"))
nodeID, err := hex.DecodeString("1234567890123456789012345678901234567890")
if err != nil {
t.Error(err)
}
cred, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_ROCKETPOOL)
if err != nil {
t.Error(err)
}
nodeID2, err := hex.DecodeString("2234567890123456789012345678901234567890")
if err != nil {
t.Error(err)
}
cred2, err := cm.Create(time.Now(), nodeID2, pb.OperatorType_OT_ROCKETPOOL)
if err != nil {
t.Error(err)
}
// Swap MACs and make sure Verify returns an error
cred.Mac, cred2.Mac = cred2.Mac, cred.Mac
_, err = cm.Verify(cred)
if err == nil {
t.Fail()
}
_, err = cm.Verify(cred2)
if err == nil {
t.Fail()
}
// Swap back and make sure Verify now works
cred.Mac, cred2.Mac = cred2.Mac, cred.Mac
_, err = cm.Verify(cred)
if err != nil {
t.Error(err)
}
_, err = cm.Verify(cred2)
if err != nil {
t.Error(err)
}
}
// TestCredentialTypeMac creates 2 authenticated credentials but with different operator types, swaps their MACs, and ensures they do not pass Verify
func TestCredentialTypeMac(t *testing.T) {
cm := NewCredentialManager([]byte("We're all mad here"))
nodeID, err := hex.DecodeString("1234567890123456789012345678901234567890")
if err != nil {
t.Error(err)
}
cred, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_ROCKETPOOL)
if err != nil {
t.Error(err)
}
cred2, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_SOLO)
if err != nil {
t.Error(err)
}
// Swap NACs and make sure Verify returns an error
cred.Mac, cred2.Mac = cred2.Mac, cred.Mac
_, err = cm.Verify(cred)
if err == nil {
t.Fail()
}
_, err = cm.Verify(cred2)
if err == nil {
t.Fail()
}
// Swap back and make sure Verify now works
cred.Mac, cred2.Mac = cred2.Mac, cred.Mac
_, err = cm.Verify(cred)
if err != nil {
t.Error(err)
}
_, err = cm.Verify(cred2)
if err != nil {
t.Error(err)
}
}
// TestHmacKey sanity-tests that a MAC is only valid for a given key
func TestHmacKey(t *testing.T) {
cm := NewCredentialManager([]byte("T'was brillig"))
cm2 := NewCredentialManager([]byte("And the slithy toves did gyre"))
nodeID, err := hex.DecodeString("1234567890123456789012345678901234567890")
if err != nil {
t.Error(err)
}
cred, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_ROCKETPOOL)
if err != nil {
t.Error(err)
}
_, err = cm2.Verify(cred)
if err == nil {
t.Fail()
}
_, err = cm.Verify(cred)
if err != nil {
t.Error(err)
}
}
// TestCredentialManagerReuse tests that subsequent calls to the same CredentialManager produce predictable results
func TestCredentialManagerReuse(t *testing.T) {
cm := NewCredentialManager([]byte("Off with their heads!"))
nodeID, err := hex.DecodeString("1234567890123456789012345678901234567890")
if err != nil {
t.Error(err)
}
cred, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_ROCKETPOOL)
if err != nil {
t.Error(err)
}
cred2, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_ROCKETPOOL)
if err != nil {
t.Error(err)
}
_, err = cm.Verify(cred)
if err != nil {
t.Error(err)
}
_, err = cm.Verify(cred2)
if err != nil {
t.Error(err)
}
}
// TestCredentialMultiSecret creates a credential with one secret and validates it with a CM that has that secret as an extra.
func TestCredentialMultiSecret(t *testing.T) {
cm := NewCredentialManager([]byte("Curiouser and curiouser"))
nodeID, err := hex.DecodeString("1234567890123456789012345678901234567890")
if err != nil {
t.Error(err)
}
cred, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_SOLO)
if err != nil {
t.Error(err)
}
multiCM := NewCredentialManager([]byte("A different CM!"), []byte("Curiouser and curiouser"))
id, err := multiCM.Verify(cred)
if err != nil {
t.Error(err)
}
primaryId := multiCM.ID().StringWithLength(0)
matchedId := id.StringWithLength(0)
if primaryId == matchedId {
t.Fatal("(string) credential manager unexpected returned its own id instead of an extra secret's id")
}
if multiCM.ID().Equals(id) {
t.Fatal("(binary) credential manager unexpected returned its own id instead of an extra secret's id")
}
expectedId := idFromKey([]byte("Curiouser and curiouser"))
if expectedId.StringWithLength(0) != id.StringWithLength(0) {
t.Fatal("(string) expected id mismatch")
}
if !expectedId.Equals(id) {
t.Fatal("(binary) expected id mismatch")
}
}
// TestCredentialMultiSecretUnmatched creates a credential with one secret and validates it with a CM that has that has extras, but not for that secret
func TestCredentialMultiSecretUnmatched(t *testing.T) {
cm := NewCredentialManager([]byte("Curiouser and curiouser"))
nodeID, err := hex.DecodeString("1234567890123456789012345678901234567890")
if err != nil {
t.Error(err)
}
cred, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_SOLO)
if err != nil {
t.Error(err)
}
multiCM := NewCredentialManager([]byte("A different CM!"), []byte("Alice"))
_, err = multiCM.Verify(cred)
if err == nil {
t.Fatal("Expected a mismatch error")
}
if !errors.Is(err, MismatchError) {
t.Fatalf("Unexpected error: %v", err)
}
}
// TestJSONMarshalUnmarshal tests the JSON marshaling and unmarshaling of AuthenticatedCredential
func TestJSONMarshalUnmarshal(t *testing.T) {
cm := NewCredentialManager([]byte("JSON test secret"))
nodeID, err := hex.DecodeString("1234567890123456789012345678901234567890")
if err != nil {
t.Fatal(err)
}
cred, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_SOLO)
if err != nil {
t.Fatal(err)
}
// Marshal to JSON
jsonData, err := json.Marshal(cred)
if err != nil {
t.Fatal(err)
}
// Unmarshal from JSON
var unmarshaledCred AuthenticatedCredential
err = json.Unmarshal(jsonData, &unmarshaledCred)
if err != nil {
t.Fatal(err)
}
// Compare original and unmarshaled credentials
if !bytes.Equal(cred.Credential.NodeId, unmarshaledCred.Credential.NodeId) {
t.Error("NodeId mismatch after JSON round-trip")
}
if cred.Credential.Timestamp != unmarshaledCred.Credential.Timestamp {
t.Error("Timestamp mismatch after JSON round-trip")
}
if cred.Credential.OperatorType != unmarshaledCred.Credential.OperatorType {
t.Error("OperatorType mismatch after JSON round-trip")
}
if !bytes.Equal(cred.Mac, unmarshaledCred.Mac) {
t.Error("Mac mismatch after JSON round-trip")
}
// Verify the unmarshaled credential
_, err = cm.Verify(&unmarshaledCred)
if err != nil {
t.Error("Failed to verify unmarshaled credential:", err)
}
}
// TestBase64URLEncodeDecode tests the Base64URL encoding and decoding of AuthenticatedCredential
func TestBase64URLEncodeDecode(t *testing.T) {
cm := NewCredentialManager([]byte("Base64 test secret"))
nodeID, err := hex.DecodeString("1234567890123456789012345678901234567890")
if err != nil {
t.Fatal(err)
}
cred, err := cm.Create(time.Now(), nodeID, pb.OperatorType_OT_ROCKETPOOL)
if err != nil {
t.Fatal(err)
}
// Encode to Base64URL
username := cred.Base64URLEncodeUsername()
password, err := cred.Base64URLEncodePassword()
if err != nil {
t.Fatal(err)
}
// Decode from Base64URL
var decodedCred AuthenticatedCredential
err = decodedCred.Base64URLDecode(username, password)
if err != nil {
t.Fatal(err)
}
// Compare original and decoded credentials
if !bytes.Equal(cred.Credential.NodeId, decodedCred.Credential.NodeId) {
t.Error("NodeId mismatch after Base64URL round-trip")
}
if cred.Credential.Timestamp != decodedCred.Credential.Timestamp {
t.Error("Timestamp mismatch after Base64URL round-trip")
}
if cred.Credential.OperatorType != decodedCred.Credential.OperatorType {
t.Error("OperatorType mismatch after Base64URL round-trip")
}
if !bytes.Equal(cred.Mac, decodedCred.Mac) {
t.Error("Mac mismatch after Base64URL round-trip")
}
// Verify the decoded credential
_, err = cm.Verify(&decodedCred)
if err != nil {
t.Error("Failed to verify decoded credential:", err)
}
}
// TestInvalidBase64URLDecode tests the Base64URLDecode function with invalid input
func TestInvalidBase64URLDecode(t *testing.T) {
var cred AuthenticatedCredential
// Test with invalid Base64 username
err := cred.Base64URLDecode("invalid!base64", "validbase64")
if err == nil {
t.Error("Expected error for invalid username, got nil")
}
// Test with invalid Base64 password
err = cred.Base64URLDecode("validbase64", "invalid!base64")
if err == nil {
t.Error("Expected error for invalid password, got nil")
}
// Test with valid Base64 but invalid proto message
validBase64 := base64.URLEncoding.EncodeToString([]byte("invalid proto message"))
err = cred.Base64URLDecode(validBase64, validBase64)
if err == nil {
t.Error("Expected error for invalid proto message, got nil")
}
}