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
|
// +build darwin
package gap
import (
"testing"
)
func TestPaths(t *testing.T) {
tests := []struct {
scope *Scope
dataDir string
cacheDir string
configFile string
dataFile string
logFile string
}{
{
scope: NewScope(System, "foobar"),
dataDir: "/Library/Application Support/foobar",
cacheDir: "/Library/Caches/foobar",
configFile: "/Library/Preferences/foobar/foobar.conf",
dataFile: "/Library/Application Support/foobar/foobar.data",
logFile: "/Library/Logs/foobar/foobar.log",
},
{
scope: NewVendorScope(System, "barcorp", "foobar"),
dataDir: "/Library/Application Support/barcorp/foobar",
cacheDir: "/Library/Caches/barcorp/foobar",
configFile: "/Library/Preferences/barcorp/foobar/foobar.conf",
dataFile: "/Library/Application Support/barcorp/foobar/foobar.data",
logFile: "/Library/Logs/barcorp/foobar/foobar.log",
},
{
scope: NewScope(User, "foobar"),
dataDir: "~/Library/Application Support/foobar",
cacheDir: "~/Library/Caches/foobar",
configFile: "~/Library/Preferences/foobar/foobar.conf",
dataFile: "~/Library/Application Support/foobar/foobar.data",
logFile: "~/Library/Logs/foobar/foobar.log",
},
{
scope: NewCustomHomeScope("/tmp", "", "foobar"),
dataDir: "/tmp/Library/Application Support/foobar",
cacheDir: "/tmp/Library/Caches/foobar",
configFile: "/tmp/Library/Preferences/foobar/foobar.conf",
dataFile: "/tmp/Library/Application Support/foobar/foobar.data",
logFile: "/tmp/Library/Logs/foobar/foobar.log",
},
}
for _, tt := range tests {
paths, err := tt.scope.DataDirs()
if err != nil {
t.Errorf("Error retrieving data dir: %s", err)
}
if paths[0] != expandUser(tt.dataDir) {
t.Errorf("Expected data dir: %s - got: %s", tt.dataDir, paths[0])
}
path, err := tt.scope.CacheDir()
if err != nil {
t.Errorf("Error retrieving cache dir: %s", err)
}
if path != expandUser(tt.cacheDir) {
t.Errorf("Expected cache dir: %s - got: %s", tt.cacheDir, path)
}
path, err = tt.scope.ConfigPath(tt.scope.App + ".conf")
if err != nil {
t.Errorf("Error retrieving config path: %s", err)
}
if path != expandUser(tt.configFile) {
t.Errorf("Expected config path: %s - got: %s", tt.configFile, path)
}
path, err = tt.scope.DataPath(tt.scope.App + ".data")
if err != nil {
t.Errorf("Error retrieving data path: %s", err)
}
if path != expandUser(tt.dataFile) {
t.Errorf("Expected data path: %s - got: %s", tt.dataFile, path)
}
path, err = tt.scope.LogPath(tt.scope.App + ".log")
if err != nil {
t.Errorf("Error retrieving log path: %s", err)
}
if path != expandUser(tt.logFile) {
t.Errorf("Expected log path: %s - got: %s", tt.logFile, path)
}
}
}
|