mirror of
https://github.com/cheat/cheat.git
synced 2024-10-31 21:21:02 +01:00
85f5ae8ec7
Make various lint corrections in order to appease `staticcheck`.
53 lines
1.0 KiB
Go
53 lines
1.0 KiB
Go
package config
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
// TestPathConfigNotExists asserts that `Path` identifies non-existent config
|
|
// files
|
|
func TestPathConfigNotExists(t *testing.T) {
|
|
|
|
// package (invalid) cheatpaths
|
|
paths := []string{"/cheat-test-conf-does-not-exist"}
|
|
|
|
// assert
|
|
if _, err := Path(paths); err == nil {
|
|
t.Errorf("failed to identify non-existent config file")
|
|
}
|
|
|
|
}
|
|
|
|
// TestPathConfigExists asserts that `Path` identifies existent config files
|
|
func TestPathConfigExists(t *testing.T) {
|
|
|
|
// initialize a temporary config file
|
|
confFile, err := os.CreateTemp("", "cheat-test")
|
|
if err != nil {
|
|
t.Errorf("failed to create temp file: %v", err)
|
|
}
|
|
|
|
// clean up the temp file
|
|
defer os.Remove(confFile.Name())
|
|
|
|
// package cheatpaths
|
|
paths := []string{
|
|
"/cheat-test-conf-does-not-exist",
|
|
confFile.Name(),
|
|
}
|
|
|
|
// assert
|
|
got, err := Path(paths)
|
|
if err != nil {
|
|
t.Errorf("failed to identify config file: %v", err)
|
|
}
|
|
if got != confFile.Name() {
|
|
t.Errorf(
|
|
"failed to return config path: want: %s, got: %s",
|
|
confFile.Name(),
|
|
got,
|
|
)
|
|
}
|
|
}
|