1. Go语言单元测试

1.1. 概述

Go语言中的测试依赖go test命令,在Goland这种IDE中有着更方便的鼠标操作,但是Go的命令行单元测试指令 go test 必须要掌握。
go test命令是一个按照一定约定和组织的测试代码的驱动程序。在包目录内,所有以 _test.go 为后缀名的源代码文件都是go test测试的一部分,不会被go build编译到最终的可执行文件中。在 *_test.go 文件中有三种类型的函数,单元测试函数、基准测试函数和示例函数。

类型 格式 作用
测试函数 函数名前缀为Test 根据输入对比实际结果和预期结果来判断代码的逻辑行为是否正确
基准函数 函数名前缀为Benchmark 测试函数的性能,包括CPU和内存使用情况,调优必用
示例函数 函数名前缀为Example 为文档提供示例文档

go test命令会遍历所有的*_test.go文件中符合上述命名规则的函数,然后生成一个临时的main包用于调用相应的测试函数,然后构建并运行、报告测试结果,最后清理测试中生成的临时文件。

1.2. 常用命令


2. 测试函数

测试函数根据输入对比实际结果和预期结果来判断代码的逻辑行为是否正确,重点是在于测试逻辑的正确性,即指定输入内容后,判断输出内容和预期内容的相符度!

2.1. 常用方法

  1. 1. 测试函数
  2. Syntax: func TestXxx(t *testing.T) { }
  3. Man: 其中 Xxx 可以是任何字母数字字符串(但第一个字母不能是 [a-z])
  4. 2. 测试类型 T
  5. Syntax: type T struct { }
  6. Man: T 是传递给测试函数的一种类型,它用于管理测试状态并支持格式化测试日志。
  7. 测试日志会在执行测试的过程中不断累积, 并在测试完成时转储至标准输出。
  8. 当一个测试的测试函数返回时,又或者当一个测试函数调用FailNow,Fatal,Fatalf,SkipNow,Skip,
  9. Skipf 中的任意一个时,该测试即宣告结束。
  10. 3. Log()
  11. Syntax: func (c *T) Log(args ...interface{})
  12. Man: Log 使用与 Println 相同的格式化语法对它的参数进行格式化,然后将格式化后的文本记录到错误日志里面:
  13. 1)对于测试来说,格式化文本只会在测试失败或者设置了 -test.v 标志的情况下被打印出来;
  14. 2)对于基准测试来说,为了避免 -test.v 标志的值对测试的性能产生影响, 格式化文本总会被打印出来。
  15. 4. Logf()
  16. Syntax: func (c *T) Logf(format string, args ...interface{})
  17. Man: 格式化的输出日志
  18. 5. Fail()
  19. Syntax: func (c *T) Fail()
  20. Man: 将当前测试标识为失败,但是仍继续执行该测试
  21. 6. FailNow()
  22. Syntax: func (c *T) FailNow()
  23. Man: 将当前测试标识为失败并停止执行该测试,在此之后,测试过程将在下一个测试或者下一个基准测试中继续。
  24. 7. Fatal()
  25. Syntax: func (c *T) Fatal(args ...interface{})
  26. Man: 调用 Fatal 相当于在调用 Log 之后调用 FailNow
  27. 8. Fatalf()
  28. Syntax: func (c *T) Fatalf(format string, args ...interface{})
  29. Man: 调用 Fatalf 相当于在调用 Logf 之后调用 FailNow
  30. 9. Error()
  31. Syntax: func (c *T) Error(args ...interface{})
  32. Man: 调用 Error 相当于在调用 Log 之后调用 Fail
  33. 10. Errorf()
  34. Syntax: func (c *T) Errorf(format string, args ...interface{})
  35. Man: 调用 Errorf 相当于在调用 Logf 之后调用 Fail
  36. 11. Run()
  37. Syntax: func (t *T) Run(name string, f func(t *T)) bool
  38. Man: 执行名字为 name 的子测试 f ,并报告 f 在执行过程中是否出现了任何失败。
  39. Run 将一直阻塞直到 f 的所有并行测试执行完毕。
  40. 12. SkipNow()
  41. Syntax: func (c *T) SkipNow()
  42. Man: 将当前测试标识为“被跳过”并停止执行该测试。
  43. 如果一个测试在失败(参考ErrorErrorfFail)之后被跳过了,那么它还是会被判断为是“失败的”。
  44. 在停止当前测试之后,测试过程将在下一个测试或者下一个基准测试中继续
  45. 13. Skip()
  46. Syntax: func (c *T) Skip(args ...interface{})
  47. Man: 调用 Skip 相当于在调用 Log 之后调用 SkipNow
  48. 14. Skipf()
  49. Syntax: func (c *T) Skipf(format string, args ...interface{})
  50. Man: 调用 Skipf 相当于在调用 Logf 之后调用 SkipNow

