-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileio_internals_test.go
61 lines (58 loc) · 1.37 KB
/
fileio_internals_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
package cmd_toolkit
import (
"errors"
"github.com/majohn-r/output"
"testing"
)
func Test_logUnreadableDirectory(t *testing.T) {
type args struct {
s string
e error
}
tests := map[string]struct {
args
output.WantedRecording
}{
"basic": {
args: args{s: "directory name", e: errors.New("directory is missing")},
WantedRecording: output.WantedRecording{
Log: "" +
"level='error' " +
"directory='directory name' " +
"error='directory is missing' " +
"msg='cannot read directory'\n",
},
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
o := output.NewRecorder()
logUnreadableDirectory(o, tt.args.s, tt.args.e)
o.Report(t, "logUnreadableDirectory()", tt.WantedRecording)
})
}
}
func Test_writeDirectoryCreationError(t *testing.T) {
type args struct {
d string
e error
}
tests := map[string]struct {
args
output.WantedRecording
}{
"basic": {
args: args{d: "dirName", e: errors.New("parent directory does not exist")},
WantedRecording: output.WantedRecording{
Error: "The directory \"dirName\" cannot be created: 'parent directory does not exist'.\n",
},
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
o := output.NewRecorder()
writeDirectoryCreationError(o, tt.args.d, tt.args.e)
o.Report(t, "writeDirectoryCreationError()", tt.WantedRecording)
})
}
}