mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
44 lines
983 B
Go
44 lines
983 B
Go
package e2e
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
_ "github.com/onsi/ginkgo/v2"
|
|
|
|
"github.com/fatedier/frp/pkg/util/log"
|
|
// test source
|
|
"github.com/fatedier/frp/test/e2e/framework"
|
|
_ "github.com/fatedier/frp/test/e2e/legacy/basic"
|
|
_ "github.com/fatedier/frp/test/e2e/legacy/features"
|
|
_ "github.com/fatedier/frp/test/e2e/legacy/plugin"
|
|
_ "github.com/fatedier/frp/test/e2e/v1/basic"
|
|
_ "github.com/fatedier/frp/test/e2e/v1/features"
|
|
_ "github.com/fatedier/frp/test/e2e/v1/plugin"
|
|
)
|
|
|
|
// handleFlags sets up all flags and parses the command line.
|
|
func handleFlags() {
|
|
framework.RegisterCommonFlags(flag.CommandLine)
|
|
flag.Parse()
|
|
}
|
|
|
|
func TestMain(m *testing.M) {
|
|
// Register test flags, then parse flags.
|
|
handleFlags()
|
|
|
|
if err := framework.ValidateTestContext(&framework.TestContext); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
log.InitLogger("console", framework.TestContext.LogLevel, 0, true)
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func TestE2E(t *testing.T) {
|
|
RunE2ETests(t)
|
|
}
|