mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
37 lines
1007 B
Go
37 lines
1007 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/go-homedir"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
"slices"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
const xdgConfigHome = "XDG_CONFIG_HOME"
|
||
|
|
||
|
func assertContains(t *testing.T, array []string, element string) {
|
||
|
if !slices.Contains(array, element) {
|
||
|
t.Errorf("Expected %s to be contained in %s", element, array)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestConfigResolving(t *testing.T) {
|
||
|
t.Run("~/.config/autorestic is used if XDG_CONFIG_HOME is not set", func(t *testing.T) {
|
||
|
// Override env using testing so that env gets restored after test
|
||
|
t.Setenv(xdgConfigHome, "")
|
||
|
_ = os.Unsetenv("XDG_CONFIG_HOME")
|
||
|
configPaths := getConfigPaths()
|
||
|
homeDir, _ := homedir.Dir()
|
||
|
expectedConfigPath := filepath.Join(homeDir, ".config/autorestic")
|
||
|
assertContains(t, configPaths, expectedConfigPath)
|
||
|
})
|
||
|
|
||
|
t.Run("XDG_CONFIG_HOME is respected if set", func(t *testing.T) {
|
||
|
t.Setenv(xdgConfigHome, "/foo/bar")
|
||
|
|
||
|
configPaths := getConfigPaths()
|
||
|
assertContains(t, configPaths, filepath.Join("/", "foo", "bar", "autorestic"))
|
||
|
})
|
||
|
}
|