mirror of https://github.com/authelia/authelia.git
46 lines
938 B
Go
46 lines
938 B
Go
package suites
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type ActiveDirectorySuite struct {
|
|
*RodSuite
|
|
}
|
|
|
|
func NewActiveDirectorySuite() *ActiveDirectorySuite {
|
|
return &ActiveDirectorySuite{
|
|
RodSuite: NewRodSuite(activedirectorySuiteName),
|
|
}
|
|
}
|
|
|
|
func (s *ActiveDirectorySuite) Test1FAScenario() {
|
|
suite.Run(s.T(), New1FAScenario())
|
|
}
|
|
|
|
func (s *ActiveDirectorySuite) Test2FATOTPScenario() {
|
|
suite.Run(s.T(), New2FATOTPScenario())
|
|
}
|
|
|
|
func (s *ActiveDirectorySuite) TestResetPassword() {
|
|
suite.Run(s.T(), NewResetPasswordScenario())
|
|
}
|
|
|
|
func (s *ActiveDirectorySuite) TestPasswordComplexity() {
|
|
suite.Run(s.T(), NewPasswordComplexityScenario())
|
|
}
|
|
|
|
func (s *ActiveDirectorySuite) TestSigninEmailScenario() {
|
|
suite.Run(s.T(), NewSigninEmailScenario())
|
|
}
|
|
|
|
func TestActiveDirectorySuite(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip("skipping suite test in short mode")
|
|
}
|
|
|
|
suite.Run(t, NewActiveDirectorySuite())
|
|
}
|