2020-01-10 04:49:30 +00:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
)
|
|
|
|
|
|
|
|
type HAProxySuite struct {
|
2021-11-05 13:14:42 +00:00
|
|
|
*RodSuite
|
2020-01-10 04:49:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewHAProxySuite() *HAProxySuite {
|
2021-11-05 13:14:42 +00:00
|
|
|
return &HAProxySuite{RodSuite: new(RodSuite)}
|
2020-01-10 04:49:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HAProxySuite) TestOneFactorScenario() {
|
|
|
|
suite.Run(s.T(), NewOneFactorScenario())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HAProxySuite) TestTwoFactorScenario() {
|
|
|
|
suite.Run(s.T(), NewTwoFactorScenario())
|
|
|
|
}
|
|
|
|
|
2020-05-06 01:50:37 +00:00
|
|
|
func (s *HAProxySuite) TestCustomHeaders() {
|
|
|
|
suite.Run(s.T(), NewCustomHeadersScenario())
|
|
|
|
}
|
|
|
|
|
2020-01-10 04:49:30 +00:00
|
|
|
func TestHAProxySuite(t *testing.T) {
|
2021-03-14 07:08:26 +00:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping suite test in short mode")
|
|
|
|
}
|
|
|
|
|
2020-01-10 04:49:30 +00:00
|
|
|
suite.Run(t, NewHAProxySuite())
|
|
|
|
}
|