mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
b27c1fbae9
Add a suite for testing the PathPrefix feature implemented earlier to serve authelia under a multi-purpose domain. Co-authored-by: Clément Michaud <clement.michaud34@gmail.com>
36 lines
709 B
Go
36 lines
709 B
Go
package suites
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type PathPrefixSuite struct {
|
|
*SeleniumSuite
|
|
}
|
|
|
|
func NewPathPrefixSuite() *PathPrefixSuite {
|
|
return &PathPrefixSuite{SeleniumSuite: new(SeleniumSuite)}
|
|
}
|
|
|
|
func (s *PathPrefixSuite) TestOneFactorScenario() {
|
|
suite.Run(s.T(), NewOneFactorScenario())
|
|
}
|
|
|
|
func (s *PathPrefixSuite) TestTwoFactorScenario() {
|
|
suite.Run(s.T(), NewTwoFactorScenario())
|
|
}
|
|
|
|
func (s *PathPrefixSuite) TestCustomHeaders() {
|
|
suite.Run(s.T(), NewCustomHeadersScenario())
|
|
}
|
|
|
|
func (s *PathPrefixSuite) TestResetPasswordScenario() {
|
|
suite.Run(s.T(), NewResetPasswordScenario())
|
|
}
|
|
|
|
func TestPathPrefixSuite(t *testing.T) {
|
|
suite.Run(t, NewPathPrefixSuite())
|
|
}
|