mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
670 B
34 lines
670 B
//go:build !coverage |
|
// +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()) |
|
cmd.Stdout = os.Stdout |
|
cmd.Stderr = os.Stderr |
|
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 |
|
}
|
|
|