目录
- 为什么要测试
- 测试代码书写格式
- 测试方式分为三种
3.1. 单元测试
3.2. 性能(压力)测试
3.3. 覆盖率测试 - 一个开箱即用的测试项目
1. 为什么要测试
为什么要进行测试其实就不用多讲了,安全、质量管控等等,算是提交前的最后一道检查吧
2. 测试代码书写格式
首先来讲讲写测试的语法格式
- go文件必须以
_test.go结尾
, - import
倒入testing包
- 需要测试的函数要已
Test或Benchmark开头
- 单元测试则以
(t *testing.T)
为参数,性能测试以(t *testing.B)
为参数 - 还有很多的
方法可以调用
// 书写格式第5条中可以调用(t *testing.T)的方法
type TB interface {
// 输出错误日志
Error(args ...interface{})
Errorf(format string, args ...interface{})
Fail()
FailNow()
Failed() bool
// 致命错误,测试程序退出
Fatal(args ...interface{})
Fatalf(format string, args ...interface{})
// 输出正常日志
Log(args ...interface{})
Logf(format string, args ...interface{})
Name() string
// 跳出单元测试程序,Test ignored
Skip(args ...interface{})
SkipNow()
Skipf(format string, args ...interface{})
Skipped() bool
}
3. 测试方式分为三种
已经准备好对代码进行测试,那么执行的方法分为这几类
- 单元测试
- 性能(压力)测试
- 覆盖率测试
3.1 单元测试
// 声明一个名为TestX的函数
func TestX(t *testing.T) {...}
// 执行TestX测试程序
// -run 需要测试的函数名,注意和性能测试的文件名区分
// -v 输出测试过程信息
// -count 执行次数
go test -run TestX -v -count 1
// 执行所有单元测试
// -count 执行次数
go test -v -count 1
执行后得到下面信息(样例数据)
=== RUN TestHello
--- PASS: TestHello (0.00s)
hello_test.go:8: hello world
PASS
ok test-a 0.013s
3.2 性能(压力)测试
// 声明一个名为TestX的函数
func BenchmarkX(b *testing.B){...}
// 执行BenchmarkX测试程序
// -run 需要测试的.go文件名,如 main.go则文件名为main
// -bench 需要测试的函数名
// -count 执行次数
go test -run 文件名 -bench=BenchmarkX -count=3
// 运行所有的性能测试函数
// -count 执行次数
go test -test.bench=".*" -count=3
执行后得到下面信息(样例数据)
2000000000 0.38 ns/op
2000000000 0.38 ns/op
2000000000 0.38 ns/op
表示一共执行了2000000000次,共耗时0.38纳秒
3.3 覆盖率测试
这项测试能知道测试程序总共覆盖了多少业务代码,可以的话最好是覆盖100%
先进入需要测试项目的根目录
测试命令比较简单,只需要两条
// 生成cover.out文件,并输出覆盖率
go test -v -coverprofile=cover.out
// 根据cover.out文件生成coverage.html可视化文件
go tool cover -html=cover.out -o coverage.html
执行后得到下面信息(样例数据)
--- PASS
coverage: 50.0% of statements
可视化html
4. 一个开箱即用的测试项目
有疑问加站长微信联系(非本文作者)