1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-08 06:14:23 -04:00
v2fly/testing/scenarios/common_coverage.go

38 lines
918 B
Go
Raw Normal View History

2016-08-08 18:55:36 -04:00
// +build coverage
package scenarios
import (
2017-03-31 11:12:33 -04:00
"bytes"
2016-08-08 18:55:36 -04:00
"os"
"os/exec"
2016-08-08 19:16:29 -04:00
"path/filepath"
2016-08-09 16:13:16 -04:00
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/uuid"
2016-08-08 18:55:36 -04:00
)
func BuildV2Ray() error {
2017-03-31 11:12:33 -04:00
genTestBinaryPath()
2016-11-17 18:01:37 -05:00
if _, err := os.Stat(testBinaryPath); err == nil {
2016-08-08 18:55:36 -04:00
return nil
}
2018-02-20 17:03:29 -05:00
cmd := exec.Command("go", "test", "-tags", "coverage coveragemain", "-coverpkg", "v2ray.com/core/...", "-c", "-o", testBinaryPath, GetSourcePath())
2016-08-08 18:55:36 -04:00
return cmd.Run()
}
2016-12-16 15:39:00 -05:00
func RunV2RayProtobuf(config []byte) *exec.Cmd {
2017-03-31 11:12:33 -04:00
genTestBinaryPath()
2016-12-16 15:39:00 -05:00
covDir := filepath.Join(os.Getenv("GOPATH"), "out", "v2ray", "cov")
os.MkdirAll(covDir, os.ModeDir)
2018-02-16 09:29:22 -05:00
randomID := uuid.New()
profile := randomID.String() + ".out"
2016-12-16 15:39:00 -05:00
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
}