mirror of
https://github.com/fatedier/frp.git
synced 2026-01-11 22:23:12 +00:00
new e2e framework (#1835)
This commit is contained in:
42
test/e2e/framework/test_context.go
Normal file
42
test/e2e/framework/test_context.go
Normal file
@@ -0,0 +1,42 @@
|
||||
package framework
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
type TestContextType struct {
|
||||
FRPClientPath string
|
||||
FRPServerPath string
|
||||
LogLevel string
|
||||
}
|
||||
|
||||
var TestContext TestContextType
|
||||
|
||||
// RegisterCommonFlags registers flags common to all e2e test suites.
|
||||
// The flag set can be flag.CommandLine (if desired) or a custom
|
||||
// flag set that then gets passed to viperconfig.ViperizeFlags.
|
||||
//
|
||||
// The other Register*Flags methods below can be used to add more
|
||||
// test-specific flags. However, those settings then get added
|
||||
// regardless whether the test is actually in the test suite.
|
||||
//
|
||||
func RegisterCommonFlags(flags *flag.FlagSet) {
|
||||
flags.StringVar(&TestContext.FRPClientPath, "frpc-path", "../../bin/frpc", "The frp client binary to use.")
|
||||
flags.StringVar(&TestContext.FRPServerPath, "frps-path", "../../bin/frps", "The frp server binary to use.")
|
||||
flags.StringVar(&TestContext.LogLevel, "log-level", "debug", "Log level.")
|
||||
}
|
||||
|
||||
func ValidateTestContext(t *TestContextType) error {
|
||||
if t.FRPClientPath == "" || t.FRPServerPath == "" {
|
||||
return fmt.Errorf("frpc and frps binary path can't be empty")
|
||||
}
|
||||
if _, err := os.Stat(t.FRPClientPath); err != nil {
|
||||
return fmt.Errorf("load frpc-path error: %v", err)
|
||||
}
|
||||
if _, err := os.Stat(t.FRPServerPath); err != nil {
|
||||
return fmt.Errorf("load frps-path error: %v", err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user