-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
xdgbasedir_test.go
398 lines (371 loc) · 8.24 KB
/
xdgbasedir_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
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
// Copyright 2017 The go-xdgbasedir Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package xdgbasedir
import (
"os"
"os/user"
"path/filepath"
"runtime"
"strconv"
"sync"
"testing"
"github.com/zchee/go-xdgbasedir/home"
)
func TestDataHome(t *testing.T) {
var testDefaultDataHome string
switch runtime.GOOS {
case "windows":
testDefaultDataHome = filepath.Join(home.Dir(), "AppData", "Roaming")
default:
testDefaultDataHome = filepath.Join(home.Dir(), ".local", "share")
}
tests := []struct {
name string
env string
want string
mode mode
}{
{
name: "set env based specification",
env: testDefaultDataHome,
want: testDefaultDataHome,
},
{
name: "set env based different from specification",
env: filepath.Join("/tmp", "xdg", ".local", "share"),
want: filepath.Join("/tmp", "xdg", ".local", "share"),
},
{
name: "empty env",
env: "",
want: testDefaultDataHome,
},
}
for _, tt := range tests {
os.Setenv("XDG_DATA_HOME", tt.env)
t.Run(tt.name, func(t *testing.T) {
if got := DataHome(); got != tt.want {
t.Errorf("DataHome() = %v, want %v", got, tt.want)
}
})
}
}
func TestConfigHome(t *testing.T) {
var testDefaultConfigHome string
switch runtime.GOOS {
case "windows":
testDefaultConfigHome = filepath.Join(home.Dir(), "AppData", "Roaming")
default:
testDefaultConfigHome = filepath.Join(home.Dir(), ".config")
}
tests := []struct {
name string
env string
want string
}{
{
name: "set env based specification",
env: testDefaultConfigHome,
want: testDefaultConfigHome,
},
{
name: "set env based different from specification",
env: filepath.Join("/tmp", "config"),
want: filepath.Join("/tmp", "config"),
},
{
name: "empty env",
env: "",
want: testDefaultConfigHome,
},
}
for _, tt := range tests {
os.Setenv("XDG_CONFIG_HOME", tt.env)
t.Run(tt.name, func(t *testing.T) {
if got := ConfigHome(); got != tt.want {
t.Errorf("ConfigHome() = %v, want %v", got, tt.want)
}
})
}
}
func TestDataDirs(t *testing.T) {
var testDefaultDataDirs string
switch runtime.GOOS {
case "windows":
testDefaultDataDirs = filepath.Join(home.Dir(), "AppData", "Roaming")
default:
testDefaultDataDirs = filepath.Join("/usr", "local", "share") + string(filepath.ListSeparator) + filepath.Join("/usr", "share")
}
tests := []struct {
name string
env string
want string
}{
{
name: "set env based specification",
env: testDefaultDataDirs,
want: testDefaultDataDirs,
},
{
name: "set env based different from specification",
env: filepath.Join("/opt", "local", "share"),
want: filepath.Join("/opt", "local", "share"),
},
{
name: "empty env",
env: "",
want: testDefaultDataDirs,
},
}
for _, tt := range tests {
os.Setenv("XDG_DATA_DIRS", tt.env)
t.Run(tt.name, func(t *testing.T) {
if got := DataDirs(); got != tt.want {
t.Errorf("DataDirs() = %v, want %v", got, tt.want)
}
})
}
}
func TestConfigDirs(t *testing.T) {
var testDefaultConfigDirs string
switch runtime.GOOS {
case "windows":
testDefaultConfigDirs = filepath.Join(home.Dir(), "AppData", "Roaming")
default:
testDefaultConfigDirs = filepath.Join("/etc", "xdg")
}
tests := []struct {
name string
env string
want string
}{
{
name: "set env based specification",
env: testDefaultConfigDirs,
want: testDefaultConfigDirs,
},
{
name: "set env based different from specification",
env: filepath.Join("/var", "etc", "xdg"),
want: filepath.Join("/var", "etc", "xdg"),
},
{
name: "empty env",
env: "",
want: testDefaultConfigDirs,
},
}
for _, tt := range tests {
os.Setenv("XDG_CONFIG_DIRS", tt.env)
t.Run(tt.name, func(t *testing.T) {
if got := ConfigDirs(); got != tt.want {
t.Errorf("ConfigDirs() = %v, want %v", got, tt.want)
}
})
}
}
func TestCacheHome(t *testing.T) {
var testDefaultCacheHome string
switch runtime.GOOS {
case "windows":
testDefaultCacheHome = filepath.Join(home.Dir(), "AppData", "Local", "cache")
default:
testDefaultCacheHome = filepath.Join(home.Dir(), ".cache")
}
tests := []struct {
name string
env string
want string
}{
{
name: "set env based specification",
env: testDefaultCacheHome,
want: testDefaultCacheHome,
},
{
name: "set env based different from specification",
env: filepath.Join("/tmp", "cache"),
want: filepath.Join("/tmp", "cache"),
},
{
name: "empty env",
env: "",
want: testDefaultCacheHome,
},
}
for _, tt := range tests {
os.Setenv("XDG_CACHE_HOME", tt.env)
t.Run(tt.name, func(t *testing.T) {
if got := CacheHome(); got != tt.want {
t.Errorf("CacheHome() = %v, want %v", got, tt.want)
}
})
}
}
func TestRuntimeDir(t *testing.T) {
var testDefaultRuntimeDir string
switch runtime.GOOS {
case "windows":
testDefaultRuntimeDir = home.Dir()
default:
testDefaultRuntimeDir = filepath.Join("/run", "user", strconv.Itoa(os.Getuid()))
}
tests := []struct {
name string
env string
want string
}{
{
name: "set env based specification",
env: testDefaultRuntimeDir,
want: testDefaultRuntimeDir,
},
{
name: "set env based different from specification",
env: filepath.Join("/tmp", "user", "1000"),
want: filepath.Join("/tmp", "user", "1000"),
},
{
name: "empty env",
env: "",
want: testDefaultRuntimeDir,
},
}
for _, tt := range tests {
os.Setenv("XDG_RUNTIME_DIR", tt.env)
t.Run(tt.name, func(t *testing.T) {
if got := RuntimeDir(); got != tt.want {
t.Errorf("RuntimeDir() = %v, want %v", got, tt.want)
}
})
}
}
func TestNativeMode(t *testing.T) {
// skip test if not darwin
if runtime.GOOS != "darwin" {
t.Skip("native mode for darwin only")
}
Mode = Native
initOnce = sync.Once{}
tests := []struct {
name string
fn string
want string
}{
{
name: "DataHome",
fn: DataHome(),
want: filepath.Join(home.Dir(), "Library", "Application Support"),
},
{
name: "ConfigHome",
fn: ConfigHome(),
want: filepath.Join(home.Dir(), "Library", "Preferences"),
},
{
name: "DataDirs",
fn: DataDirs(),
want: filepath.Join(home.Dir(), "Library", "Application Support"),
},
{
name: "ConfigDirs",
fn: ConfigDirs(),
want: filepath.Join(home.Dir(), "Library", "Preferences"),
},
{
name: "CacheHome",
fn: CacheHome(),
want: filepath.Join(home.Dir(), "Library", "Caches"),
},
{
name: "RuntimeDir",
fn: RuntimeDir(),
want: filepath.Join(home.Dir(), "Library", "Application Support"),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.fn; got != tt.want {
t.Errorf("NativeMode() = %v, want %v", got, tt.want)
}
})
}
}
func Test_expandUser(t *testing.T) {
usr, err := user.Current()
if err != nil {
t.Fatal(err)
}
type args struct {
s string
}
tests := []struct {
name string
args args
want string
}{
{
name: "have tilda",
args: args{s: filepath.Join("~/tmp", ".config")},
want: filepath.ToSlash(filepath.Join(usr.HomeDir, "tmp", ".config")),
},
{
name: "tilda only",
args: args{s: "~/"},
want: filepath.ToSlash(usr.HomeDir),
},
{
name: "no tilda with root",
args: args{s: filepath.Join("/tmp", ".config")},
want: filepath.Join("/tmp", ".config"),
},
{
name: "no tilda with related",
args: args{s: filepath.Join("test", "related")},
want: filepath.Join("test", "related"),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := expandUser(tt.args.s); got != tt.want {
t.Errorf("expandUser(%v) = %v, want %v", tt.args.s, got, tt.want)
}
})
}
}
func BenchmarkDataHome(b *testing.B) {
for i := 0; i < b.N; i++ {
DataHome()
}
}
func BenchmarkConfigHome(b *testing.B) {
for i := 0; i < b.N; i++ {
ConfigHome()
}
}
func BenchmarkDataDirs(b *testing.B) {
for i := 0; i < b.N; i++ {
DataDirs()
}
}
func BenchmarkConfigDirs(b *testing.B) {
for i := 0; i < b.N; i++ {
ConfigHome()
}
}
func BenchmarkCacheHome(b *testing.B) {
for i := 0; i < b.N; i++ {
CacheHome()
}
}
func BenchmarkRuntimeDir(b *testing.B) {
for i := 0; i < b.N; i++ {
RuntimeDir()
}
}
func Benchmark_expandUser(b *testing.B) {
for i := 0; i < b.N; i++ {
expandUser("")
}
}