forked from saberistic/solana-secrets-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
backend_test.go
215 lines (185 loc) · 5.9 KB
/
backend_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
package solana_se
import (
"bytes"
"context"
"encoding/gob"
"encoding/json"
"testing"
"github.com/go-webauthn/webauthn/protocol"
"github.com/go-webauthn/webauthn/webauthn"
"github.com/hashicorp/vault/sdk/logical"
"github.com/portto/solana-go-sdk/types"
)
// MockWebAuthn is a mock implementation of the WebAuthnInterface.
type MockWebAuthn struct{}
func (m *MockWebAuthn) BeginRegistration(user webauthn.User, options ...webauthn.RegistrationOption) (*protocol.CredentialCreation, *webauthn.SessionData, error) {
// Return mock data
return &protocol.CredentialCreation{}, &webauthn.SessionData{}, nil
}
func (m *MockWebAuthn) CreateCredential(user webauthn.User, sessionData webauthn.SessionData, response *protocol.ParsedCredentialCreationData) (*webauthn.Credential, error) {
// Return mock data
return &webauthn.Credential{}, nil
}
func (m *MockWebAuthn) BeginLogin(user webauthn.User, options ...webauthn.LoginOption) (*protocol.CredentialAssertion, *webauthn.SessionData, error) {
// Return mock data
return &protocol.CredentialAssertion{}, &webauthn.SessionData{}, nil
}
func (m *MockWebAuthn) ValidateLogin(user webauthn.User, sessionData webauthn.SessionData, response *protocol.ParsedCredentialAssertionData) (*webauthn.Credential, error) {
// Return mock data
return &webauthn.Credential{}, nil
}
func TestHandleReadUser(t *testing.T) {
b, err := newBackend(true)
if err != nil {
t.Fatalf("failed to create backend: %v", err)
}
ctx := context.Background()
storage := &logical.InmemStorage{}
// Setup a user in storage
user := User{Username: "testuser", PubKey: "testpubkey", Credentials: []webauthn.Credential{{ID: []byte("test-credential-id")}}}
payload := Payload{User: user}
var buf bytes.Buffer
enc := gob.NewEncoder(&buf)
if err := enc.Encode(payload); err != nil {
t.Fatalf("failed to encode payload: %v", err)
}
entry := &logical.StorageEntry{
Key: "test-client-token/testuser",
Value: buf.Bytes(),
}
if err := storage.Put(ctx, entry); err != nil {
t.Fatalf("failed to put entry in storage: %v", err)
}
req := &logical.Request{
Operation: logical.ReadOperation,
Path: "users",
Storage: storage,
Data: map[string]interface{}{
"username": "testuser",
},
ClientToken: "test-client-token",
}
resp, err := b.handleReadUser(ctx, req, nil)
if err != nil {
t.Fatalf("failed to read user: %v", err)
}
if resp.Data["pubKey"] != "testpubkey" {
t.Errorf("expected pubKey to be 'testpubkey', got %v", resp.Data["pubKey"])
}
}
func TestHandleWriteUser(t *testing.T) {
b, err := newBackend(true)
if err != nil {
t.Fatalf("failed to create backend: %v", err)
}
ctx := context.Background()
storage := &logical.InmemStorage{}
req := &logical.Request{
Operation: logical.CreateOperation,
Path: "users",
Storage: storage,
Data: map[string]interface{}{
"username": "testuser",
"credential": map[string]interface{}{},
},
ClientToken: "test-client-token",
}
resp, err := b.handleWriteUser(ctx, req, nil)
if err != nil {
t.Fatalf("failed to write user: %v", err)
}
if resp.Data["pubKey"] == "" {
t.Errorf("expected pubKey to be set, got empty string")
}
}
func TestHandleWriteAuth(t *testing.T) {
b, err := newBackend(true)
if err != nil {
t.Fatalf("failed to create backend: %v", err)
}
b.webauthn = &MockWebAuthn{}
ctx := context.Background()
storage := &logical.InmemStorage{}
// Setup a user in storage
user := User{Username: "testuser", PubKey: "testpubkey", Credentials: []webauthn.Credential{{ID: []byte("test-credential-id")}}}
acct := types.NewAccount()
payload := Payload{User: user, PrivateKey: acct.PrivateKey}
var buf bytes.Buffer
enc := gob.NewEncoder(&buf)
if err := enc.Encode(payload); err != nil {
t.Fatalf("failed to encode payload: %v", err)
}
entry := &logical.StorageEntry{
Key: "test-client-token/testuser",
Value: buf.Bytes(),
}
if err := storage.Put(ctx, entry); err != nil {
t.Fatalf("failed to put entry in storage: %v", err)
}
req := &logical.Request{
Operation: logical.CreateOperation,
Path: "auth",
Storage: storage,
Data: map[string]interface{}{
"username": "testuser",
"tx": "dGVzdHR4", // base64 for "testtx"
},
ClientToken: "test-client-token",
}
resp, err := b.handleWriteAuth(ctx, req, nil)
if err != nil {
t.Fatalf("failed to write auth: %v", err)
}
if resp.Data["pubKey"] != "testpubkey" {
t.Errorf("expected pubKey to be 'testpubkey', got %v", resp.Data["pubKey"])
}
if resp.Data["options"] == nil {
t.Errorf("expected options to be set, got nil")
}
car := protocol.CredentialAssertionResponse{
PublicKeyCredential: protocol.PublicKeyCredential{
Credential: protocol.Credential{
ID: "test-credential-id",
Type: "public-key",
},
RawID: protocol.URLEncodedBase64("test-credential-id"),
},
AssertionResponse: protocol.AuthenticatorAssertionResponse{
AuthenticatorData: protocol.URLEncodedBase64(`{}`),
AuthenticatorResponse: protocol.AuthenticatorResponse{
ClientDataJSON: protocol.URLEncodedBase64(`{}`),
},
},
}
req = &logical.Request{
Operation: logical.CreateOperation,
Path: "auth",
Storage: storage,
Data: map[string]interface{}{
"username": "testuser",
"credential": func() map[string]interface{} {
var credentialMap map[string]interface{}
data, err := json.Marshal(car)
if err != nil {
t.Fatalf("failed to marshal car: %v", err)
}
err = json.Unmarshal(data, &credentialMap)
if err != nil {
t.Fatalf("failed to unmarshal car: %v", err)
}
return credentialMap
}(),
},
ClientToken: "test-client-token",
}
resp, err = b.handleWriteAuth(ctx, req, nil)
if err != nil {
t.Fatalf("failed to write auth: %v", err)
}
if resp.Data["pubKey"] != "testpubkey" {
t.Errorf("expected pubKey to be 'testpubkey', got %v", resp.Data["pubKey"])
}
if resp.Data["encodedTX"] != "testtx" {
t.Errorf("expected encodedTX to be 'testtx', got %v", resp.Data["encodedTX"])
}
}