You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: TESTING.md
+27-16
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,8 @@ Assumptions:
5
5
- VS Code is used as the local IDE
6
6
- Go built-in testing package is used
7
7
8
-
# Table of Contents
8
+
## Table of Contents
9
+
9
10
-[TLDR](#tldr)
10
11
-[Pre-requisites](#pre-requisites)
11
12
-[Environment Setup](#environment-setup)
@@ -24,7 +25,8 @@ Assumptions:
24
25
<small><i><ahref='http://ecotrust-canada.github.io/markdown-toc/'>Table of contents generated with markdown-toc</a></i></small>
25
26
26
27
27
-
# TLDR
28
+
## TLDR
29
+
28
30
- Read go testing docs. [See here](#pre-requisites)
29
31
- Install *gotest* and *dlv* tools. [See here](#environment-setup)
30
32
- To write tests:
@@ -51,17 +53,18 @@ Assumptions:
51
53
- Open test function in VS Code and place breakpoint
52
54
- Click *Debug test* on top of test function
53
55
54
-
# Pre-requisites
56
+
##Pre-requisites
55
57
56
58
As a pre-requisite, please review the following materials to understand Go's testing appraoch and tools:
57
59
58
60
-https://golang.org/pkg/testing/ > Original reference to Go's built-in testing package
59
61
-https://gobyexample.com/testing > Clear examples about Go testing
60
62
-https://code.visualstudio.com/docs/languages/go > Details about Go extension for VS Code
61
63
62
-
# Environment Setup
64
+
## Environment Setup
65
+
66
+
A simple way to install useful tools in VS Code:
63
67
64
-
A simple way to install useful tools in VS Code
65
68
- To check which tools are installed:
66
69
- Press *Ctrl+Shift+P* to open Command Palette
67
70
- Type *Go: Locate Configured Go Tools*
@@ -73,26 +76,30 @@ A simple way to install useful tools in VS Code
73
76
- Restart VS Code
74
77
75
78
Recommended tools from above list:
79
+
76
80
-*gotest* > Generate unit tests
77
81
-*dlv* > Enhanced Go debugging
78
82
79
-
# How to write tests for packages
83
+
## How to write tests for packages
84
+
85
+
### Test files
80
86
81
-
## Test files
82
87
- For each package, a new file shall be created following this naming convention: *[packagename]_test.go*
83
88
- Example:
84
89
- Package: ```utils.go```
85
90
- Test file: ```utils_test.go```
86
91
87
-
## Test functions
92
+
### Test functions
93
+
88
94
- For each function within a package, there shall be a corresponding test function following this naming convention: *func Test[FunctionName](t***testing.T)*
89
95
- Example:
90
96
- Package: ```utils.go```
91
97
- Function: ```ReadStaticFile```
92
98
- Test file: ```utils_test.go```
93
99
- Test function: ```TestReadStaticFile(t *testing.T)```
94
100
95
-
## Proposed test format
101
+
### Proposed test format
102
+
96
103
Developers are free to write any code within the test function, however following a consistent structure can provide good reability, minimize communication issues among team members and ensure good coverage for all test cases.
97
104
98
105
The following structure is recommended:
@@ -222,16 +229,18 @@ The following structure is recommended:
222
229
```
223
230
224
231
225
-
# How to run tests locally
232
+
## How to run tests locally
233
+
234
+
### Run all tests
226
235
227
-
## Run all tests
228
236
- Navigate to project's root folder and execute ```go tests ./...```
229
237
```
230
238
cd ./projectroot/
231
239
go test -v ./...
232
240
```
233
241
234
-
## Run all tests for a specific package
242
+
### Run all tests for a specific package
243
+
235
244
- Navigate to package folder and execute ```go test```
236
245
237
246
Sample
@@ -240,7 +249,8 @@ cd ./internal/utils
240
249
go test -v
241
250
```
242
251
243
-
## Run a specific test for a specific function
252
+
### Run a specific test for a specific function
253
+
244
254
- Navigate to package folder and execute ```go test run <FunctionName>```
245
255
246
256
Sample:
@@ -249,13 +259,14 @@ cd ./internal/utils
249
259
go test -v -run TestReadStaticFile
250
260
```
251
261
252
-
## Generate test coverage report locally
262
+
### Generate test coverage report locally
263
+
253
264
- Generate coverage profile ```go test ./... -coverprofile coverage.out```
254
265
- Generate HTML report ```go tool cover -html coverage.out```
255
266
256
267
*Note: Please notice the above commands will generate a local file *coverage.out* with the test coverage details. Make sure you exclude this file from your next commit as it is not needed.*
257
268
258
-
# How to debug tests
269
+
## How to debug tests
259
270
260
271
During development it is very convenient to debug code execution, step into functions and check values of local variables and stack trace. This is possible in VS Code thru the use of *dlv* go package. [See above details for installing tools](#environment-setup).
261
272
@@ -265,7 +276,7 @@ To debug tests:
265
276
266
277
See [this reference](https://code.visualstudio.com/docs/languages/go#_debugging) for more details on VS Code debugging.
267
278
268
-
# How to run tests in CICD pipeline
279
+
## How to run tests in CICD pipeline
269
280
270
281
Since we are using Github Actions, the following commands shall be added to *.github/workflows/ci.yml*
0 commit comments