mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
ea9b408b70
* Remove unused mongo docker-compose file. * Default redirection URL was not taken into account. * Fix possible storage options in config template. * Remove useless checks in u2f registration endpoints. * Add default redirection url in config of duo suite. * Fix log line in response handler of 2FA methods. * Fix integration tests. Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
32 lines
659 B
Go
32 lines
659 B
Go
package suites
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type ShortTimeoutsSuite struct {
|
|
*SeleniumSuite
|
|
}
|
|
|
|
func NewShortTimeoutsSuite() *ShortTimeoutsSuite {
|
|
return &ShortTimeoutsSuite{SeleniumSuite: new(SeleniumSuite)}
|
|
}
|
|
|
|
func (s *ShortTimeoutsSuite) TestDefaultRedirectionURLScenario() {
|
|
suite.Run(s.T(), NewDefaultRedirectionURLScenario())
|
|
}
|
|
|
|
func (s *ShortTimeoutsSuite) TestInactivityScenario() {
|
|
suite.Run(s.T(), NewInactivityScenario())
|
|
}
|
|
|
|
func (s *ShortTimeoutsSuite) TestRegulationScenario() {
|
|
suite.Run(s.T(), NewRegulationScenario())
|
|
}
|
|
|
|
func TestShortTimeoutsSuite(t *testing.T) {
|
|
suite.Run(t, NewShortTimeoutsSuite())
|
|
}
|