-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapppath_test.go
166 lines (161 loc) · 5.33 KB
/
apppath_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
package cmd_toolkit_test
import (
cmdtoolkit "github.com/majohn-r/cmd-toolkit"
"os"
"testing"
"github.com/majohn-r/output"
"github.com/spf13/afero"
)
func TestApplicationPath(t *testing.T) {
originalApplicationPath := cmdtoolkit.ApplicationPath()
defer cmdtoolkit.SetApplicationPath(originalApplicationPath)
tests := map[string]struct {
applicationPath string
want string
}{"dummy": {applicationPath: "foo/bar", want: "foo/bar"}}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
cmdtoolkit.SetApplicationPath(tt.applicationPath)
if got := cmdtoolkit.ApplicationPath(); got != tt.want {
t.Errorf("ApplicationPath() = %v, want %v", got, tt.want)
}
})
}
}
func TestInitApplicationPath(t *testing.T) {
originalApplicationPath := cmdtoolkit.ApplicationPath()
originalFileSystem := cmdtoolkit.FileSystem()
appDataMemento := cmdtoolkit.NewEnvVarMemento("APPDATA")
defer func() {
cmdtoolkit.SetApplicationPath(originalApplicationPath)
appDataMemento.Restore()
cmdtoolkit.AssignFileSystem(originalFileSystem)
}()
cmdtoolkit.AssignFileSystem(afero.NewMemMapFs())
tests := map[string]struct {
applicationName string
appDataValue string
appDataSet bool
wantInitialized bool
preTest func() // things to do before calling
output.WantedRecording
}{
"no appdata": {
applicationName: "beautifulApp",
appDataSet: false,
wantInitialized: false,
preTest: func() {},
WantedRecording: output.WantedRecording{
Error: "" +
"Files used by beautifulApp cannot be read or written because the environment variable APPDATA " +
"has not been set.\n" +
"What to do:\n" +
"Define APPDATA, giving it a value that is a directory path, " +
"typically %HOMEPATH%\\AppData\\Roaming.\n",
Log: "level='error' environmentVariable='APPDATA' msg='not set'\n",
},
},
"no app name": {
applicationName: "",
appDataSet: true,
appDataValue: "foo", // doesn't matter ...
wantInitialized: false,
preTest: func() {},
WantedRecording: output.WantedRecording{
Log: "level='error' error='application name \"\" is not valid' msg='program error'\n",
},
},
"appData not a directory": {
applicationName: "myApp",
appDataSet: true,
appDataValue: "foo.bar",
wantInitialized: false,
preTest: func() {
_ = afero.WriteFile(cmdtoolkit.FileSystem(), "foo.bar", []byte("foo"), cmdtoolkit.StdFilePermissions)
},
WantedRecording: output.WantedRecording{
Error: "" +
"The APPDATA environment variable value \"foo.bar\" is not a directory, " +
"nor can it be created as a directory.\n" +
"What to do:\n" +
"The value of APPDATA should be a directory path, typically %HOMEPATH%\\AppData\\Roaming.\n" +
"Either it should contain a subdirectory named \"myApp\".\n" +
"Or, if it does not exist, it must be possible to create that subdirectory.\n",
Log: "" +
"level='error'" +
" error='file exists and is not a directory'" +
" fileName='foo.bar'" +
" msg='directory check failed'\n",
},
},
"cannot create subdirectory": {
applicationName: "myApp1",
appDataSet: true,
appDataValue: ".",
wantInitialized: false,
preTest: func() {
_ = afero.WriteFile(cmdtoolkit.FileSystem(), "myApp1", []byte{1, 2, 3}, cmdtoolkit.StdFilePermissions)
},
WantedRecording: output.WantedRecording{
Error: "The directory \"myApp1\" cannot be created: 'file exists and is not a directory'.\n",
Log: "" +
"level='error'" +
" directory='myApp1'" +
" error='file exists and is not a directory'" +
" msg='cannot create directory'\n",
},
},
"subdirectory already exists": {
applicationName: "myApp2",
appDataSet: true,
appDataValue: ".",
wantInitialized: true,
preTest: func() {
_ = cmdtoolkit.FileSystem().Mkdir("myApp2", cmdtoolkit.StdDirPermissions)
},
},
"subdirectory does not yet exist": {
applicationName: "myApp3",
appDataSet: true,
appDataValue: ".",
wantInitialized: true,
preTest: func() {},
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
cmdtoolkit.SetApplicationPath("")
if tt.appDataSet {
_ = os.Setenv("APPDATA", tt.appDataValue)
} else {
_ = os.Unsetenv("APPDATA")
}
tt.preTest()
o := output.NewRecorder()
if got := cmdtoolkit.InitApplicationPath(o, tt.applicationName); got != tt.wantInitialized {
t.Errorf("InitApplicationPath() = %v, want %v", got, tt.wantInitialized)
}
o.Report(t, "InitApplicationPath()", tt.WantedRecording)
})
}
}
func TestSetApplicationPath(t *testing.T) {
originalApplicationPath := cmdtoolkit.ApplicationPath()
defer cmdtoolkit.SetApplicationPath(originalApplicationPath)
tests := map[string]struct {
applicationPath string
s string
wantPrevious string
}{"simple": {applicationPath: "foo", s: "bar", wantPrevious: "foo"}}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
cmdtoolkit.SetApplicationPath(tt.applicationPath)
if gotPrevious := cmdtoolkit.SetApplicationPath(tt.s); gotPrevious != tt.wantPrevious {
t.Errorf("SetApplicationPath() = %v, want %v", gotPrevious, tt.wantPrevious)
}
if gotNew := cmdtoolkit.ApplicationPath(); gotNew != tt.s {
t.Errorf("SetApplicationPath() gotNew = %v, want %v", gotNew, tt.s)
}
})
}
}