2019-11-02 21:32:58 +07:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LDAPSuite struct {
|
|
|
|
*SeleniumSuite
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewLDAPSuite() *LDAPSuite {
|
|
|
|
return &LDAPSuite{SeleniumSuite: new(SeleniumSuite)}
|
|
|
|
}
|
|
|
|
|
2019-12-06 04:35:03 +07:00
|
|
|
func (s *LDAPSuite) TestOneFactorScenario() {
|
|
|
|
suite.Run(s.T(), NewOneFactorScenario())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *LDAPSuite) TestTwoFactorScenario() {
|
|
|
|
suite.Run(s.T(), NewTwoFactorScenario())
|
|
|
|
}
|
|
|
|
|
2020-03-31 05:36:04 +07:00
|
|
|
func (s *LDAPSuite) TestResetPassword() {
|
|
|
|
suite.Run(s.T(), NewResetPasswordScenario())
|
|
|
|
}
|
|
|
|
|
2020-12-16 08:30:03 +07:00
|
|
|
func (s *LDAPSuite) TestPasswordComplexity() {
|
|
|
|
suite.Run(s.T(), NewPasswordComplexityScenario())
|
|
|
|
}
|
|
|
|
|
2020-03-31 05:36:04 +07:00
|
|
|
func (s *LDAPSuite) TestSigninEmailScenario() {
|
|
|
|
suite.Run(s.T(), NewSigninEmailScenario())
|
|
|
|
}
|
|
|
|
|
2019-11-02 21:32:58 +07:00
|
|
|
func TestLDAPSuite(t *testing.T) {
|
2021-03-14 14:08:26 +07:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping suite test in short mode")
|
|
|
|
}
|
|
|
|
|
2019-12-06 04:35:03 +07:00
|
|
|
suite.Run(t, NewLDAPSuite())
|
2019-11-02 21:32:58 +07:00
|
|
|
}
|