blob: b49ce9eb88da895a82422278a53ee263fbfe0509 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package suites
import (
"testing"
"github.com/stretchr/testify/suite"
)
type LDAPSuite struct {
*RodSuite
}
func NewLDAPSuite() *LDAPSuite {
return &LDAPSuite{
RodSuite: NewRodSuite(ldapSuiteName),
}
}
func (s *LDAPSuite) Test1FAScenario() {
suite.Run(s.T(), New1FAScenario())
}
func (s *LDAPSuite) Test2FATOTPScenario() {
suite.Run(s.T(), New2FATOTPScenario())
}
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())
}
|