2019-04-24 21:52:08 +00:00
|
|
|
package mocks
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
2019-11-24 20:27:59 +00:00
|
|
|
"time"
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2019-12-24 02:14:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/regulation"
|
|
|
|
"github.com/authelia/authelia/internal/storage"
|
2019-04-24 21:52:08 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2019-12-07 11:18:22 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2019-12-24 02:14:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/authorization"
|
|
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
|
|
|
"github.com/authelia/authelia/internal/middlewares"
|
|
|
|
"github.com/authelia/authelia/internal/session"
|
2019-04-24 21:52:08 +00:00
|
|
|
"github.com/golang/mock/gomock"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/sirupsen/logrus/hooks/test"
|
|
|
|
"github.com/valyala/fasthttp"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MockAutheliaCtx a mock of AutheliaCtx
|
|
|
|
type MockAutheliaCtx struct {
|
|
|
|
// Logger hook
|
|
|
|
Hook *test.Hook
|
|
|
|
Ctx *middlewares.AutheliaCtx
|
|
|
|
Ctrl *gomock.Controller
|
|
|
|
|
|
|
|
// Providers
|
|
|
|
UserProviderMock *MockUserProvider
|
2019-11-17 01:05:46 +00:00
|
|
|
StorageProviderMock *storage.MockProvider
|
2019-04-24 21:52:08 +00:00
|
|
|
NotifierMock *MockNotifier
|
|
|
|
|
|
|
|
UserSession *session.UserSession
|
2019-11-24 20:27:59 +00:00
|
|
|
|
|
|
|
Clock TestingClock
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestingClock implementation of clock for tests
|
|
|
|
type TestingClock struct {
|
|
|
|
now time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now return the stored clock
|
|
|
|
func (dc *TestingClock) Now() time.Time {
|
|
|
|
return dc.now
|
|
|
|
}
|
|
|
|
|
|
|
|
// After return a channel receiving the time after duration has elapsed
|
|
|
|
func (dc *TestingClock) After(d time.Duration) <-chan time.Time {
|
|
|
|
return time.After(d)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set set the time of the clock
|
|
|
|
func (dc *TestingClock) Set(now time.Time) {
|
|
|
|
dc.now = now
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewMockAutheliaCtx create an instance of AutheliaCtx mock
|
|
|
|
func NewMockAutheliaCtx(t *testing.T) *MockAutheliaCtx {
|
|
|
|
mockAuthelia := new(MockAutheliaCtx)
|
2019-11-24 20:27:59 +00:00
|
|
|
mockAuthelia.Clock = TestingClock{}
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2019-11-30 14:33:45 +00:00
|
|
|
datetime, _ := time.Parse("2006-Jan-02", "2013-Feb-03")
|
|
|
|
mockAuthelia.Clock.Set(datetime)
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
configuration := schema.Configuration{
|
|
|
|
AccessControl: new(schema.AccessControlConfiguration),
|
|
|
|
}
|
|
|
|
configuration.Session.Name = "authelia_session"
|
|
|
|
configuration.AccessControl.DefaultPolicy = "deny"
|
|
|
|
configuration.AccessControl.Rules = []schema.ACLRule{schema.ACLRule{
|
|
|
|
Domain: "bypass.example.com",
|
|
|
|
Policy: "bypass",
|
|
|
|
}, schema.ACLRule{
|
|
|
|
Domain: "one-factor.example.com",
|
|
|
|
Policy: "one_factor",
|
|
|
|
}, schema.ACLRule{
|
|
|
|
Domain: "two-factor.example.com",
|
|
|
|
Policy: "two_factor",
|
|
|
|
}, schema.ACLRule{
|
|
|
|
Domain: "deny.example.com",
|
|
|
|
Policy: "deny",
|
|
|
|
}}
|
|
|
|
|
|
|
|
providers := middlewares.Providers{}
|
|
|
|
|
|
|
|
mockAuthelia.Ctrl = gomock.NewController(t)
|
|
|
|
mockAuthelia.UserProviderMock = NewMockUserProvider(mockAuthelia.Ctrl)
|
|
|
|
providers.UserProvider = mockAuthelia.UserProviderMock
|
|
|
|
|
2019-11-17 01:05:46 +00:00
|
|
|
mockAuthelia.StorageProviderMock = storage.NewMockProvider(mockAuthelia.Ctrl)
|
2019-04-24 21:52:08 +00:00
|
|
|
providers.StorageProvider = mockAuthelia.StorageProviderMock
|
|
|
|
|
|
|
|
mockAuthelia.NotifierMock = NewMockNotifier(mockAuthelia.Ctrl)
|
|
|
|
providers.Notifier = mockAuthelia.NotifierMock
|
|
|
|
|
|
|
|
providers.Authorizer = authorization.NewAuthorizer(
|
|
|
|
*configuration.AccessControl)
|
|
|
|
|
|
|
|
providers.SessionProvider = session.NewProvider(
|
|
|
|
configuration.Session)
|
|
|
|
|
2019-11-24 20:27:59 +00:00
|
|
|
providers.Regulator = regulation.NewRegulator(configuration.Regulation, providers.StorageProvider, &mockAuthelia.Clock)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
request := &fasthttp.RequestCtx{}
|
|
|
|
// Set a cookie to identify this client throughout the test
|
|
|
|
// request.Request.Header.SetCookie("authelia_session", "client_cookie")
|
|
|
|
|
|
|
|
autheliaCtx, _ := middlewares.NewAutheliaCtx(request, configuration, providers)
|
|
|
|
mockAuthelia.Ctx = autheliaCtx
|
|
|
|
|
|
|
|
logger, hook := test.NewNullLogger()
|
|
|
|
mockAuthelia.Hook = hook
|
|
|
|
|
|
|
|
mockAuthelia.Ctx.Logger = logrus.NewEntry(logger)
|
|
|
|
return mockAuthelia
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close close the mock
|
|
|
|
func (m *MockAutheliaCtx) Close() {
|
|
|
|
m.Hook.Reset()
|
2019-11-24 20:27:59 +00:00
|
|
|
m.Ctrl.Finish()
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Assert200KO assert an error response from the service.
|
|
|
|
func (m *MockAutheliaCtx) Assert200KO(t *testing.T, message string) {
|
|
|
|
assert.Equal(t, 200, m.Ctx.Response.StatusCode())
|
|
|
|
assert.Equal(t, fmt.Sprintf("{\"status\":\"KO\",\"message\":\"%s\"}", message), string(m.Ctx.Response.Body()))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assert200OK assert a successful response from the service.
|
|
|
|
func (m *MockAutheliaCtx) Assert200OK(t *testing.T, data interface{}) {
|
|
|
|
assert.Equal(t, 200, m.Ctx.Response.StatusCode())
|
|
|
|
response := middlewares.OKResponse{
|
|
|
|
Status: "OK",
|
|
|
|
Data: data,
|
|
|
|
}
|
|
|
|
|
|
|
|
b, err := json.Marshal(response)
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, string(b), string(m.Ctx.Response.Body()))
|
|
|
|
}
|
2019-12-07 11:18:22 +00:00
|
|
|
|
|
|
|
func (m *MockAutheliaCtx) GetResponseData(t *testing.T, data interface{}) {
|
|
|
|
okResponse := middlewares.OKResponse{}
|
|
|
|
okResponse.Data = data
|
|
|
|
err := json.Unmarshal(m.Ctx.Response.Body(), &okResponse)
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|