"go test" is a test command, which is used to test programs written in Go language; this test is based on code packages. The "go test" command will automatically read the source code file named "*_test.go" under the source code directory that contains several test functions. The test function generally has a name prefix of "Test" and a type of "testing.T" " function declared with parameters.
The operating environment of this tutorial: Windows 7 system, GO version 1.18, Dell G3 computer.
Go language has a set of unit testing and performance testing systems, which can quickly test a piece of required code with only a small amount of code added.
The go test command will automatically read the file named *_test.go under the source code directory, generate and run the executable file for testing.
go test command (test command)
go test
command is used to test programs written in Go language . This kind of testing is based on code packages. Of course, this also requires the help of test source code files. We will elaborate on how to write and write Go program test code in the second section of this chapter. Here, we only discuss how to use commands to start tests.
go test
The command will automatically test each specified code package. Of course, the premise is that the test source code file exists in the specified code package. The test source code file is a source code file whose name is suffixed with "_test.go" and contains several test functions. The test function is generally a function whose name is prefixed with "Test" and has a parameter declaration of type "testing.T".
Now, let's test several code packages in the goc2p project. The way to specify a code package when using the go test
command is the same as with other commands - use the code package import path. If you need to test multiple code packages, you need to add spaces between their import paths to separate them. An example is as follows:
hc@ubt:~$ go test basic cnet/ctcp pkgtool ok basic 0.012s ok cnet/ctcp 2.014s ok pkgtool 0.014s
go test
The command will print out the test summary information in units of code packages after executing all the test files in the code package. In the above example, the first column of the three lines of information corresponding to the three code packages is "ok". This means they all passed the test. The third column of each row shows the time, in seconds, it took to run the corresponding test. We can also run the go test
command without any parameters in the code package directory. Its function and results are the same as the above example.
In addition, we can also specify the test source code file for testing. In this case, the go test
command will only execute the tests in the specified file, like this:
hc@ubt:~/golang/goc2p/src/pkgtool$ go test envir_test.go # command-line-arguments ./envir_test.go:25: undefined: GetGoroot ./envir_test.go:40: undefined: GetAllGopath ./envir_test.go:81: undefined: GetSrcDirs ./envir_test.go:83: undefined: GetAllGopath ./envir_test.go:90: undefined: GetGoroot FAIL command-line-arguments [build failed]
We see that, just like specifying the source code file to compile or run, the command program will The source code file generates a virtual code package - "command-line-arguments". However, the test did not pass. But the reason is not that the test failed, but that the compilation failed. For the command program that runs this test, the test source code file envir_test.go belongs to the code package "command-line-arguments". Moreover, this test source code file uses the functions in the library source code file envir.go. However, it does not display the code package to which the source code file of this library is imported. This will obviously cause compilation errors. If we want to solve this problem, we also need to add the source code file tested by this test source code file when executing the command. An example is as follows:
hc@ubt:~/golang/goc2p/src/pkgtool$ go test envir_test.go envir.go ok command-line-arguments 0.010s
Now, we intentionally fail a certain test in the code package pkgtool
. Now let's run the test again:
hc@ubt:~$ go test basic cnet/ctcp pkgtool ok basic 0.010s ok cnet/ctcp 2.015s --- FAIL: TestGetSrcDirs (0.00 seconds) envir_test.go:85: Error: The src dir '/usr/local/go/src/pkg' is incorrect. FAIL FAIL pkgtool 0.009s
We know from the summary information in the above example that the test in the test function TestGetSrcDirs
of envir_test.go in the test source code file failed. In the line of information containing the name of the test source file that failed the test, the colon-separated number immediately following the test source file name is the line number where the error message is located, and the colon-separated number after the line number is the error message. The content of this error message is user-written. Additionally, the last line of the summary information is prefixed with "FAIL". This indicates that the tests for the code package pkgtool are not passing. The reasons for failure are described in the previous message.
Under normal circumstances, we will put the test source code file and the source code file being tested in the same code package. Moreover, the package names declared in these source code files are also the same. In addition, we have another option, that is, the package name declared in the test source code file can be the name of the corresponding package plus the "_test" suffix. We call this kind of test source code file an out-of-package test source code file. However, there is a drawback to testing source code files outside the package, that is, the package-level private program entities in the source code file under test cannot be tested in their test functions, such as package-level private variables, functions, and structure types. This is because the code packages that the two belong to are different. Therefore, we generally rarely write out-of-package test source code files.
About tags
The tag processing part of thego test
command is so large and complicated that Go language developers have to separate this part of the logic from the main body of the go test
command program Separate and create separate source code files. Because the go test
command includes a compile action, it can accept all tags available for the go build
command. In addition, it has many unique markings. These tags are used to control the actions of the command itself, some are used to control and set up the test process and environment, and some are used to generate more detailed test results and statistical information.
A few of the more common tags that can be used with the go test
command are -c
, -i
, and -o
. These two are markers used to control the actions of the go test
command itself. See table below for details.
Table 0-6 go test
Mark description of the command
Mark name | Mark description |
---|---|
-c | Generates an executable file for running the test, but does not execute it. This executable file will be named "pkg.test", where "pkg" is the name of the last element of the import path of the code package under test. |
-i | Install/reinstall the dependency packages required to run the tests, but do not compile and run the test code. |
-o | Specifies the name of the executable file used to run the test. Appending this tag will not affect the running of the test code unless the tag -c or -i is also appended. |
The above tags can be used together. The purpose of using them together is to have the go test
command install dependency packages and compile test code, but not run tests. In other words, let the command program run through all the processes before running the test. This can be used to test the testing process. Note that after adding the -c
tag, the command program will store the executable file used to run the test in the current directory.
【Related recommendations: Go video tutorial, Programming teaching】
The above is the detailed content of What is the function of go test?. For more information, please follow other related articles on the PHP Chinese website!

go语言有缩进。在go语言中,缩进直接使用gofmt工具格式化即可(gofmt使用tab进行缩进);gofmt工具会以标准样式的缩进和垂直对齐方式对源代码进行格式化,甚至必要情况下注释也会重新格式化。

go语言叫go的原因:想表达这门语言的运行速度、开发速度、学习速度(develop)都像gopher一样快。gopher是一种生活在加拿大的小动物,go的吉祥物就是这个小动物,它的中文名叫做囊地鼠,它们最大的特点就是挖洞速度特别快,当然可能不止是挖洞啦。

本篇文章带大家了解一下golang 的几种常用的基本数据类型,如整型,浮点型,字符,字符串,布尔型等,并介绍了一些常用的类型转换操作。

是,TiDB采用go语言编写。TiDB是一个分布式NewSQL数据库;它支持水平弹性扩展、ACID事务、标准SQL、MySQL语法和MySQL协议,具有数据强一致的高可用特性。TiDB架构中的PD储存了集群的元信息,如key在哪个TiKV节点;PD还负责集群的负载均衡以及数据分片等。PD通过内嵌etcd来支持数据分布和容错;PD采用go语言编写。

在写 Go 的过程中经常对比这两种语言的特性,踩了不少坑,也发现了不少有意思的地方,下面本篇就来聊聊 Go 自带的 HttpClient 的超时机制,希望对大家有所帮助。

go语言需要编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言,也就说Go语言程序在运行之前需要通过编译器生成二进制机器码(二进制的可执行文件),随后二进制文件才能在目标机器上运行。

删除map元素的两种方法:1、使用delete()函数从map中删除指定键值对,语法“delete(map, 键名)”;2、重新创建一个新的map对象,可以清空map中的所有元素,语法“var mapname map[keytype]valuetype”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
