mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
78 lines
2.1 KiB
Go
78 lines
2.1 KiB
Go
package scenarios
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
_ "github.com/v2ray/v2ray-core/app/router/json"
|
|
_ "github.com/v2ray/v2ray-core/app/router/rules"
|
|
_ "github.com/v2ray/v2ray-core/app/router/rules/json"
|
|
"github.com/v2ray/v2ray-core/common/log"
|
|
"github.com/v2ray/v2ray-core/shell/point"
|
|
pointjson "github.com/v2ray/v2ray-core/shell/point/json"
|
|
|
|
// The following are neccesary as they register handlers in their init functions.
|
|
_ "github.com/v2ray/v2ray-core/proxy/blackhole"
|
|
_ "github.com/v2ray/v2ray-core/proxy/blackhole/json"
|
|
_ "github.com/v2ray/v2ray-core/proxy/dokodemo"
|
|
_ "github.com/v2ray/v2ray-core/proxy/dokodemo/json"
|
|
_ "github.com/v2ray/v2ray-core/proxy/freedom"
|
|
_ "github.com/v2ray/v2ray-core/proxy/freedom/json"
|
|
_ "github.com/v2ray/v2ray-core/proxy/socks"
|
|
_ "github.com/v2ray/v2ray-core/proxy/socks/json"
|
|
_ "github.com/v2ray/v2ray-core/proxy/vmess/inbound"
|
|
_ "github.com/v2ray/v2ray-core/proxy/vmess/inbound/json"
|
|
_ "github.com/v2ray/v2ray-core/proxy/vmess/outbound"
|
|
_ "github.com/v2ray/v2ray-core/proxy/vmess/outbound/json"
|
|
)
|
|
|
|
var (
|
|
runningServers = make([]*point.Point, 0, 10)
|
|
)
|
|
|
|
func TestFile(filename string) string {
|
|
return filepath.Join(os.Getenv("GOPATH"), "src", "github.com", "v2ray", "v2ray-core", "testing", "scenarios", "data", filename)
|
|
}
|
|
|
|
func InitializeServerSetOnce(testcase string) error {
|
|
err := InitializeServer(TestFile(testcase + "_server.json"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = InitializeServer(TestFile(testcase + "_client.json"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func InitializeServer(configFile string) error {
|
|
config, err := pointjson.LoadConfig(configFile)
|
|
if err != nil {
|
|
log.Error("Failed to read config file (%s): %v", configFile, err)
|
|
return err
|
|
}
|
|
|
|
vPoint, err := point.NewPoint(config)
|
|
if err != nil {
|
|
log.Error("Failed to create Point server: %v", err)
|
|
return err
|
|
}
|
|
|
|
err = vPoint.Start()
|
|
if err != nil {
|
|
log.Error("Error starting Point server: %v", err)
|
|
return err
|
|
}
|
|
runningServers = append(runningServers, vPoint)
|
|
|
|
return nil
|
|
}
|
|
|
|
func CloseAllServers() {
|
|
for _, server := range runningServers {
|
|
server.Close()
|
|
}
|
|
runningServers = make([]*point.Point, 0, 10)
|
|
}
|