mirror of
				https://github.com/fatedier/frp
				synced 2025-10-27 10:16:06 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			769 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			769 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package e2e
 | |
| 
 | |
| import (
 | |
| 	"flag"
 | |
| 	"fmt"
 | |
| 	"os"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/fatedier/frp/pkg/util/log"
 | |
| 	"github.com/fatedier/frp/test/e2e/framework"
 | |
| 
 | |
| 	// test source
 | |
| 	_ "github.com/fatedier/frp/test/e2e/basic"
 | |
| 	_ "github.com/fatedier/frp/test/e2e/plugin"
 | |
| 
 | |
| 	_ "github.com/onsi/ginkgo"
 | |
| )
 | |
| 
 | |
| // 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.InitLog("console", "", framework.TestContext.LogLevel, 0, true)
 | |
| 	os.Exit(m.Run())
 | |
| }
 | |
| 
 | |
| func TestE2E(t *testing.T) {
 | |
| 	RunE2ETests(t)
 | |
| }
 | 
