2020-03-04 23:25:52 +00:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
)
|
|
|
|
|
|
|
|
type MySQLSuite struct {
|
2021-11-05 13:14:42 +00:00
|
|
|
*RodSuite
|
2020-03-04 23:25:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewMySQLSuite() *MySQLSuite {
|
2023-01-25 04:11:05 +00:00
|
|
|
return &MySQLSuite{
|
|
|
|
RodSuite: NewRodSuite(mysqlSuiteName),
|
|
|
|
}
|
2020-03-04 23:25:52 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 01:01:36 +00:00
|
|
|
func (s *MySQLSuite) Test1FAScenario() {
|
|
|
|
suite.Run(s.T(), New1FAScenario())
|
2020-03-04 23:25:52 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 01:01:36 +00:00
|
|
|
func (s *MySQLSuite) Test2FAScenario() {
|
|
|
|
suite.Run(s.T(), New2FAScenario())
|
2020-03-04 23:25:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestMySQLSuite(t *testing.T) {
|
2021-03-14 07:08:26 +00:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping suite test in short mode")
|
|
|
|
}
|
|
|
|
|
2020-03-04 23:25:52 +00:00
|
|
|
suite.Run(t, NewMySQLSuite())
|
|
|
|
}
|