-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock.go
81 lines (65 loc) · 1.42 KB
/
mock.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
package vault_helper
import (
"fmt"
"github.com/hashicorp/vault/api"
)
type MockVaultClient struct {
MockLogical func() LogicalClient
MockSetToken func(string)
}
func (m *MockVaultClient) Logical() LogicalClient {
if m.MockLogical != nil {
return m.MockLogical()
}
return nil
}
func (m *MockVaultClient) SetToken(token string) {
if m.MockSetToken != nil {
m.MockSetToken(token)
}
}
type MockLogical struct {
MockRead func(string) (*api.Secret, error)
}
func (m *MockLogical) Read(path string) (*api.Secret, error) {
if m.MockRead != nil {
return m.MockRead(path)
}
return nil, nil
}
type MockVaultHelper struct {
KVSecrets []KVSecret
Lease int
}
func (m *MockVaultHelper) GetSecrets(path string) error {
if path == "" {
return fmt.Errorf("path not found %s", path)
}
return nil
}
func (m *MockVaultHelper) GetRemoteSecrets(path string) error {
if path == "" {
return fmt.Errorf("path not found: %s", path)
}
return nil
}
func (m *MockVaultHelper) GetLocalSecrets(path string) error {
if path == "" {
return fmt.Errorf("path not found: %s", path)
}
return nil
}
func (m *MockVaultHelper) GetSecret(key string) (string, error) {
for _, s := range m.Secrets() {
for s.Key == key {
return s.Value, nil
}
}
return "", fmt.Errorf("key: '%s' not found", key)
}
func (m *MockVaultHelper) Secrets() []KVSecret {
return m.KVSecrets
}
func (m *MockVaultHelper) LeaseDuration() int {
return m.Lease
}