mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
7c6a86882f
* [MISC] Catch OpenLDAP ppolicy error Further to the discussion over at #361, this change now ensures that OpenLDAP password complexity errors are caught and appropriately handled. This change also includes the PasswordComplexity test suite in the LDAP integration suite. This is because a ppolicy has been setup and enforced. * Remove password history for integration tests * Adjust max failures due to regulation trigger * Fix error handling for password resets * Refactor and include code suggestions
40 lines
746 B
Go
40 lines
746 B
Go
package suites
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type LDAPSuite struct {
|
|
*SeleniumSuite
|
|
}
|
|
|
|
func NewLDAPSuite() *LDAPSuite {
|
|
return &LDAPSuite{SeleniumSuite: new(SeleniumSuite)}
|
|
}
|
|
|
|
func (s *LDAPSuite) TestOneFactorScenario() {
|
|
suite.Run(s.T(), NewOneFactorScenario())
|
|
}
|
|
|
|
func (s *LDAPSuite) TestTwoFactorScenario() {
|
|
suite.Run(s.T(), NewTwoFactorScenario())
|
|
}
|
|
|
|
func (s *LDAPSuite) TestResetPassword() {
|
|
suite.Run(s.T(), NewResetPasswordScenario())
|
|
}
|
|
|
|
func (s *LDAPSuite) TestPasswordComplexity() {
|
|
suite.Run(s.T(), NewPasswordComplexityScenario())
|
|
}
|
|
|
|
func (s *LDAPSuite) TestSigninEmailScenario() {
|
|
suite.Run(s.T(), NewSigninEmailScenario())
|
|
}
|
|
|
|
func TestLDAPSuite(t *testing.T) {
|
|
suite.Run(t, NewLDAPSuite())
|
|
}
|