summaryrefslogtreecommitdiff
path: root/internal/authentication/file_user_provider_test.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2021-03-22 20:04:09 +1100
committerGitHub <noreply@github.com>2021-03-22 20:04:09 +1100
commita44f0cf959bfb2c20a3defe7c92f8018799ead86 (patch)
tree14486e0df62df1a74ee55f34c0cb71832af5b268 /internal/authentication/file_user_provider_test.go
parent7ccbaaffe39aa26dd60e7ae99998fd795b2d80cc (diff)
fix: redis sentinel secret missing (#1839)
* fix: redis sentinel secret missing * refactor: use consts for authentication_backend.file.password errs * fix: unit test for new default port * test: cover additional misses * test: fix windows/linux specific test error * test: more windows specific tests * test: remove superfluous url.IsAbs * test: validator 100% coverage
Diffstat (limited to 'internal/authentication/file_user_provider_test.go')
-rw-r--r--internal/authentication/file_user_provider_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/authentication/file_user_provider_test.go b/internal/authentication/file_user_provider_test.go
index dba480951..ffdb0e86a 100644
--- a/internal/authentication/file_user_provider_test.go
+++ b/internal/authentication/file_user_provider_test.go
@@ -4,6 +4,7 @@ import (
"io/ioutil"
"log"
"os"
+ "runtime"
"strings"
"testing"
@@ -34,6 +35,10 @@ func WithDatabase(content []byte, f func(path string)) {
}
func TestShouldErrorPermissionsOnLocalFS(t *testing.T) {
+ if runtime.GOOS == "windows" {
+ t.Skip("skipping test due to being on windows")
+ }
+
_ = os.Mkdir("/tmp/noperms/", 0000)
errors := checkDatabase("/tmp/noperms/users_database.yml")