1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 11:35:23 +00:00
v2fly/testing/scenarios/server_env_regular.go

41 lines
812 B
Go
Raw Normal View History

2016-08-08 22:55:36 +00:00
// +build !coverage
package scenarios
import (
2016-12-16 20:39:00 +00:00
"bytes"
2016-11-17 23:01:37 +00:00
"fmt"
2016-08-08 22:55:36 +00:00
"os"
"os/exec"
)
func BuildV2Ray() error {
2016-11-17 23:01:37 +00:00
GenTestBinaryPath()
if _, err := os.Stat(testBinaryPath); err == nil {
2016-08-08 22:55:36 +00:00
return nil
}
2016-11-21 23:19:51 +00:00
fmt.Printf("Building V2Ray into path (%s)\n", testBinaryPath)
2016-11-17 23:01:37 +00:00
cmd := exec.Command("go", "build", "-tags=json", "-o="+testBinaryPath, GetSourcePath())
2016-08-08 22:55:36 +00:00
return cmd.Run()
}
func RunV2Ray(configFile string) *exec.Cmd {
2016-11-17 23:01:37 +00:00
GenTestBinaryPath()
proc := exec.Command(testBinaryPath, "-config", configFile)
2016-08-08 22:55:36 +00:00
proc.Stderr = os.Stderr
proc.Stdout = os.Stdout
return proc
}
2016-12-16 20:39:00 +00:00
func RunV2RayProtobuf(config []byte) *exec.Cmd {
GenTestBinaryPath()
proc := exec.Command(testBinaryPath, "-config=stdin:", "-format=pb")
proc.Stdin = bytes.NewBuffer(config)
proc.Stderr = os.Stderr
proc.Stdout = os.Stdout
return proc
}