2019-11-02 14:32:58 +00:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LDAPSuite struct {
|
2021-11-05 13:14:42 +00:00
|
|
|
*RodSuite
|
2019-11-02 14:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewLDAPSuite() *LDAPSuite {
|
2023-01-25 04:11:05 +00:00
|
|
|
return &LDAPSuite{
|
|
|
|
RodSuite: NewRodSuite(ldapSuiteName),
|
|
|
|
}
|
2019-11-02 14:32:58 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 01:01:36 +00:00
|
|
|
func (s *LDAPSuite) Test1FAScenario() {
|
|
|
|
suite.Run(s.T(), New1FAScenario())
|
2019-12-05 21:35:03 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 01:01:36 +00:00
|
|
|
func (s *LDAPSuite) Test2FAScenario() {
|
|
|
|
suite.Run(s.T(), New2FAScenario())
|
2019-12-05 21:35:03 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:36:04 +00:00
|
|
|
func (s *LDAPSuite) TestResetPassword() {
|
|
|
|
suite.Run(s.T(), NewResetPasswordScenario())
|
|
|
|
}
|
|
|
|
|
2020-12-16 01:30:03 +00:00
|
|
|
func (s *LDAPSuite) TestPasswordComplexity() {
|
|
|
|
suite.Run(s.T(), NewPasswordComplexityScenario())
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:36:04 +00:00
|
|
|
func (s *LDAPSuite) TestSigninEmailScenario() {
|
|
|
|
suite.Run(s.T(), NewSigninEmailScenario())
|
|
|
|
}
|
|
|
|
|
2019-11-02 14:32:58 +00:00
|
|
|
func TestLDAPSuite(t *testing.T) {
|
2021-03-14 07:08:26 +00:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping suite test in short mode")
|
|
|
|
}
|
|
|
|
|
2019-12-05 21:35:03 +00:00
|
|
|
suite.Run(t, NewLDAPSuite())
|
2019-11-02 14:32:58 +00:00
|
|
|
}
|