mirror of https://github.com/authelia/authelia.git
34 lines
555 B
Go
34 lines
555 B
Go
package suites
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type PostgresSuite struct {
|
|
*RodSuite
|
|
}
|
|
|
|
func NewPostgresSuite() *PostgresSuite {
|
|
return &PostgresSuite{
|
|
RodSuite: NewRodSuite(postgresSuiteName),
|
|
}
|
|
}
|
|
|
|
func (s *PostgresSuite) Test1FAScenario() {
|
|
suite.Run(s.T(), New1FAScenario())
|
|
}
|
|
|
|
func (s *PostgresSuite) Test2FATOTPScenario() {
|
|
suite.Run(s.T(), New2FATOTPScenario())
|
|
}
|
|
|
|
func TestPostgresSuite(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip("skipping suite test in short mode")
|
|
}
|
|
|
|
suite.Run(t, NewPostgresSuite())
|
|
}
|