mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* AuthN: Update signature of redirect client and RedirectURL function * OAuth: use authn.Service to perform oauth authentication and login if feature toggle is enabled * AuthN: register oauth clients * AuthN: set auth module metadata * AuthN: add logs for failed login attempts * AuthN: Don't use enable disabled setting * OAuth: only run hooks when authnService feature toggle is disabled * OAuth: Add function to handle oauth errors from authn.Service
76 lines
1.7 KiB
Go
76 lines
1.7 KiB
Go
package authntest
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/services/authn"
|
|
)
|
|
|
|
type FakeService struct {
|
|
authn.Service
|
|
}
|
|
|
|
var _ authn.ContextAwareClient = new(FakeClient)
|
|
|
|
type FakeClient struct {
|
|
ExpectedName string
|
|
ExpectedErr error
|
|
ExpectedTest bool
|
|
ExpectedPriority uint
|
|
ExpectedIdentity *authn.Identity
|
|
}
|
|
|
|
func (f *FakeClient) Name() string {
|
|
return f.ExpectedName
|
|
}
|
|
|
|
func (f *FakeClient) Authenticate(ctx context.Context, r *authn.Request) (*authn.Identity, error) {
|
|
return f.ExpectedIdentity, f.ExpectedErr
|
|
}
|
|
|
|
func (f *FakeClient) Test(ctx context.Context, r *authn.Request) bool {
|
|
return f.ExpectedTest
|
|
}
|
|
|
|
func (f *FakeClient) Priority() uint {
|
|
return f.ExpectedPriority
|
|
}
|
|
|
|
var _ authn.PasswordClient = new(FakePasswordClient)
|
|
|
|
type FakePasswordClient struct {
|
|
ExpectedErr error
|
|
ExpectedIdentity *authn.Identity
|
|
}
|
|
|
|
func (f FakePasswordClient) AuthenticatePassword(ctx context.Context, r *authn.Request, username, password string) (*authn.Identity, error) {
|
|
return f.ExpectedIdentity, f.ExpectedErr
|
|
}
|
|
|
|
var _ authn.RedirectClient = new(FakeRedirectClient)
|
|
|
|
type FakeRedirectClient struct {
|
|
ExpectedErr error
|
|
ExpectedURL string
|
|
ExpectedName string
|
|
ExpectedOK bool
|
|
ExpectedRedirect *authn.Redirect
|
|
ExpectedIdentity *authn.Identity
|
|
}
|
|
|
|
func (f FakeRedirectClient) Name() string {
|
|
return f.ExpectedName
|
|
}
|
|
|
|
func (f FakeRedirectClient) Authenticate(ctx context.Context, r *authn.Request) (*authn.Identity, error) {
|
|
return f.ExpectedIdentity, f.ExpectedErr
|
|
}
|
|
|
|
func (f FakeRedirectClient) RedirectURL(ctx context.Context, r *authn.Request) (*authn.Redirect, error) {
|
|
return f.ExpectedRedirect, f.ExpectedErr
|
|
}
|
|
|
|
func (f FakeRedirectClient) Test(ctx context.Context, r *authn.Request) bool {
|
|
return f.ExpectedOK
|
|
}
|