authelia/internal/suites/suite_ldap_test.go
Amir Zarrinkafsh cac8919f97
test: add redis restart test back to traefik2 suite (#3298)
* test: add redis restart test back to traefik2 suite

* refactor(suites): mustpress -> mustinput for totp

* refactor(suites): rename suites for test ordering
2022-05-04 11:01:36 +10:00

44 lines
779 B
Go

package suites
import (
"testing"
"github.com/stretchr/testify/suite"
)
type LDAPSuite struct {
*RodSuite
}
func NewLDAPSuite() *LDAPSuite {
return &LDAPSuite{RodSuite: new(RodSuite)}
}
func (s *LDAPSuite) Test1FAScenario() {
suite.Run(s.T(), New1FAScenario())
}
func (s *LDAPSuite) Test2FAScenario() {
suite.Run(s.T(), New2FAScenario())
}
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) {
if testing.Short() {
t.Skip("skipping suite test in short mode")
}
suite.Run(t, NewLDAPSuite())
}