go test 命令详解

文章目录

  • 1.简介
  • 2.test flag
  • 3.test/binary flags
  • 4.常用选项
  • 5.示例
  • 参考文献

1.简介

go test 是 Go 用来执行测试函数(test function)、基准函数(benchmark function)和示例函数(example function)的命令。

执行 go test 命令,它会在*_test.go文件中寻找 test、benchmark 和 example 函数来执行。测试函数名必须以 TestXXX 开头,基准函数名必须以 BenchmarkXXX 开头,示例函数必须以 ExampleXXX 开头。

// test 测试函数
func TestXXX(t *testing.T) { ... }// benchmark 基准函数
func BenchmarkXXX(b *testing.B) { ... }// examples 示例函数,其相关命名方式可以查看第一篇文章
func ExamplePrintln() {Println("The output of\nthis example.")// Output: The output of// this example.
}

关于更多测试函数的信息请查看go help testfunc

命令格式如下:

go test [build/test flags] [packages] [build/test flags & test binary flags]

go test 自动测试指定的包。它以以下格式打印测试结果摘要:

ok   archive/tar   0.011s
FAIL archive/zip   0.022s
ok   compress/gzip 0.033s
...

然后是每个失败包的详细输出。

go test 重新编译每个包中后缀为_test.go的文件。这些文件可以包含测试函数、基准函数和示例函数。有关更多信息,请参阅“go help testfunc”。每个列出的包都会导致执行一个单独的测试二进制文件。注意名称以_.开头的文件即使后缀是_test.go将被忽略。

测试文件中如果声明的包后缀为_test将被作为单独的包来编译,然后与主测试二进制文件链接并运行。

go test 命令还会忽略 testdata 目录,该目录用来保存测试需要用到的辅助数据。

go test 有两种运行模式:

(1)本地目录模式,在没有包参数(如 go test 或 go test -v)调用时发生。在此模式下,go test 编译当前目录中找到的包和测试,然后运行测试二进制文件。在这种模式下,caching 是禁用的。在包测试完成后,go test 打印一个概要行,显示测试状态、包名和运行时间。

(2)包列表模式,在使用显示包参数调用 go test 时发生(例如 go test math,go test ./… 甚至是 go test .)。在此模式下,go 测试编译并测试在命令上列出的每个包。如果一个包测试通过,go test 只打印最终的 ok 总结行。如果一个包测试失败,go test 将输出完整的测试输出。如果使用 -bench 或 -v 选项,则 go test 会输出完整的输出,甚至是通过包测试,以显示所请求的基准测试结果或详细日志记录。

注意: 描述软件包列表时,命令使用三个点作为通配符。如测试当前目录及其子目录中的所有软件包。

go test ./...

仅在包列表模式下,go test 会缓存成功的包测试结果,以避免不必要的重复运行测试。当测试结果可以从缓存中恢复时,go tes t将重新显示以前的输出,而不是再次运行测试二进制文件。发生这种情况时,go test 打印 “(cached)” 以代替摘要行中的已用时间。

缓存中匹配的规则是,运行涉及相同的测试二进制文件,命令行上的选项完全来自一组受限的“可缓存”测试选项,定义为 -benchtime、-cpu、-list、-parallel、-run、-short 和 -v。如果运行 go test 时任何测试选项或非测试选项在此集合之外,则不会缓存结果。要禁用缓存,请使用除可缓存选项之外的任何测试选项或参数。明确禁用测试缓存的惯用方法是使用 -count=1。测试在包的根目录(通常为 $GOPATH)打开的文件和依赖的环境变量,只有不发生变化时才能匹配缓存。

被缓存的测试结果将被视为立即执行,因此无论 -timeout 如何设置,成功的包测试结果都将被缓存和重用。

2.test flag

除 build 选项外,go test 本身处理的选项包括:

