2018-09-11 21:25:24 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
package api
|
2018-09-11 21:25:24 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2018-09-18 19:56:52 +00:00
|
|
|
|
2021-11-08 12:32:04 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/config"
|
2018-09-11 21:25:24 +00:00
|
|
|
)
|
|
|
|
|
2021-11-08 12:32:04 +00:00
|
|
|
var guiCfg config.GUIConfiguration
|
2018-09-18 19:56:52 +00:00
|
|
|
|
|
|
|
func init() {
|
2021-11-08 12:32:04 +00:00
|
|
|
guiCfg.User = "user"
|
|
|
|
guiCfg.HashAndSetPassword("pass")
|
2018-09-18 19:56:52 +00:00
|
|
|
}
|
|
|
|
|
2018-09-11 21:25:24 +00:00
|
|
|
func TestStaticAuthOK(t *testing.T) {
|
2019-09-05 11:35:51 +00:00
|
|
|
t.Parallel()
|
|
|
|
|
2021-11-08 12:32:04 +00:00
|
|
|
ok := authStatic("user", "pass", guiCfg)
|
2018-09-11 21:25:24 +00:00
|
|
|
if !ok {
|
|
|
|
t.Fatalf("should pass auth")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSimpleAuthUsernameFail(t *testing.T) {
|
2019-09-05 11:35:51 +00:00
|
|
|
t.Parallel()
|
|
|
|
|
2021-11-08 12:32:04 +00:00
|
|
|
ok := authStatic("userWRONG", "pass", guiCfg)
|
2018-09-11 21:25:24 +00:00
|
|
|
if ok {
|
|
|
|
t.Fatalf("should fail auth")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStaticAuthPasswordFail(t *testing.T) {
|
2019-09-05 11:35:51 +00:00
|
|
|
t.Parallel()
|
|
|
|
|
2021-11-08 12:32:04 +00:00
|
|
|
ok := authStatic("user", "passWRONG", guiCfg)
|
2018-09-11 21:25:24 +00:00
|
|
|
if ok {
|
|
|
|
t.Fatalf("should fail auth")
|
|
|
|
}
|
|
|
|
}
|