Xcodebuild稳定性测试go脚本

Posted lantianyou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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), "
"))
        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))
    }
}

 

以上是关于Xcodebuild稳定性测试go脚本的主要内容,如果未能解决你的问题,请参考以下文章

重试失败的 xcodebuild 测试

在构建脚本中使用 xctool 和 xcodebuild 进行代码签名后,ITC 上的代码签名权利无效

使用 XCodebuild 和 shell 脚本导出 IPA

npm : 无法加载文件 D:softcodeProcess ode ode_global pm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.micr +(代码片段

;~ 小部分AutoHotkey源代码片段测试模板2019年10月9日.ahk

带有参数的 xcode 命令行测试在启动时传递