2019-04-24 21:52:08 +00:00
|
|
|
package regulation_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2019-12-24 02:14:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
|
|
|
"github.com/authelia/authelia/internal/mocks"
|
|
|
|
"github.com/authelia/authelia/internal/models"
|
|
|
|
"github.com/authelia/authelia/internal/regulation"
|
|
|
|
"github.com/authelia/authelia/internal/storage"
|
2019-04-24 21:52:08 +00:00
|
|
|
"github.com/golang/mock/gomock"
|
2019-11-02 14:32:58 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/suite"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type RegulatorSuite struct {
|
|
|
|
suite.Suite
|
|
|
|
|
|
|
|
ctrl *gomock.Controller
|
2019-11-17 01:05:46 +00:00
|
|
|
storageMock *storage.MockProvider
|
2019-04-24 21:52:08 +00:00
|
|
|
configuration schema.RegulationConfiguration
|
2019-11-30 14:33:45 +00:00
|
|
|
clock mocks.TestingClock
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RegulatorSuite) SetupTest() {
|
|
|
|
s.ctrl = gomock.NewController(s.T())
|
2019-11-17 01:05:46 +00:00
|
|
|
s.storageMock = storage.NewMockProvider(s.ctrl)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
s.configuration = schema.RegulationConfiguration{
|
|
|
|
MaxRetries: 3,
|
|
|
|
BanTime: 180,
|
|
|
|
FindTime: 30,
|
|
|
|
}
|
2019-11-30 14:33:45 +00:00
|
|
|
s.clock.Set(time.Now())
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RegulatorSuite) TearDownTest() {
|
|
|
|
s.ctrl.Finish()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RegulatorSuite) TestShouldNotThrowWhenUserIsLegitimate() {
|
|
|
|
attempts := []models.AuthenticationAttempt{
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: true,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-4 * time.Minute),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
s.storageMock.EXPECT().
|
|
|
|
LoadLatestAuthenticationLogs(gomock.Eq("john"), gomock.Any()).
|
|
|
|
Return(attempts, nil)
|
|
|
|
|
2019-11-30 14:33:45 +00:00
|
|
|
regulator := regulation.NewRegulator(&s.configuration, s.storageMock, &s.clock)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
_, err := regulator.Regulate("john")
|
|
|
|
assert.NoError(s.T(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This test checks the case in which a user failed to authenticate many times but always
|
|
|
|
// with a certain amount of time larger than FindTime. Meaning the user should not be banned.
|
|
|
|
func (s *RegulatorSuite) TestShouldNotThrowWhenFailedAuthenticationNotInFindTime() {
|
|
|
|
attemptsInDB := []models.AuthenticationAttempt{
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-1 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-90 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-180 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
s.storageMock.EXPECT().
|
|
|
|
LoadLatestAuthenticationLogs(gomock.Eq("john"), gomock.Any()).
|
|
|
|
Return(attemptsInDB, nil)
|
|
|
|
|
2019-11-30 14:33:45 +00:00
|
|
|
regulator := regulation.NewRegulator(&s.configuration, s.storageMock, &s.clock)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
_, err := regulator.Regulate("john")
|
|
|
|
assert.NoError(s.T(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This test checks the case in which a user failed to authenticate many times only a few
|
|
|
|
// seconds ago (meaning we are checking from now back to now-FindTime).
|
|
|
|
func (s *RegulatorSuite) TestShouldBanUserIfLatestAttemptsAreWithinFinTime() {
|
|
|
|
attemptsInDB := []models.AuthenticationAttempt{
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-1 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-4 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-6 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-180 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
s.storageMock.EXPECT().
|
|
|
|
LoadLatestAuthenticationLogs(gomock.Eq("john"), gomock.Any()).
|
|
|
|
Return(attemptsInDB, nil)
|
|
|
|
|
2019-11-30 14:33:45 +00:00
|
|
|
regulator := regulation.NewRegulator(&s.configuration, s.storageMock, &s.clock)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
_, err := regulator.Regulate("john")
|
|
|
|
assert.Equal(s.T(), regulation.ErrUserIsBanned, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This test checks the case in which a user failed to authenticate many times only a few
|
|
|
|
// seconds ago (meaning we are checking from now-FindTime+X back to now-2FindTime+X knowing that
|
|
|
|
// we are within now and now-BanTime). It means the user has been banned some time ago and is still
|
|
|
|
// banned right now.
|
|
|
|
func (s *RegulatorSuite) TestShouldCheckUserIsStillBanned() {
|
|
|
|
attemptsInDB := []models.AuthenticationAttempt{
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-31 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-34 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-36 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
s.storageMock.EXPECT().
|
|
|
|
LoadLatestAuthenticationLogs(gomock.Eq("john"), gomock.Any()).
|
|
|
|
Return(attemptsInDB, nil)
|
|
|
|
|
2019-11-30 14:33:45 +00:00
|
|
|
regulator := regulation.NewRegulator(&s.configuration, s.storageMock, &s.clock)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
_, err := regulator.Regulate("john")
|
|
|
|
assert.Equal(s.T(), regulation.ErrUserIsBanned, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RegulatorSuite) TestShouldCheckUserIsNotYetBanned() {
|
|
|
|
attemptsInDB := []models.AuthenticationAttempt{
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-34 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-36 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
s.storageMock.EXPECT().
|
|
|
|
LoadLatestAuthenticationLogs(gomock.Eq("john"), gomock.Any()).
|
|
|
|
Return(attemptsInDB, nil)
|
|
|
|
|
2019-11-30 14:33:45 +00:00
|
|
|
regulator := regulation.NewRegulator(&s.configuration, s.storageMock, &s.clock)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
_, err := regulator.Regulate("john")
|
|
|
|
assert.NoError(s.T(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RegulatorSuite) TestShouldCheckUserWasAboutToBeBanned() {
|
|
|
|
attemptsInDB := []models.AuthenticationAttempt{
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-14 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
// more than 30 seconds elapsed between this auth and the preceding one.
|
|
|
|
// In that case we don't need to regulate the user even though the number
|
|
|
|
// of retrieved attempts is 3.
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-94 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-96 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
s.storageMock.EXPECT().
|
|
|
|
LoadLatestAuthenticationLogs(gomock.Eq("john"), gomock.Any()).
|
|
|
|
Return(attemptsInDB, nil)
|
|
|
|
|
2019-11-30 14:33:45 +00:00
|
|
|
regulator := regulation.NewRegulator(&s.configuration, s.storageMock, &s.clock)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
_, err := regulator.Regulate("john")
|
|
|
|
assert.NoError(s.T(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RegulatorSuite) TestShouldCheckRegulationHasBeenResetOnSuccessfulAttempt() {
|
|
|
|
attemptsInDB := []models.AuthenticationAttempt{
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-90 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: true,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-93 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
// The user was almost banned but he did a successful attempt. Therefore, even if the next
|
2020-01-05 23:03:16 +00:00
|
|
|
// failure happens within FindTime, he should not be banned.
|
2019-04-24 21:52:08 +00:00
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-94 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
models.AuthenticationAttempt{
|
|
|
|
Username: "john",
|
|
|
|
Successful: false,
|
2019-11-30 14:33:45 +00:00
|
|
|
Time: s.clock.Now().Add(-96 * time.Second),
|
2019-04-24 21:52:08 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
s.storageMock.EXPECT().
|
|
|
|
LoadLatestAuthenticationLogs(gomock.Eq("john"), gomock.Any()).
|
|
|
|
Return(attemptsInDB, nil)
|
|
|
|
|
2019-11-30 14:33:45 +00:00
|
|
|
regulator := regulation.NewRegulator(&s.configuration, s.storageMock, &s.clock)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
_, err := regulator.Regulate("john")
|
|
|
|
assert.NoError(s.T(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRunRegulatorSuite(t *testing.T) {
|
|
|
|
s := new(RegulatorSuite)
|
|
|
|
suite.Run(t, s)
|
|
|
|
}
|