Skip to content

Commit 433fb07

Browse files
committed
Generated wireframe raid using pvtr generate-raid
Signed-off-by: Eddie Knight <[email protected]>
1 parent d603f4e commit 433fb07

File tree

19 files changed

+981
-1240
lines changed

19 files changed

+981
-1240
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PACKNAME=wireframe
1+
PACKNAME=SVC
22
BUILD_FLAGS=-X 'main.GitCommitHash=`git rev-parse --short HEAD`' -X 'main.BuiltAt=`date +%FT%T%z`'
33
BUILD_WIN=@env GOOS=windows GOARCH=amd64 go build -o $(PACKNAME).exe
44
BUILD_LINUX=@env GOOS=linux GOARCH=amd64 go build -o $(PACKNAME)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Privateer Raid Wireframe
1+
# Privateer Raid SVC
22

33
This wireframe is designed to quickly get your service pack repository up to speed!
44

TESTING.md

+27-16
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ Assumptions:
55
- VS Code is used as the local IDE
66
- Go built-in testing package is used
77

8-
# Table of Contents
8+
## Table of Contents
9+
910
- [TLDR](#tldr)
1011
- [Pre-requisites](#pre-requisites)
1112
- [Environment Setup](#environment-setup)
@@ -24,7 +25,8 @@ Assumptions:
2425
<small><i><a href='http://ecotrust-canada.github.io/markdown-toc/'>Table of contents generated with markdown-toc</a></i></small>
2526

2627

27-
# TLDR
28+
## TLDR
29+
2830
- Read go testing docs. [See here](#pre-requisites)
2931
- Install *gotest* and *dlv* tools. [See here](#environment-setup)
3032
- To write tests:
@@ -51,17 +53,18 @@ Assumptions:
5153
- Open test function in VS Code and place breakpoint
5254
- Click *Debug test* on top of test function
5355

54-
# Pre-requisites
56+
## Pre-requisites
5557

5658
As a pre-requisite, please review the following materials to understand Go's testing appraoch and tools:
5759

5860
- https://golang.org/pkg/testing/ > Original reference to Go's built-in testing package
5961
- https://gobyexample.com/testing > Clear examples about Go testing
6062
- https://code.visualstudio.com/docs/languages/go > Details about Go extension for VS Code
6163

62-
# Environment Setup
64+
## Environment Setup
65+
66+
A simple way to install useful tools in VS Code:
6367

64-
A simple way to install useful tools in VS Code
6568
- To check which tools are installed:
6669
- Press *Ctrl+Shift+P* to open Command Palette
6770
- Type *Go: Locate Configured Go Tools*
@@ -73,26 +76,30 @@ A simple way to install useful tools in VS Code
7376
- Restart VS Code
7477

7578
Recommended tools from above list:
79+
7680
- *gotest* > Generate unit tests
7781
- *dlv* > Enhanced Go debugging
7882

79-
# How to write tests for packages
83+
## How to write tests for packages
84+
85+
### Test files
8086

81-
## Test files
8287
- For each package, a new file shall be created following this naming convention: *[packagename]_test.go*
8388
- Example:
8489
- Package: ```utils.go```
8590
- Test file: ```utils_test.go```
8691

87-
## Test functions
92+
### Test functions
93+
8894
- For each function within a package, there shall be a corresponding test function following this naming convention: *func Test[FunctionName](t* **testing.T)*
8995
- Example:
9096
- Package: ```utils.go```
9197
- Function: ```ReadStaticFile```
9298
- Test file: ```utils_test.go```
9399
- Test function: ```TestReadStaticFile(t *testing.T)```
94100

95-
## Proposed test format
101+
### Proposed test format
102+
96103
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.
97104

98105
The following structure is recommended:
@@ -222,16 +229,18 @@ The following structure is recommended:
222229
```
223230
224231
225-
# How to run tests locally
232+
## How to run tests locally
233+
234+
### Run all tests
226235
227-
## Run all tests
228236
- Navigate to project's root folder and execute ```go tests ./...```
229237
```
230238
cd ./projectroot/
231239
go test -v ./...
232240
```
233241
234-
## Run all tests for a specific package
242+
### Run all tests for a specific package
243+
235244
- Navigate to package folder and execute ```go test```
236245
237246
Sample
@@ -240,7 +249,8 @@ cd ./internal/utils
240249
go test -v
241250
```
242251
243-
## Run a specific test for a specific function
252+
### Run a specific test for a specific function
253+
244254
- Navigate to package folder and execute ```go test run <FunctionName>```
245255
246256
Sample:
@@ -249,13 +259,14 @@ cd ./internal/utils
249259
go test -v -run TestReadStaticFile
250260
```
251261
252-
## Generate test coverage report locally
262+
### Generate test coverage report locally
263+
253264
- Generate coverage profile ```go test ./... -coverprofile coverage.out```
254265
- Generate HTML report ```go tool cover -html coverage.out```
255266
256267
*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.*
257268
258-
# How to debug tests
269+
## How to debug tests
259270
260271
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).
261272
@@ -265,7 +276,7 @@ To debug tests:
265276
266277
See [this reference](https://code.visualstudio.com/docs/languages/go#_debugging) for more details on VS Code debugging.
267278
268-
# How to run tests in CICD pipeline
279+
## How to run tests in CICD pipeline
269280
270281
Since we are using Github Actions, the following commands shall be added to *.github/workflows/ci.yml*
271282
```

armory/antijokes.go

-159
This file was deleted.

0 commit comments

Comments
 (0)