2.2. 测试函数案例

  1. // 待测试函数
  2. package split
  3. import "strings"
  4. func Split(s string, sep string) []string {
  5. var res []string
  6. n := strings.Index(s, sep)
  7. for n > -1 {
  8. res = append(res, s[0:n])
  9. s = s[n+1:]
  10. n = strings.Index(s, sep)
  11. }
  12. res=append(res, s)
  13. return res
  14. }

2.2.1. 基础案例1

当前案例中,被测试函数和测试用例不再一个包中,此时需要而外引入被测试函数所在的包。

  1. package testing
  2. import (
  3. "learn/tests/utils/split"
  4. "reflect"
  5. "testing"
  6. )
  7. func TestSplit(t *testing.T) {
  8. wanted := []string{"a", "b", "c"} // 预期结果
  9. goted := split.Split("a:b:c", ":") // 实际结果
  10. if !reflect.DeepEqual(wanted, goted) { // 对比结果是否一致,slice 不能直接比较
  11. t.Fatalf("wanted:%v;goted:%v\n", wanted, goted)
  12. return
  13. }
  14. }
  1. [root@heyingsheng testing]# go test split_test.go
  2. ok command-line-arguments 0.004s

2.2.2. 基础案例2

下面的测试用例提示失败,原因在于被测试函数中,使用的索引是 +1,而中文单个字符长度为3。将测试函数的line11改为 s = s[n+len(sep):] 即可

  1. package split
  2. import (
  3. "reflect"
  4. "testing"
  5. )
  6. func TestSplit(t *testing.T) {
  7. got := Split("上海自来水来自海上","来")
  8. want := []string{"上海自","水","自海上"}
  9. if !reflect.DeepEqual(want, got) { // 对比结果是否一致,slice 不能直接比较
  10. t.Fatalf("wanted:%v;goted:%v\n", want, got)
  11. return
  12. }
  13. }
  1. [root@heyingsheng split]# go test
  2. --- FAIL: TestSplit (0.00s)
  3. split_test.go:21: wanted:[上海自 自海上];goted:[上海自 ��水 ��自海上]
  4. FAIL
  5. exit status 1
  6. FAIL learn/tests/utils/split 0.008s

2.2.3. 测试组

一个待测试函数可能会有很多个测试用例,如果分成多个函数去写,会及其麻烦,一般考虑使用切片或者数组的方式结合for循环来实现:

  1. package split
  2. import (
  3. "reflect"
  4. "testing"
  5. )
  6. func TestSplit(t *testing.T) {
  7. type splitCase struct {
  8. input string
  9. sep string
  10. wanted []string
  11. }
  12. var splitCases = []splitCase{
  13. {input:"a:b:c:d",sep:":",wanted:[]string{"a","b","c","d"}},
  14. {input:"abbcbbd",sep:"bb",wanted:[]string{"a","c","d"}},
  15. {input:"上海自来水来自海上",sep:"上海",wanted:[]string{"自来水来自海上"}},
  16. }
  17. for _, c := range splitCases {
  18. if got := Split(c.input, c.sep); !reflect.DeepEqual(c.wanted, got) {
  19. t.Errorf("wanted:%#v;goted:%#v\n", c.wanted, got)
  20. }
  21. }
  22. }
  1. [root@heyingsheng split]# go test -v
  2. === RUN TestSplit
  3. --- FAIL: TestSplit (0.00s)
  4. split_test.go:21: wanted:[]string{"自来水来自海上"};goted:[]string{"", "自来水来自海上"}
  5. FAIL
  6. exit status 1
  7. FAIL learn/tests/utils/split 0.005s

2.2.4. 子测试

