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"
|
2023-09-24 17:23:49 +00:00
|
|
|
guiCfg.SetPassword("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")
|
|
|
|
}
|
|
|
|
}
|
2023-05-10 05:52:02 +00:00
|
|
|
|
|
|
|
func TestAuthLDAPSendsCorrectBindDNWithTemplate(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
templatedDn := ldapTemplateBindDN("cn=%s,dc=some,dc=example,dc=com", "username")
|
|
|
|
expectedDn := "cn=username,dc=some,dc=example,dc=com"
|
|
|
|
if expectedDn != templatedDn {
|
|
|
|
t.Fatalf("ldapTemplateBindDN should be %s != %s", expectedDn, templatedDn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAuthLDAPSendsCorrectBindDNWithNoTemplate(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
templatedDn := ldapTemplateBindDN("cn=fixedusername,dc=some,dc=example,dc=com", "username")
|
|
|
|
expectedDn := "cn=fixedusername,dc=some,dc=example,dc=com"
|
|
|
|
if expectedDn != templatedDn {
|
|
|
|
t.Fatalf("ldapTemplateBindDN should be %s != %s", expectedDn, templatedDn)
|
|
|
|
}
|
|
|
|
}
|