2020-02-01 12:54:50 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-02-29 23:13:33 +00:00
|
|
|
"regexp"
|
2020-02-01 12:54:50 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/golang/mock/gomock"
|
2020-12-16 01:47:31 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2020-02-01 12:54:50 +00:00
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/tstranex/u2f"
|
2020-04-05 12:37:21 +00:00
|
|
|
|
2021-08-11 01:04:35 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/mocks"
|
|
|
|
"github.com/authelia/authelia/v4/internal/session"
|
2020-02-01 12:54:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type HandlerSignTOTPSuite struct {
|
|
|
|
suite.Suite
|
|
|
|
|
|
|
|
mock *mocks.MockAutheliaCtx
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HandlerSignTOTPSuite) SetupTest() {
|
|
|
|
s.mock = mocks.NewMockAutheliaCtx(s.T())
|
|
|
|
userSession := s.mock.Ctx.GetSession()
|
2020-05-02 16:20:40 +00:00
|
|
|
userSession.Username = testUsername
|
2020-02-01 12:54:50 +00:00
|
|
|
userSession.U2FChallenge = &u2f.Challenge{}
|
|
|
|
userSession.U2FRegistration = &session.U2FRegistration{}
|
2020-12-16 01:47:31 +00:00
|
|
|
err := s.mock.Ctx.SaveSession(userSession)
|
|
|
|
require.NoError(s.T(), err)
|
2020-02-01 12:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HandlerSignTOTPSuite) TearDownTest() {
|
|
|
|
s.mock.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HandlerSignTOTPSuite) TestShouldRedirectUserToDefaultURL() {
|
|
|
|
verifier := NewMockTOTPVerifier(s.mock.Ctrl)
|
|
|
|
|
|
|
|
s.mock.StorageProviderMock.EXPECT().
|
|
|
|
LoadTOTPSecret(gomock.Any()).
|
|
|
|
Return("secret", nil)
|
|
|
|
|
|
|
|
verifier.EXPECT().
|
|
|
|
Verify(gomock.Eq("abc"), gomock.Eq("secret")).
|
2020-03-25 01:48:20 +00:00
|
|
|
Return(true, nil)
|
2020-02-01 12:54:50 +00:00
|
|
|
|
2020-05-02 16:20:40 +00:00
|
|
|
s.mock.Ctx.Configuration.DefaultRedirectionURL = testRedirectionURL
|
2020-02-01 12:54:50 +00:00
|
|
|
|
|
|
|
bodyBytes, err := json.Marshal(signTOTPRequestBody{
|
|
|
|
Token: "abc",
|
|
|
|
})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.mock.Ctx.Request.SetBody(bodyBytes)
|
|
|
|
|
|
|
|
SecondFactorTOTPPost(verifier)(s.mock.Ctx)
|
|
|
|
s.mock.Assert200OK(s.T(), redirectResponse{
|
2020-05-02 16:20:40 +00:00
|
|
|
Redirect: testRedirectionURL,
|
2020-02-01 12:54:50 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HandlerSignTOTPSuite) TestShouldNotReturnRedirectURL() {
|
|
|
|
verifier := NewMockTOTPVerifier(s.mock.Ctrl)
|
|
|
|
|
|
|
|
s.mock.StorageProviderMock.EXPECT().
|
|
|
|
LoadTOTPSecret(gomock.Any()).
|
|
|
|
Return("secret", nil)
|
|
|
|
|
|
|
|
verifier.EXPECT().
|
|
|
|
Verify(gomock.Eq("abc"), gomock.Eq("secret")).
|
2020-03-25 01:48:20 +00:00
|
|
|
Return(true, nil)
|
2020-02-01 12:54:50 +00:00
|
|
|
|
|
|
|
bodyBytes, err := json.Marshal(signTOTPRequestBody{
|
|
|
|
Token: "abc",
|
|
|
|
})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.mock.Ctx.Request.SetBody(bodyBytes)
|
|
|
|
|
|
|
|
SecondFactorTOTPPost(verifier)(s.mock.Ctx)
|
|
|
|
s.mock.Assert200OK(s.T(), nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HandlerSignTOTPSuite) TestShouldRedirectUserToSafeTargetURL() {
|
|
|
|
verifier := NewMockTOTPVerifier(s.mock.Ctrl)
|
|
|
|
|
|
|
|
s.mock.StorageProviderMock.EXPECT().
|
|
|
|
LoadTOTPSecret(gomock.Any()).
|
|
|
|
Return("secret", nil)
|
|
|
|
|
|
|
|
verifier.EXPECT().
|
|
|
|
Verify(gomock.Eq("abc"), gomock.Eq("secret")).
|
2020-03-25 01:48:20 +00:00
|
|
|
Return(true, nil)
|
2020-02-01 12:54:50 +00:00
|
|
|
|
|
|
|
bodyBytes, err := json.Marshal(signTOTPRequestBody{
|
|
|
|
Token: "abc",
|
|
|
|
TargetURL: "https://mydomain.local",
|
|
|
|
})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.mock.Ctx.Request.SetBody(bodyBytes)
|
|
|
|
|
|
|
|
SecondFactorTOTPPost(verifier)(s.mock.Ctx)
|
|
|
|
s.mock.Assert200OK(s.T(), redirectResponse{
|
|
|
|
Redirect: "https://mydomain.local",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HandlerSignTOTPSuite) TestShouldNotRedirectToUnsafeURL() {
|
|
|
|
verifier := NewMockTOTPVerifier(s.mock.Ctrl)
|
|
|
|
|
|
|
|
s.mock.StorageProviderMock.EXPECT().
|
|
|
|
LoadTOTPSecret(gomock.Any()).
|
|
|
|
Return("secret", nil)
|
|
|
|
|
|
|
|
verifier.EXPECT().
|
|
|
|
Verify(gomock.Eq("abc"), gomock.Eq("secret")).
|
2020-03-25 01:48:20 +00:00
|
|
|
Return(true, nil)
|
2020-02-01 12:54:50 +00:00
|
|
|
|
|
|
|
bodyBytes, err := json.Marshal(signTOTPRequestBody{
|
|
|
|
Token: "abc",
|
|
|
|
TargetURL: "http://mydomain.local",
|
|
|
|
})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.mock.Ctx.Request.SetBody(bodyBytes)
|
|
|
|
|
|
|
|
SecondFactorTOTPPost(verifier)(s.mock.Ctx)
|
|
|
|
s.mock.Assert200OK(s.T(), nil)
|
|
|
|
}
|
|
|
|
|
2020-02-29 23:13:33 +00:00
|
|
|
func (s *HandlerSignTOTPSuite) TestShouldRegenerateSessionForPreventingSessionFixation() {
|
|
|
|
verifier := NewMockTOTPVerifier(s.mock.Ctrl)
|
|
|
|
|
|
|
|
s.mock.StorageProviderMock.EXPECT().
|
|
|
|
LoadTOTPSecret(gomock.Any()).
|
|
|
|
Return("secret", nil)
|
|
|
|
|
|
|
|
verifier.EXPECT().
|
|
|
|
Verify(gomock.Eq("abc"), gomock.Eq("secret")).
|
2020-03-25 01:48:20 +00:00
|
|
|
Return(true, nil)
|
2020-02-29 23:13:33 +00:00
|
|
|
|
|
|
|
bodyBytes, err := json.Marshal(signTOTPRequestBody{
|
|
|
|
Token: "abc",
|
|
|
|
})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.mock.Ctx.Request.SetBody(bodyBytes)
|
|
|
|
|
|
|
|
r := regexp.MustCompile("^authelia_session=(.*); path=")
|
|
|
|
res := r.FindAllStringSubmatch(string(s.mock.Ctx.Response.Header.PeekCookie("authelia_session")), -1)
|
|
|
|
|
|
|
|
SecondFactorTOTPPost(verifier)(s.mock.Ctx)
|
|
|
|
s.mock.Assert200OK(s.T(), nil)
|
|
|
|
|
|
|
|
s.Assert().NotEqual(
|
|
|
|
res[0][1],
|
|
|
|
string(s.mock.Ctx.Request.Header.Cookie("authelia_session")))
|
|
|
|
}
|
|
|
|
|
2020-02-01 12:54:50 +00:00
|
|
|
func TestRunHandlerSignTOTPSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(HandlerSignTOTPSuite))
|
|
|
|
}
|