上述案例中,使用 go test -v 无法查看到具体某个测试的执行的情况,当然你可以使用map配合更加详细的打印方式来弥补。Go中提供的子测试可以更好的实现这种效果,代码如下:

  1. package split
  2. import (
  3. "reflect"
  4. "testing"
  5. )
  6. func TestSplit(t *testing.T) {
  7. type splitCase struct {
  8. input string
  9. sep string
  10. wanted []string
  11. }
  12. splitCases := map[string]splitCase{
  13. "EasyABCTest": {input: "a:b:c:d", sep: ":", wanted: []string{"a", "b", "c", "d"}},
  14. "ABCTest": {input: "abbcbbd", sep: "bb", wanted: []string{"a", "c", "d"}},
  15. "Chinesetest": {input: "上海自来水来自海上", sep: "上海", wanted: []string{"自来水来自海上"}},
  16. }
  17. for name, c := range splitCases {
  18. t.Run(name, func(t *testing.T) {
  19. if got := Split(c.input, c.sep); !reflect.DeepEqual(c.wanted, got) {
  20. t.Errorf("wanted:%#v;goted:%#v\n", c.wanted, got)
  21. }
  22. })
  23. }
  24. }
  1. [root@heyingsheng split]# go test -v
  2. === RUN TestSplit
  3. === RUN TestSplit/EasyABCTest
  4. === RUN TestSplit/ABCTest
  5. === RUN TestSplit/Chinesetest
  6. --- FAIL: TestSplit (0.00s)
  7. --- PASS: TestSplit/EasyABCTest (0.00s)
  8. --- PASS: TestSplit/ABCTest (0.00s)
  9. --- FAIL: TestSplit/Chinesetest (0.00s)
  10. split_test.go:40: wanted:[]string{"自来水来自海上"};goted:[]string{"", "自来水来自海上"}
  11. FAIL
  12. exit status 1
  13. FAIL learn/tests/utils/split 0.006s

2.3. 测试覆盖率

一般来说,被测试的函数、方法的覆盖率应该是100%,代码覆盖率应该在60%以上。代码覆盖率可以使用内置的go命令来输出结果,并优化展示效果!

  1. [root@heyingsheng split]# go test -cover
  2. PASS
  3. coverage: 100.0% of statements
  4. ok learn/tests/utils/split 0.005s
  5. [root@heyingsheng split]# go test -cover -coverprofile=/tmp/c.out
  6. PASS
  7. coverage: 100.0% of statements
  8. ok learn/tests/utils/split 0.013s
  9. [root@heyingsheng split]# go tool cover -html=/tmp/c.out
  10. HTML output written to /tmp/cover193709225/coverage.html

image.png


3. 基准测试

基准测试就是性能测试,通过测试一段代码的执行时间、CPU和内存使用情况来判断代码是否需优化,以及如何优化!Benchmark函数会运行目标代码 b.N 次,在基准执行期间,会调整 b.N 直到基准测试函数持续足够长的时间。

3.1. 常用方法

  1. 1. 基准测试函数格式
  2. Syntax: func BenchmarkXxxx(t *testing.T) { }
  3. Man: 其中 Xxx 可以是任何字母数字字符串(但第一个字母不能是 [a-z])
  4. 2. 结构体
  5. Syntax: type B struct { }
  6. Man: B是传递给基准测试函数的一种类型它用于管理基准测试的计时行为,并指示应该迭代地运行测试多少次。
  7. 3. 常用方法(参考测试函数的方法)
  8. func (c *B) Error(args ...interface{})
  9. func (c *B) Errorf(format string, args ...interface{})
  10. func (c *B) Fail()
  11. func (c *B) FailNow()
  12. func (c *B) Failed() bool
  13. func (c *B) Fatal(args ...interface{})
  14. func (c *B) Fatalf(format string, args ...interface{})
  15. func (c *B) Log(args ...interface{})
  16. func (c *B) Logf(format string, args ...interface{})
  17. func (c *B) Name() string
  18. func (b *B) Run(name string, f func(b *B)) bool
  19. func (c *B) Skip(args ...interface{})
  20. func (c *B) SkipNow()
  21. func (c *B) Skipf(format string, args ...interface{})
  22. func (c *B) Skipped() bool
  23. 4. 特殊方法
  24. (1) ReportAllocs()
  25. Syntax: func (b *B) ReportAllocs()
  26. Man: 打开当前基准测试的内存统计功能,与使用 -test.benchmem 设置类似
  27. ReportAllocs 只影响那些调用了该函数的基准测试
  28. (3) SetBytes()
  29. Syntax: func (b *B) SetBytes(n int64)
  30. Man: 记录在单个操作中处理的字节数量。
  31. 在调用了这个方法之后,基准测试将会报告 ns/op 以及 MB/s
  32. (4) ResetTimer()
  33. Syntax: func (b *B) ResetTimer()
  34. Man: 对已经逝去的基准测试时间以及内存分配计数器进行清零。
  35. 对于正在运行中的计时器,这个方法不会产生任何效果。
  36. (5) StartTimer()
  37. Syntax: func (b *B) StartTimer()
  38. Man: 开始对测试进行计时。
  39. 这个函数在基准测试开始时会自动被调用,它也可以在调用 StopTimer 之后恢复进行计时。
  40. (6) StopTimer()
  41. Syntax: func (b *B) StopTimer()
  42. Man: 停止对测试进行计时。
  43. 当需要执行一些复杂的初始化操作,且不想对这些操作进行测量时, 可以使用这个方法来暂停计时

