2020-11-25 13:01:53 +02:00
|
|
|
// +build !coverage
|
|
|
|
|
|
|
|
package scenarios
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
|
|
|
func BuildXray() error {
|
|
|
|
genTestBinaryPath()
|
|
|
|
if _, err := os.Stat(testBinaryPath); err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("Building Xray into path (%s)\n", testBinaryPath)
|
|
|
|
cmd := exec.Command("go", "build", "-o="+testBinaryPath, GetSourcePath())
|
2021-01-30 15:01:20 +02:00
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
2020-11-25 13:01:53 +02:00
|
|
|
return cmd.Run()
|
|
|
|
}
|
|
|
|
|
|
|
|
func RunXrayProtobuf(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
|
|
|
|
}
|