mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a0248cd096
This PR changes the suites tests so if go test -short is used, they are skipped per go standards and a message is displayed. Additionally removed some redundant types from suite_high_availability_test.go and adjusted a warning about a nil req var.
44 lines
818 B
Go
44 lines
818 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) {
|
|
if testing.Short() {
|
|
t.Skip("skipping suite test in short mode")
|
|
}
|
|
|
|
suite.Run(t, NewLDAPSuite())
|
|
}
|