3.2. 测试函数案例

3.2.1. 基本案例

  1. package split
  2. import (
  3. "reflect"
  4. "testing"
  5. )
  6. func BenchmarkSplit(b *testing.B) {
  7. for i:=0; i<b.N;i++ {
  8. Split("上海自来水来自海上","海")
  9. }
  10. }
  1. [root@heyingsheng split]# go test -bench=Split -benchmem
  2. goos: linux
  3. goarch: amd64
  4. pkg: learn/tests/utils/split
  5. BenchmarkSplit-12 6480142 182 ns/op 112 B/op 3 allocs/op
  6. PASS
  7. ok learn/tests/utils/split 1.377s
  1. 结果分析:
  2. 6480142 执行的次数
  3. 182 ns/op 每次操作耗费的时间为 182 ns
  4. 112 B/op 每次操作需要消耗的内存大小
  5. 3 allocs/op 每次操作需要分配的内存次数

针对以上分析结果,对代码进行优化,将line6改为: var res = make([]string, 0, strings.Count(s, sep)+1) ,性能提升非常明显。

  1. [root@heyingsheng split]# go test -bench=Split -benchmem
  2. goos: linux
  3. goarch: amd64
  4. pkg: learn/tests/utils/split
  5. BenchmarkSplit-12 11175243 104 ns/op 48 B/op 1 allocs/op
  6. PASS
  7. ok learn/tests/utils/split 1.276s

3.2.2. 性能比较函数

在对性能要求很高的场景中,需要对不同算法进行性能比较,以及某个参数在取不同值时对性能的影响程度,这种情况下会使用到性能比较函数。

  1. package sequence
  2. // 兔子数列问题 : F(1)=1,F(2)=1, F(n)=F(n - 1)+F(n - 2) , (n ≥ 3,n ∈ N*)
  3. func ReRes(n uint64) uint64 { // 递归方式求兔子数列
  4. if n == 0 {
  5. return 0
  6. }else if n == 1 {
  7. return 1
  8. } else if n == 2 {
  9. return 1
  10. } else {
  11. return ReRes(n-1) + ReRes(n-2)
  12. }
  13. }
  14. // 使用循环解决兔子数列问题
  15. func LoopRes(n uint64) uint64 {
  16. var (
  17. x uint64 = 1
  18. y uint64 = 1
  19. )
  20. for i:=uint64(1); i <= n; i++ {
  21. if i > 2{
  22. y, x = y+x, y
  23. }
  24. }
  25. return y
  26. }
  1. package sequence
  2. import "testing"
  3. func benchmarkReRes(b *testing.B, fn func(n uint64) uint64, n uint64) {
  4. for i:=0; i<b.N; i++ {
  5. fn(n)
  6. }
  7. }
  8. func BenchmarkTest1(b *testing.B) { benchmarkReRes(b, LoopRes, 30) }
  9. func BenchmarkTest2(b *testing.B) { benchmarkReRes(b, ReRes, 30) }
  10. func BenchmarkTest21(b *testing.B) { benchmarkReRes(b, ReRes, 2) }
  11. func BenchmarkTest22(b *testing.B) { benchmarkReRes(b, ReRes, 4) }
  12. func BenchmarkTest23(b *testing.B) { benchmarkReRes(b, ReRes, 8) }
  13. func BenchmarkTest24(b *testing.B) { benchmarkReRes(b, ReRes, 16) }
  14. func BenchmarkTest25(b *testing.B) { benchmarkReRes(b, ReRes, 32) }
  1. [root@heyingsheng sequence]# go test --bench=. -benchmem
  2. goos: linux
  3. goarch: amd64
  4. pkg: learn/tests/utils/sequence
  5. BenchmarkTest1-12 50868148 22.8 ns/op 0 B/op 0 allocs/op
  6. BenchmarkTest2-12 387 3010651 ns/op 0 B/op 0 allocs/op
  7. BenchmarkTest21-12 656601691 1.80 ns/op 0 B/op 0 allocs/op
  8. BenchmarkTest22-12 146382860 8.21 ns/op 0 B/op 0 allocs/op
  9. BenchmarkTest23-12 18137901 66.9 ns/op 0 B/op 0 allocs/op
  10. BenchmarkTest24-12 332538 3550 ns/op 0 B/op 0 allocs/op
  11. BenchmarkTest25-12 147 8019416 ns/op 0 B/op 0 allocs/op
  12. PASS
  13. ok learn/tests/utils/sequence 10.577s