2020-11-25 13:01:53 +02:00
|
|
|
// +build coverage
|
|
|
|
|
|
|
|
package scenarios
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/uuid"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func BuildXray() error {
|
|
|
|
genTestBinaryPath()
|
|
|
|
if _, err := os.Stat(testBinaryPath); err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
cmd := exec.Command("go", "test", "-tags", "coverage coveragemain", "-coverpkg", "github.com/xtls/xray-core/...", "-c", "-o", testBinaryPath, GetSourcePath())
|
2020-11-25 13:01:53 +02:00
|
|
|
return cmd.Run()
|
|
|
|
}
|
|
|
|
|
|
|
|
func RunXrayProtobuf(config []byte) *exec.Cmd {
|
|
|
|
genTestBinaryPath()
|
|
|
|
|
|
|
|
covDir := os.Getenv("XRAY_COV")
|
|
|
|
os.MkdirAll(covDir, os.ModeDir)
|
|
|
|
randomID := uuid.New()
|
|
|
|
profile := randomID.String() + ".out"
|
|
|
|
proc := exec.Command(testBinaryPath, "-config=stdin:", "-format=pb", "-test.run", "TestRunMainForCoverage", "-test.coverprofile", profile, "-test.outputdir", covDir)
|
|
|
|
proc.Stdin = bytes.NewBuffer(config)
|
|
|
|
proc.Stderr = os.Stderr
|
|
|
|
proc.Stdout = os.Stdout
|
|
|
|
|
|
|
|
return proc
|
|
|
|
}
|