-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmigrator_test.go
198 lines (169 loc) · 3.7 KB
/
migrator_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
package migrator
import (
"bytes"
"context"
"errors"
"io/ioutil"
"os"
"path/filepath"
"sync"
"testing"
"github.com/caddyserver/caddy/v2"
"github.com/caddyserver/certmagic"
)
type DummyStorage struct {
stored map[string][]byte
lock *sync.Mutex
Value string `json:"value"`
provisioned bool
validated bool
}
func (ds *DummyStorage) Store(key string, value []byte) error {
ds.stored[key] = value
return nil
}
func (ds *DummyStorage) Load(key string) ([]byte, error) {
val, found := ds.stored[key]
if found {
return val, nil
}
return nil, errors.New("Key not found")
}
func (ds *DummyStorage) Delete(key string) error {
delete(ds.stored, key)
return nil
}
func (ds *DummyStorage) Exists(key string) bool {
_, found := ds.stored[key]
return found
}
func (ds *DummyStorage) List(prefix string, recursive bool) ([]string, error) {
keys := make([]string, 0, len(ds.stored))
if prefix == "" {
for k := range ds.stored {
keys = append(keys, k)
}
}
return keys, nil
}
func (ds *DummyStorage) Stat(key string) (certmagic.KeyInfo, error) {
_, found := ds.stored[key]
if found {
return certmagic.KeyInfo{Key: key, IsTerminal: true}, nil
}
return certmagic.KeyInfo{Key: key}, errors.New("Key not found")
}
func (ds *DummyStorage) Lock(ctx context.Context, key string) error {
ds.lock.Lock()
return nil
}
func (ds *DummyStorage) Unlock(key string) error {
ds.lock.Unlock()
return nil
}
func (ds *DummyStorage) Provision(ctx caddy.Context) error {
ds.provisioned = true
return nil
}
func (ds *DummyStorage) Validate() error {
ds.validated = true
return nil
}
// Interface guards
var (
_ certmagic.Storage = (*DummyStorage)(nil)
_ caddy.Provisioner = (*DummyStorage)(nil)
_ caddy.Validator = (*DummyStorage)(nil)
)
func TestImport(t *testing.T) {
storages["dummy"] = func() certmagic.Storage {
return &DummyStorage{stored: map[string][]byte{}}
}
config := []byte("{\"value\": \"test json unmarshal\"}")
s, err := InitStorage("dummy", config)
if err != nil {
t.Error(err)
return
}
ds := s.(*DummyStorage)
if ds.Value != "test json unmarshal" {
t.Error("Expected value not found")
return
}
if ds.provisioned == false {
t.Error("Function Provision() not called")
return
}
if ds.validated == false {
t.Error("Function Validate() not called")
return
}
caddyPath, err := ioutil.TempDir(".", "test-")
if err != nil {
t.Error(err)
return
}
defer os.RemoveAll(caddyPath)
f, err := ioutil.TempFile(caddyPath, "key-")
defer f.Close()
if err != nil {
t.Error(err)
return
}
f.Write([]byte("aaaa"))
err = f.Sync()
if err != nil {
t.Error(err)
return
}
err = ImportFiles(ds, caddyPath)
if err != nil {
t.Error(err)
return
}
if len(ds.stored) == 0 {
t.Error("File not stored")
return
}
}
func TestExport(t *testing.T) {
fileContent := []byte("THIS IS A CERT")
storages["dummy"] = func() certmagic.Storage {
return &DummyStorage{stored: map[string][]byte{
"cert1": fileContent,
}}
}
config := []byte{}
_, err := InitStorage("dumy", config)
if err == nil {
t.Errorf("Should fail. Invalid storage name")
return
}
s, err := InitStorage("dummy", config)
if err != nil {
t.Error(err)
return
}
ds := s.(*DummyStorage)
dest, err := ioutil.TempDir(".", "test-")
if err != nil {
t.Error(err)
return
}
defer os.RemoveAll(dest)
ExportFiles(ds, dest)
exported := make([]string, 0)
filepath.Walk(dest, func(path string, info os.FileInfo, err error) error {
exported = append(exported, path)
return nil
})
if len(exported) == 0 {
t.Errorf("Nothing exported")
return
}
data, err := ioutil.ReadFile(filepath.Join(dest, "cert1"))
if !bytes.Equal(data, fileContent) {
t.Errorf("File content mismatch")
return
}
}