-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend_test.go
119 lines (106 loc) · 2.82 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
package saltyhash
import (
"context"
"fmt"
"github.com/mitchellh/mapstructure"
"testing"
logicaltest "github.com/hashicorp/vault/helper/testhelpers/logical"
"github.com/hashicorp/vault/sdk/logical"
)
const (
testRoleName = "test"
testSalt = "dGVzdFNhbHQ="
testUpdatedSalt = "dGVzdFVwZGF0ZWRTYWx0"
testSecret = "dGVzdFNlY3JldA=="
)
func createBackendWithStorage(t testing.TB) (*backend, logical.Storage) {
config := logical.TestBackendConfig()
config.StorageView = &logical.InmemStorage{}
b := Backend(context.Background(), config)
err := b.Backend.Setup(context.Background(), config)
if err != nil {
t.Fatal(err)
}
return b, config.StorageView
}
func TestBackend(t *testing.T) {
logicaltest.Test(t, logicaltest.TestCase{
LogicalFactory: Factory,
Steps: []logicaltest.TestStep{
testAccStepListRoles(t, testRoleName, true),
testAccStepWriteRole(t, testRoleName, testSalt),
testAccStepListRoles(t, testRoleName, false),
testAccStepReadRole(t, testRoleName, testSalt),
},
})
}
func testAccStepListRoles(t *testing.T, roleName string, expectNone bool) logicaltest.TestStep {
return logicaltest.TestStep{
Operation: logical.ListOperation,
Path: "roles",
Check: func(resp *logical.Response) error {
if resp == nil {
return fmt.Errorf("missing response")
}
if expectNone {
keysRaw, ok := resp.Data["keys"]
if ok || keysRaw != nil {
return fmt.Errorf("response data when expecting none")
}
return nil
}
if len(resp.Data) == 0 {
return fmt.Errorf("no data returned")
}
var d struct {
Keys []string `mapstructure:"keys"`
}
if err := mapstructure.Decode(resp.Data, &d); err != nil {
return err
}
if len(d.Keys) > 0 && d.Keys[0] != roleName {
return fmt.Errorf("bad name: %#v", d)
}
if len(d.Keys) != 1 {
return fmt.Errorf("only 1 role expected, %d returned", len(d.Keys))
}
return nil
},
}
}
func testAccStepWriteRole(t *testing.T, roleName string, salt string) logicaltest.TestStep {
ts := logicaltest.TestStep{
Operation: logical.UpdateOperation,
Path: "roles/" + roleName,
Data: map[string]interface{}{
"salt": salt,
"mode": "append",
},
}
return ts
}
func testAccStepReadRole(t *testing.T, roleName string, salt string) logicaltest.TestStep {
ts := logicaltest.TestStep{
Operation: logical.ReadOperation,
Path: "roles/" + roleName,
Check: func(resp *logical.Response) error {
if resp == nil {
return fmt.Errorf("missing response")
}
if len(resp.Data) == 0 {
return fmt.Errorf("no data returned")
}
var d struct {
Role []string `mapstructure:"test"`
}
if err := mapstructure.Decode(resp.Data, &d); err != nil {
return err
}
if len(d.Role) > 0 && d.Role[0] != roleName {
return fmt.Errorf("bad name: %#v", d)
}
return nil
},
}
return ts
}