-argsPass the remainder of the command line (everything after -args)to the test binary, uninterpreted and unchanged.Because this flag consumes the remainder of the command line,the package list (if present) must appear before this flag.-cCompile the test binary to pkg.test but do not run it(where pkg is the last element of the package's import path).The file name can be changed with the -o flag.-exec xprogRun the test binary using xprog. The behavior is the same asin 'go run'. See 'go help run' for details.-iInstall packages that are dependencies of the test.Do not run the test.The -i flag is deprecated. Compiled packages are cached automatically.-jsonConvert test output to JSON suitable for automated processing.See 'go doc test2json' for the encoding details.-o fileCompile the test binary to the named file.The test still runs (unless -c or -i is specified).

有关构建选项的更多信息,请参阅“go help build”。有关指定软件包的更多信息,请参阅“go help packages”。

3.test/binary flags

以下选项同时支持测试二进制文件和 go test 命令。

主要分为两类,一类控制测试行为,一类用于状态分析。

控制测试行为选项:

-bench regexpRun only those benchmarks matching a regular expression.By default, no benchmarks are run.To run all benchmarks, use '-bench .' or '-bench=.'.The regular expression is split by unbracketed slash (/)characters into a sequence of regular expressions, and eachpart of a benchmark's identifier must match the correspondingelement in the sequence, if any. Possible parents of matchesare run with b.N=1 to identify sub-benchmarks. For example,given -bench=X/Y, top-level benchmarks matching X are runwith b.N=1 to find any sub-benchmarks matching Y, which arethen run in full.-benchtime tRun enough iterations of each benchmark to take t, specifiedas a time.Duration (for example, -benchtime 1h30s).The default is 1 second (1s).The special syntax Nx means to run the benchmark N times(for example, -benchtime 100x).-count nRun each test and benchmark n times (default 1).If -cpu is set, run n times for each GOMAXPROCS value.Examples are always run once.-coverEnable coverage analysis.Note that because coverage works by annotating the sourcecode before compilation, compilation and test failures withcoverage enabled may report line numbers that don't correspondto the original sources.-covermode set,count,atomicSet the mode for coverage analysis for the package[s]being tested. The default is "set" unless -race is enabled,in which case it is "atomic".The values:set: bool: does this statement run?count: int: how many times does this statement run?atomic: int: count, but correct in multithreaded tests;significantly more expensive.Sets -cover.-coverpkg pattern1,pattern2,pattern3Apply coverage analysis in each test to packages matching the patterns.The default is for each test to analyze only the package being tested.See 'go help packages' for a description of package patterns.Sets -cover.-cpu 1,2,4Specify a list of GOMAXPROCS values for which the tests orbenchmarks should be executed. The default is the current valueof GOMAXPROCS.-failfastDo not start new tests after the first test failure.-list regexpList tests, benchmarks, or examples matching the regular expression.No tests, benchmarks or examples will be run. This will onlylist top-level tests. No subtest or subbenchmarks will be shown.-parallel nAllow parallel execution of test functions that call t.Parallel.The value of this flag is the maximum number of tests to runsimultaneously; by default, it is set to the value of GOMAXPROCS.Note that -parallel only applies within a single test binary.The 'go test' command may run tests for different packagesin parallel as well, according to the setting of the -p flag(see 'go help build').-run regexpRun only those tests and examples matching the regular expression.For tests, the regular expression is split by unbracketed slash (/)characters into a sequence of regular expressions, and each partof a test's identifier must match the corresponding element inthe sequence, if any. Note that possible parents of matches arerun too, so that -run=X/Y matches and runs and reports the resultof all tests matching X, even those without sub-tests matching Y,because it must run them to look for those sub-tests.-shortTell long-running tests to shorten their run time.It is off by default but set during all.bash so that installingthe Go tree can run a sanity check but not spend time runningexhaustive tests.-shuffle off,on,NRandomize the execution order of tests and benchmarks.It is off by default. If -shuffle is set to on, then it will seedthe randomizer using the system clock. If -shuffle is set to aninteger N, then N will be used as the seed value. In both cases,the seed will be reported for reproducibility.-timeout dIf a test binary runs longer than duration d, panic.If d is 0, the timeout is disabled.The default is 10 minutes (10m).-vVerbose output: log all tests as they are run. Also print alltext from Log and Logf calls even if the test succeeds.-vet listConfigure the invocation of "go vet" during "go test"to use the comma-separated list of vet checks.If list is empty, "go test" runs "go vet" with a curated list ofchecks believed to be always worth addressing.If list is "off", "go test" does not run "go vet" at all.

状态分析选项:

-benchmemPrint memory allocation statistics for benchmarks.-blockprofile block.outWrite a goroutine blocking profile to the specified filewhen all tests are complete.Writes test binary as -c would.-blockprofilerate nControl the detail provided in goroutine blocking profiles bycalling runtime.SetBlockProfileRate with n.See 'go doc runtime.SetBlockProfileRate'.The profiler aims to sample, on average, one blocking event everyn nanoseconds the program spends blocked. By default,if -test.blockprofile is set without this flag, all blocking eventsare recorded, equivalent to -test.blockprofilerate=1.-coverprofile cover.outWrite a coverage profile to the file after all tests have passed.Sets -cover.-cpuprofile cpu.outWrite a CPU profile to the specified file before exiting.Writes test binary as -c would.-memprofile mem.outWrite an allocation profile to the file after all tests have passed.Writes test binary as -c would.-memprofilerate nEnable more precise (and expensive) memory allocation profiles bysetting runtime.MemProfileRate. See 'go doc runtime.MemProfileRate'.To profile all memory allocations, use -test.memprofilerate=1.-mutexprofile mutex.outWrite a mutex contention profile to the specified filewhen all tests are complete.Writes test binary as -c would.-mutexprofilefraction nSample 1 in n stack traces of goroutines holding acontended mutex.-outputdir directoryPlace output files from profiling in the specified directory,by default the directory in which "go test" is running.-trace trace.outWrite an execution trace to the specified file before exiting.

4.常用选项

-bench regexp只执行匹配对应正则表达式的 benchmark 函数,如执行所有性能测试 "-bench ." 或 "-bench=."
-benchtime t对每个 benchmark 函数运行指定时间。如 -benchtime 1h30,默认值为 1s。特殊语法 Nx 表示运行基准测试 N 次(如 -benchtime 100x)
-run regexp只运行匹配对应正则表达式的 test 和 example 函数,例如 "-run Array" 那么就执行函数名包含 Array 的单测函数
-cover开启测试覆盖率
-v显示测试的详细命令

5.示例

假设在文件 add.go 有一个被测试函数

package hellofunc Add(a, b int) int {return a + b
}
  • 测试函数(test function)

在测试文件 add_test.go 添加一个单元测试函数 TestAdd:

package hellofunc TestAdd(t *testing.T) {sum := Add(5, 5)if sum == 10 {t.Log("the result is ok")} else {t.Fatal("the result is wrong")}
}

比如使用 -run 来运行指定单元测试函数,发现只运行了 TestAdd 测试函数。

go test -v -run TestAdd main/hello
=== RUN   TestAddadd_test.go:16: the result is ok
--- PASS: TestAdd (0.00s)
PASS
ok      main/hello      0.170s
  • 基准函数(benchmark function)

添加一个性能测试函数 BenchmarkAdd:

package hellofunc BenchmarkAdd(b *testing.B) {for n := 0; n < b.N; n++ {Add(1, 2)}
}

运行指定基准函数:

go test -bench BenchmarkAdd main/hello
goos: windows
goarch: amd64
pkg: main/contain
cpu: Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz
BenchmarkAdd-8          1000000000               0.2333 ns/op
PASS
ok      main/contain    0.586s
  • 示例函数(example function)
package hellofunc ExampleAdd() {fmt.Println(Add(1, 2))// Output: 3
}

运行指定示例函数:

go test -v -run ExampleAdd main/contain
=== RUN   ExampleAdd
--- PASS: ExampleAdd (0.00s)
PASS
ok      main/contain    (cached)

注意: 示例函数类似于测试函数,但不是使用 *testing.T 来报告成功或失败,而是将输出打印到 os.Stdout。如果示例函数中的最后一条注释以“Output:”开头,则将输出与注释进行精确比较(参见上面的示例)。如果最后一条注释以“Unordered output:”开头,则将输出与注释进行比较,但忽略行的顺序。编译了一个没有此类注释的示例函数,会被编译但不会被执行。如果在“Output:”之后没有文本,示例函数仍会被编译并执行,并且预期不会产生任何输出。

  • 获取每个函数的单测覆盖率。

如果您想查找没有被测试覆盖的函数,可以使用 -coverprofile 选项将覆盖率报告输出到文件中。

go test -coverprofile cover.out ./...

然后使用内置的 go tool cover 命令来查看单测覆盖率报告。

go tool cover -func cover.out

上面使用 -func 选项可以输出每个函数的单测覆盖率概要信息。

github.com/dablelv/cyan/cmp/cmp.go:21:                  Cmp                             100.0%
github.com/dablelv/cyan/cmp/cmp.go:35:                  Compare                         95.5%
github.com/dablelv/cyan/cmp/cmp.go:85:                  CompareLT                       0.0%
...
  • 查看具体代码行的覆盖情况。

如果想查看代码行的单测覆盖情况,可以使用内置的 go tool cover 命令将覆盖率报告转换为 HTML 文件。然后通过浏览器打开查看。

go tool cover -html=coverage.out -o coverage.html

参考文献

Command Documentation
go command documentation

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/144963.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

如何设计开发一对一交友App吸引更多活跃用户

在当今社交媒体时代&#xff0c;一对一交友App开发正日渐成为发展热点。如何吸引更多活跃用户成为开发者们的首要任务。通过本文&#xff0c;我们将探讨一系列方法&#xff0c;助您设计开发一对一交友App&#xff0c;吸引更多用户的关注和参与&#xff0c;提升App的活跃度。 了…

elementplus DateTimePicker 日期范围选择器 设置默认时间范围为当前月的起始时间到结束时间

代码如下&#xff1a; <el-date-pickerv-model"value"type"datetimerange"start-placeholder"Start Date"end-placeholder"End Date":default-time"defaultTime" />const defaultTime: [Date, Date] [new Date(2000…

小米手环8pro重新和手机配对解决办法

如果更换了手机&#xff0c;那么小米手环8pro是无法和新手机自动连接的。 但是在新手机上直接连接又连接不上&#xff0c;搜索蓝牙根本找不到手环的蓝牙。 解决办法就是&#xff1a; 把手环恢复出厂&#xff01;&#xff01;&#xff01;&#xff01;&#xff01; 是的&…

服务器数据恢复—服务器raid5离线磁盘上线同步失败的数据恢复案例

服务器数据恢复环境&故障&#xff1a; 某品牌DL380服务器中有一组由三块SAS硬盘组建的RAID5阵列。数据库存放在D分区&#xff0c;数据库备份存放在E分区。 服务器上有一块硬盘的状态灯显示红色&#xff0c;D分区无法识别&#xff0c;E分区可识别&#xff0c;但是拷贝文件报…

MATLAB算法实战应用案例精讲-【人工智能】ROS机器人(最终篇)

目录 传统六轴机器人的基本构成及特点 传统关节机器人基本构成 六轴串联机器人“轴”作用 六轴串联机器人优劣势

Node.js详解

一、是什么 Node.js 是一个开源与跨平台的 JavaScript 运行时环境 在浏览器外运行 V8 JavaScript 引擎&#xff08;Google Chrome 的内核&#xff09;&#xff0c;利用事件驱动、非阻塞和异步输入输出模型等技术提高性能 可以理解为 Node.js 就是一个服务器端的、非阻塞式I/…

【XTDrone Ubuntu20.04】XTDrone+ Ubuntu20.04 + PX4安装

XTDrone仿真平台配置 文章目录 XTDrone仿真平台配置依赖安装 ROS一键安装Marvos安装PX4 安装安装QTGroundControlXTDrone下载安装 环境&#xff1a; VMWare 16.0 Ubuntu 22.04 &#xff08;因为没人配过&#xff09;Ubuntu 20.04 参考文章&#xff1a; 仿真平台基础配置 (yuq…

Qt QWebSocket实现JS调用C++

目录 前言1、QWebChannel如何与网页通信2、QWebSocketQWebChannel与网页通信2.1 WebSocketTransport2.2 WebSocketClientWrapper2.3 初始化WebSocket服务器2.4 前端网页代码修改 总结 前言 本篇主要介绍实现JS调用C的另一种方式&#xff0c;即QWebSocketQWebChannel。与之前的…

RabbitMQ之消息应答和持久化

文章目录 前言一、消息应答1.概念2.自动应答3.消息应答方法4.Multiple 的解释5.消息自动重新入队6.消息手动应答代码7.手动应答效果演示 二、RabbitMQ持久化1.概念2.队列如何实现持久化3.消息实现持久化4.不公平分发5.预取值 总结 前言 在RabbitMQ中&#xff0c;我们的消费者在…

基于pytest-bdd的项目目录结构和命名规范

pytest-bdd 的文件的命名规范 pytest-bdd 是基于pytest 之上&#xff0c;所以需要遵循pytest 的命名规则才能进行测试&#xff0c;具体有&#xff1a; 测试文件名必须以*test.py或者test*.py命名测试函数必须以 test_开头 在pytest-bdd中存在两类文件&#xff1a; 以 .feat…

SQL题

[极客大挑战 2019]EasySQL 进行简单的尝试&#xff0c;就知道是单引号的字符型注入 万能密码进行一个简单的尝试 结果就出来了 还是要了解一下原理 输入的是1&#xff0c;形成的sql语句是错误的SELECT*FROM table_name WHERE username1and password123; 第一个单引号和第二个…

01Urllib

1.什么是互联网爬虫&#xff1f; 如果我们把互联网比作一张大的蜘蛛网&#xff0c;那一台计算机上的数据便是蜘蛛网上的一个猎物&#xff0c;而爬虫程序就是一只小蜘蛛&#xff0c;沿着蜘蛛网抓取自己想要的数据 解释1&#xff1a;通过一个程序&#xff0c;根据Url(http://www.…

Flutter应用-使用sqflite升级数据库

文章目录 问题描述具体做法代码示例更多条件限制升级 数据库迁移和备份简介数据库迁移数据库备份 问题描述 使用fluttter开发的应用程序发布后&#xff0c;发现数据库有些设计不合理。如何来更新数据库呢&#xff1f; 使用sqflite来处理数据库&#xff0c;但是第一版软件发布后…

JQuery ajax 提交数据提示:Uncaught TypeError:Illegal invocation

JQuery ajax 提交数据提示&#xff1a;Uncaught TypeError:Illegal invocation 1 问题描述 用jQuery Ajax向DRF接口提交数据的时候&#xff0c;console提示&#xff1a;Uncaught TypeError:Illegal invocation(未捕获的异常&#xff1a;非法调用)。 这个问题可能有两种原因导…

Zookeeper学习笔记(1)—— 基础知识

Zookeeper概述 Zookeeper 是一个开源的分布式的&#xff0c;为分布式框架提供协调服务的 Apache 项目 工作机制 Zookeeper从设计模式角度来理解&#xff1a;是一个基于观察者模式设计的分布式服务管理框架&#xff0c;它负责存储和管理大家都关心的数据&#xff0c;然后接受…

LeetCode700. Search in a Binary Search Tree

文章目录 一、题目二、题解 一、题目 You are given the root of a binary search tree (BST) and an integer val. Find the node in the BST that the node’s value equals val and return the subtree rooted with that node. If such a node does not exist, return nul…

ClickHouse UDF 运行速度慢问题

一、环境版本 环境版本docker clickhouse22.3.10.22 二、UDF运行速度时快时慢 udf配置文件xxx_function.xml type- 可执行类型。如果type设置为executable则启动单个命令。如果设置为&#xff0c;executable_pool则创建命令池。 pool_size- 命令池的大小。可选参数&#xff…

【AI视野·今日Robot 机器人论文速览 第六十三期】Thu, 26 Oct 2023

AI视野今日CS.Robotics 机器人学论文速览 Fri, 27 Oct 2023 Totally 27 papers &#x1f449;上期速览✈更多精彩请移步主页 Daily Robotics Papers 6-DoF Stability Field via Diffusion Models Authors Takuma Yoneda, Tianchong Jiang, Gregory Shakhnarovich, Matthew R. …

微软Surface/Surface pro笔记本电脑进入bios界面

微软Surface笔记本电脑进入bios界面 方法一推薦這種方法&#xff1a;Surface laptop 进BIOS步骤 开机后&#xff0c;不停按音量键进bios界面。 方法二&#xff1a;Surface Book、Surface Pro进bios步骤 1、关闭Surface&#xff0c;然后等待大约10秒钟以确保其处于关闭状态。…

SQL中的数据类型和规范化,助力数据存储优化

大家好&#xff0c;目前优化数据存储对于获得良好的性能始终至关重要&#xff0c;选择合适的数据类型并应用正确的规范化过程对于决定其性能至关重要。本文将介绍最重要和最常用的数据类型和规范化过程。 一、SQL中的数据类型 SQL中主要有两种数据类型&#xff1a;字符串和数…