forked from beme/abide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abide.go
322 lines (266 loc) · 6.43 KB
/
abide.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
package abide
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"sort"
"strings"
"sync"
)
var (
args *arguments
allSnapshots snapshots
allSnapMutex sync.Mutex
)
var (
// SnapshotsDir is the directory snapshots will be read to & written from
// relative directories are resolved to present-working-directory of the executing process
SnapshotsDir = "__snapshots__"
// snapshotsLoaded
snapshotsLoaded = sync.Once{}
)
const (
// snapshotExt is the file extension to use for a collection of snapshot records
snapshotExt = ".snapshot"
// snapshotSeparator deliniates records in the snapshots, not externally settable
snapshotSeparator = "/* snapshot: "
)
func init() {
// Get arguments
args = getArguments()
}
// Cleanup is an optional method which will execute cleanup operations
// affiliated with abide testing, such as pruning snapshots.
func Cleanup() error {
for _, s := range allSnapshots {
if !s.evaluated && args.shouldUpdate && !args.singleRun {
s.shouldRemove = true
fmt.Printf("Removing unused snapshot `%s`\n", s.id)
}
}
return allSnapshots.save()
}
// snapshotID represents the unique identifier for a snapshot.
type snapshotID string
// isValid verifies whether the snapshotID is valid. An
// identifier is considered invalid if it is already in use
// or it is malformed.
func (s *snapshotID) isValid() bool {
return true
}
// snapshot represents the expected value of a test, identified by an id.
type snapshot struct {
id snapshotID
value string
path string
evaluated bool
shouldRemove bool
}
// snapshots represents a map of snapshots by id.
type snapshots map[snapshotID]*snapshot
// save writes all snapshots to their designated files.
func (s snapshots) save() error {
snapshotsByPath := map[string][]*snapshot{}
for _, snap := range s {
_, ok := snapshotsByPath[snap.path]
if !ok {
snapshotsByPath[snap.path] = []*snapshot{}
}
snapshotsByPath[snap.path] = append(snapshotsByPath[snap.path], snap)
}
for path, snaps := range snapshotsByPath {
if path == "" {
continue
}
snapshotMap := snapshots{}
for _, snap := range snaps {
if snap.shouldRemove {
continue
}
snapshotMap[snap.id] = snap
}
data, err := encode(snapshotMap)
if err != nil {
return err
}
err = ioutil.WriteFile(path, data, 0666)
if err != nil {
return err
}
}
return nil
}
// decode decides a slice of bytes to retrieve a Snapshots object.
func decode(data []byte) (snapshots, error) {
snaps := make(snapshots)
snapshotsStr := strings.Split(string(data), snapshotSeparator)
for _, s := range snapshotsStr {
if s == "" {
continue
}
components := strings.SplitAfterN(s, "\n", 2)
id := snapshotID(strings.TrimSuffix(components[0], " */\n"))
val := strings.TrimSpace(components[1])
snaps[id] = &snapshot{
id: id,
value: val,
}
}
return snaps, nil
}
// encode encodes a snapshots object into a slice of bytes.
func encode(snaps snapshots) ([]byte, error) {
var buf bytes.Buffer
var err error
ids := []string{}
for id := range snaps {
ids = append(ids, string(id))
}
sort.Strings(ids)
for _, id := range ids {
s := snaps[snapshotID(id)]
_, err = buf.WriteString(fmt.Sprintf("%s%s */\n", snapshotSeparator, string(s.id)))
if err != nil {
return nil, err
}
_, err = buf.WriteString(fmt.Sprintf("%s\n\n", s.value))
if err != nil {
return nil, err
}
}
return bytes.TrimSpace(buf.Bytes()), nil
}
// loadSnapshots loads all snapshots in the current directory, can only
// be called once
func loadSnapshots() (err error) {
snapshotsLoaded.Do(func() {
err = reloadSnapshots()
})
return err
}
// reloadSnapshots overwrites allSnapshots internal
// variable with the designated snapshots file
func reloadSnapshots() error {
dir, err := findOrCreateSnapshotDirectory()
if err != nil {
return err
}
files, err := ioutil.ReadDir(dir)
if err != nil {
return err
}
paths := []string{}
for _, file := range files {
path := filepath.Join(dir, file.Name())
if filepath.Ext(path) == snapshotExt {
paths = append(paths, path)
}
}
allSnapshots, err = parseSnapshotsFromPaths(paths)
return err
}
// getSnapshot retrieves a snapshot by id.
func getSnapshot(id snapshotID) *snapshot {
if err := loadSnapshots(); err != nil {
panic(err)
}
return allSnapshots[id]
}
// createSnapshot creates a Snapshot.
func createSnapshot(id snapshotID, value string) (*snapshot, error) {
return writeSnapshot(id, value, false)
}
// updateSnapshot creates a Snapshot.
func updateSnapshot(id snapshotID, value string) (*snapshot, error) {
return writeSnapshot(id, value, true)
}
// writeSnapshot creates or updates a Snapshot.
func writeSnapshot(id snapshotID, value string, isUpdate bool) (*snapshot, error) {
if !id.isValid() {
return nil, errInvalidSnapshotID
}
if err := loadSnapshots(); err != nil {
return nil, err
}
dir, err := findOrCreateSnapshotDirectory()
if err != nil {
return nil, err
}
pkg, err := getTestingPackage()
if err != nil {
return nil, err
}
path := filepath.Join(dir, fmt.Sprintf("%s%s", pkg, snapshotExt))
s := &snapshot{
id: id,
value: value,
path: path,
evaluated: isUpdate,
}
allSnapMutex.Lock()
allSnapshots[id] = s
allSnapMutex.Unlock()
err = allSnapshots.save()
if err != nil {
return nil, err
}
return s, nil
}
func findOrCreateSnapshotDirectory() (string, error) {
testingPath, err := getTestingPath()
if err != nil {
return "", errUnableToLocateTestPath
}
dir := filepath.Join(testingPath, SnapshotsDir)
_, err = os.Stat(dir)
if os.IsNotExist(err) {
err = os.Mkdir(dir, os.ModePerm)
if err != nil {
return "", errUnableToCreateSnapshotDirectory
}
}
return dir, nil
}
func parseSnapshotsFromPaths(paths []string) (snapshots, error) {
var snaps = make(snapshots)
var mutex = &sync.Mutex{}
var wg sync.WaitGroup
for i := range paths {
wg.Add(1)
go func(p string) {
defer wg.Done()
file, err := os.Open(p)
if err != nil {
return
}
data, err := ioutil.ReadAll(file)
if err != nil {
return
}
s, err := decode(data)
if err != nil {
return
}
mutex.Lock()
for id, snap := range s {
snap.path = p
snaps[id] = snap
}
mutex.Unlock()
}(paths[i])
}
wg.Wait()
return snaps, nil
}
func getTestingPath() (string, error) {
return os.Getwd()
}
func getTestingPackage() (string, error) {
dir, err := getTestingPath()
if err != nil {
return "", err
}
return filepath.Base(dir), nil
}