ghostream/auth/basic/basic_test.go

18 lines
414 B
Go
Raw Normal View History

package basic
2020-10-01 18:11:43 +00:00
import (
"testing"
)
func TestBasicLogin(t *testing.T) {
basicCredentials := make(map[string]string)
basicCredentials["demo"] = "$2b$15$LRnG3eIHFlYIguTxZOLH7eHwbQC/vqjnLq6nDFiHSUDKIU.f5/1H6"
backend, _ := New(&Options{Credentials: basicCredentials})
ok, err := backend.Login("demo", "demo")
if !ok {
t.Error("Error while logging with the basic authentication:", err)
}
backend.Close()
}