Xcodebuild稳定性测试go脚本
[本文出自天外归云的博客园]
简单封装下xcodebuild test命令,写一个执行xcode测试的go程序,可以设定单case执行次数,也可以二次组装调用进行多个case的测试,代码如下:
package main import ( "flag" "fmt" "os/exec" "strings" ) func qnegTestRunner(workspacePath string, scheme string, targetMethod string) (testResult int) { targets := strings.Split(targetMethod, "/") className := targets[1] methodName := targets[2] var err error var cmd *exec.Cmd var result []byte commandString := fmt.Sprintf("xcodebuild test -workspace %s -scheme %s -destination ‘platform=iOS Simulator,name=iPhone 7,OS=12.2‘ -only-testing:%s", workspacePath, scheme, targetMethod) cmd = exec.Command("/bin/bash", "-c", commandString) result, err = cmd.Output() passedSign := fmt.Sprintf("‘-[%s %s]‘ passed", className, methodName) if strings.Contains(string(result), passedSign) { testResult = 1 } else { fmt.Println(commandString) fmt.Println(strings.Trim(string(result), "\n")) fmt.Println(err) testResult = 0 } return } /* 终端执行该脚本命令如下: go run exeTest.go -exeCount 3 -projectPath "/Users/admin/Desktop/zenki/XX" -scheme "Scheme" -targetMethod "Scheme/ClassName/methodName" */ func main() { var targetMethod = flag.String("targetMethod", "", "目标方法") var exeCount = flag.Int("exeCount", 3, "运行次数") var projectPath = flag.String("projectPath", "/Users/admin/Desktop/zenki/XX", "项目路径") var scheme = flag.String("scheme", "", "选择主题") flag.Parse() workspacePath := fmt.Sprintf("%s%s", *projectPath, "/XX.xcworkspace") finalResult := 0 for index := 1; index <= *exeCount; index++ { fmt.Println(fmt.Printf("[%d time execute] %s", index, *targetMethod)) finalResult += qnegTestRunner(workspacePath, *scheme, *targetMethod) } if finalResult == *exeCount { fmt.Println(fmt.Sprintf("Execute %d times, all passed.", *exeCount)) } else { fmt.Println(fmt.Sprintf("Execute %d times, %d times passed.", *exeCount, finalResult)) } }
相关推荐
TuxedoLinux 2020-09-11
maxelliot 2020-06-28
chichichi0 2020-06-10
today0 2020-06-08
higheels 2020-06-03
ITstudied 2020-05-12
xiechao000 2020-05-03
测试自动化顾问 2020-05-01
goodby 2020-04-30
today0 2020-04-22
jszy 2020-04-20
lucialee 2020-02-23
luanyu 2020-02-18
goodby 2020-01-05
mohanzb 2019-12-21
jszy 2019-12-14