2019-11-17 02:50:58 +07:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
)
|
|
|
|
|
|
|
|
type PostgresSuite struct {
|
2021-11-05 20:14:42 +07:00
|
|
|
*RodSuite
|
2019-11-17 02:50:58 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewPostgresSuite() *PostgresSuite {
|
2021-11-05 20:14:42 +07:00
|
|
|
return &PostgresSuite{RodSuite: new(RodSuite)}
|
2019-11-17 02:50:58 +07:00
|
|
|
}
|
|
|
|
|
2022-05-04 08:01:36 +07:00
|
|
|
func (s *PostgresSuite) Test1FAScenario() {
|
|
|
|
suite.Run(s.T(), New1FAScenario())
|
2019-12-06 04:35:03 +07:00
|
|
|
}
|
|
|
|
|
2022-05-04 08:01:36 +07:00
|
|
|
func (s *PostgresSuite) Test2FAScenario() {
|
|
|
|
suite.Run(s.T(), New2FAScenario())
|
2019-12-06 04:35:03 +07:00
|
|
|
}
|
|
|
|
|
2019-11-17 02:50:58 +07:00
|
|
|
func TestPostgresSuite(t *testing.T) {
|
2021-03-14 14:08:26 +07:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping suite test in short mode")
|
|
|
|
}
|
|
|
|
|
2019-12-06 04:35:03 +07:00
|
|
|
suite.Run(t, NewPostgresSuite())
|
2019-11-17 02:50:58 +07:00
|
|
|
}
|