Xcodebuild稳定性测试go脚本

时间:2019-10-23
本文章向大家介绍Xcodebuild稳定性测试go脚本,主要包括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))
    }
}

原文地址:https://www.cnblogs.com/LanTianYou/p/11725680.html