2020-05-27 18:55:44 +07:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
)
|
|
|
|
|
|
|
|
type PathPrefixSuite struct {
|
2021-11-05 20:14:42 +07:00
|
|
|
*RodSuite
|
2020-05-27 18:55:44 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewPathPrefixSuite() *PathPrefixSuite {
|
2021-11-05 20:14:42 +07:00
|
|
|
return &PathPrefixSuite{RodSuite: new(RodSuite)}
|
2020-05-27 18:55:44 +07:00
|
|
|
}
|
|
|
|
|
2022-05-04 08:01:36 +07:00
|
|
|
func (s *PathPrefixSuite) Test1FAScenario() {
|
|
|
|
suite.Run(s.T(), New1FAScenario())
|
2020-05-27 18:55:44 +07:00
|
|
|
}
|
|
|
|
|
2022-05-04 08:01:36 +07:00
|
|
|
func (s *PathPrefixSuite) Test2FAScenario() {
|
|
|
|
suite.Run(s.T(), New2FAScenario())
|
2020-05-27 18:55:44 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *PathPrefixSuite) TestCustomHeaders() {
|
|
|
|
suite.Run(s.T(), NewCustomHeadersScenario())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *PathPrefixSuite) TestResetPasswordScenario() {
|
|
|
|
suite.Run(s.T(), NewResetPasswordScenario())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPathPrefixSuite(t *testing.T) {
|
2021-03-14 14:08:26 +07:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping suite test in short mode")
|
|
|
|
}
|
|
|
|
|
2020-05-27 18:55:44 +07:00
|
|
|
suite.Run(t, NewPathPrefixSuite())
|
|
|
|
}
|