以编程方式从“go test”创建 JUnit XML 报告输出

发布于 2025-01-18 20:36:12 字数 771 浏览 0 评论 0原文

我以编程方式调用 go test 来运行测试。

func executeAllTests(c *gin.Context) {
    // Enable verbose
    flag.Set("test.v", "true")
    id := "myUniqueId"

    // Asynchronously run the tests.
    go runTestsAndWriteReport(id)

    // Return
    c.JSON(200, id)
}

func runTestsAndWriteReport(fileName string) {
    testing.Main(
        nil,
        []testing.InternalTest{
            {"TestX", myTestPkg.TestX},
            {"TestY", myTestPkg.TestY}
        },
        nil, nil,
    )

    // TODO: write output as JUnit XML to file "fileName"
}

我想将 JUnit XML 形式的测试输出写入文件。有一些框架,例如 gotestsum 可以从命令行执行此操作,但是,我想如上所示以编程方式执行此操作。

关于如何做到这一点有什么建议吗?

I am programmatically calling go test to run tests.

func executeAllTests(c *gin.Context) {
    // Enable verbose
    flag.Set("test.v", "true")
    id := "myUniqueId"

    // Asynchronously run the tests.
    go runTestsAndWriteReport(id)

    // Return
    c.JSON(200, id)
}

func runTestsAndWriteReport(fileName string) {
    testing.Main(
        nil,
        []testing.InternalTest{
            {"TestX", myTestPkg.TestX},
            {"TestY", myTestPkg.TestY}
        },
        nil, nil,
    )

    // TODO: write output as JUnit XML to file "fileName"
}

I would like to write the test output in JUnit XML form to a file. There are frameworks, for example, gotestsum that can do this from the command line, however, I want to do it programmatically as shown above.

Any suggestion on how this can be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文