frp/test/e2e/e2e_test.go

44 lines
983 B
Go
Raw Permalink Normal View History

2020-06-02 22:48:55 +08:00
package e2e
import (
"flag"
"fmt"
"os"
"testing"
2023-02-27 14:44:16 +08:00
_ "github.com/onsi/ginkgo/v2"
2020-09-07 14:57:23 +08:00
2022-08-29 01:02:53 +08:00
"github.com/fatedier/frp/pkg/util/log"
2020-09-07 14:57:23 +08:00
// test source
2022-08-29 01:02:53 +08:00
"github.com/fatedier/frp/test/e2e/framework"
2023-09-13 16:32:39 +08:00
_ "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"
2020-06-02 22:48:55 +08:00
)
// 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)
}
2024-03-12 13:58:53 +08:00
log.InitLogger("console", framework.TestContext.LogLevel, 0, true)
2020-06-02 22:48:55 +08:00
os.Exit(m.Run())
}
func TestE2E(t *testing.T) {
RunE2ETests(t)
}