generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 55
/
magefile.go
319 lines (281 loc) · 7.84 KB
/
magefile.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
//go:build mage
package main
import (
"fmt"
"io"
"os"
"os/exec"
"os/user"
"path/filepath"
"regexp"
"strings"
"syscall"
"github.com/sirupsen/logrus"
"golang.org/x/term"
"github.com/magefile/mage/mg"
"github.com/magefile/mage/sh"
)
var (
Go = "go"
)
// Build builds the library.
func Build() error {
fmt.Println("Building project...")
return sh.Run(Go, "build", "-tags", "jwx_es256k", "./...")
}
// Artifact builds the binary.
func Artifact() error {
fmt.Println("Building binary...")
return sh.Run(Go, "build", "-tags", "jwx_es256k", "-o", "./bin/ssi-service", "./cmd/ssiservice")
}
// Vuln downloads and runs govulncheck https://go.dev/blog/vuln
func Vuln() error {
fmt.Println("Vulnerability checks...")
if err := installGoVulnIfNotPresent(); err != nil {
fmt.Printf("Error installing go-vuln: %s", err.Error())
return err
}
return sh.Run("govulncheck", "./...")
}
func installGoVulnIfNotPresent() error {
return installIfNotPresent("govulncheck", "golang.org/x/vuln/cmd/govulncheck@latest")
}
// Clean deletes any build artifacts.
func Clean() {
fmt.Println("Cleaning...")
_ = os.RemoveAll("bin")
}
// CleanRun removes Docker container, network, and image artifacts.
func CleanRun() error {
if err := isDockerReady(); err != nil {
return err
}
fmt.Println("Cleaning containers...")
return sh.Run("docker-compose", "--project-directory", "build", "down", "--rmi", "local")
}
// Deps installs the dependencies needed for the build toolchain.
func Deps() error {
return brewInstall("golangci-lint")
}
func brewInstall(formula string) error {
return sh.Run("brew", "install", formula)
}
// Lint runs the configured linter.
func Lint() error {
return sh.Run("golangci-lint", "run")
}
// Run the service via docker-compose.
func Run() error {
if err := isDockerReady(); err != nil {
return err
}
return sh.Run("docker-compose", "--project-directory", "build", "up", "--build")
}
// Test runs unit tests without coverage.
// The mage `-v` option will trigger a verbose output of the test
func Test() error {
return runTests()
}
// CITest runs unit tests with coverage as a part of CI.
// The mage `-v` option will trigger a verbose output of the test
func CITest() error {
return runCITests()
}
// Integration runs integration tests.
func Integration() error {
return runIntegrationTests()
}
// Spec generates an OpenAPI spec yaml based on code annotations.
func Spec() error {
swagCommand := "swag"
if err := installIfNotPresent(swagCommand, "github.com/swaggo/swag/v2/cmd/[email protected]"); err != nil {
logrus.WithError(err).Error("failed to install swag")
return err
}
// We need to download deps first as a workaround to https://github.com/TBD54566975/ssi-service/issues/515
if err := sh.Run(Go, "mod", "download"); err != nil {
logrus.WithError(err).Error("failed to download dependencies")
return err
}
if err := sh.Run(swagCommand, "fmt", "-d", "pkg/server/router,cmd/ssiservice"); err != nil {
logrus.WithError(err).Error("failed to format swagger docs")
return err
}
// We need to enable dependencies because many of our external API objects have ssi-sdk objects.
return sh.Run(swagCommand, "init", "-g", "cmd/ssiservice/main.go", "--overridesFile", "doc/overrides.swaggo", "--pd", "--parseInternal", "-o", "doc", "-ot", "yaml")
}
func runCITests(extraTestArgs ...string) error {
args := []string{"test"}
if mg.Verbose() {
args = append(args, "-v")
}
args = append(args, "-tags=jwx_es256k")
args = append(args, "-covermode=atomic")
args = append(args, "-coverprofile=coverage.out")
args = append(args, "-race")
args = append(args, "-short")
args = append(args, extraTestArgs...)
args = append(args, "./...")
testEnv := map[string]string{
"CGO_ENABLED": "1",
"GO111MODULE": "on",
}
writer := ColorizeTestStdout()
fmt.Printf("%+v", args)
_, err := sh.Exec(testEnv, writer, os.Stderr, Go, args...)
return err
}
func runTests(extraTestArgs ...string) error {
args := []string{"test"}
if mg.Verbose() {
args = append(args, "-v")
}
args = append(args, "-tags=jwx_es256k")
args = append(args, "-short")
args = append(args, extraTestArgs...)
args = append(args, "./...")
testEnv := map[string]string{
"CGO_ENABLED": "1",
"GO111MODULE": "on",
}
writer := ColorizeTestStdout()
fmt.Printf("%+v", args)
_, err := sh.Exec(testEnv, writer, os.Stderr, Go, args...)
return err
}
func runIntegrationTests(extraTestArgs ...string) error {
args := []string{"test"}
if mg.Verbose() {
args = append(args, "-v")
}
args = append(args, "-tags=jwx_es256k")
args = append(args, extraTestArgs...)
args = append(args, "./integration")
testEnv := map[string]string{
"CGO_ENABLED": "1",
"GO111MODULE": "on",
}
writer := ColorizeTestStdout()
fmt.Printf("%+v", args)
_, err := sh.Exec(testEnv, writer, os.Stderr, Go, args...)
return err
}
func ColorizeTestOutput(w io.Writer) io.Writer {
writer := NewRegexpWriter(w, `PASS.*`, "\033[32m$0\033[0m")
return NewRegexpWriter(writer, `FAIL.*`, "\033[31m$0\033[0m")
}
func ColorizeTestStdout() io.Writer {
stdout := syscall.Stdout
if term.IsTerminal(stdout) {
return ColorizeTestOutput(os.Stdout)
}
return os.Stdout
}
type regexpWriter struct {
inner io.Writer
re *regexp.Regexp
repl []byte
}
func NewRegexpWriter(inner io.Writer, re string, repl string) io.Writer {
return ®expWriter{inner, regexp.MustCompile(re), []byte(repl)}
}
func (w *regexpWriter) Write(p []byte) (int, error) {
r := w.re.ReplaceAll(p, w.repl)
n, err := w.inner.Write(r)
if n > len(r) {
n = len(r)
}
return n, err
}
func runGo(cmd string, args ...string) error {
return sh.Run(findOnPathOrGoPath("go"), append([]string{"run", cmd}, args...)...)
}
// InstallIfNotPresent installs a go based tool (if not already installed).
func installIfNotPresent(execName, goPackage string) error {
usr, err := user.Current()
if err != nil {
logrus.WithError(err).Fatal()
return err
}
pathOfExec := findOnPathOrGoPath(execName)
if len(pathOfExec) == 0 {
cmd := exec.Command(Go, "get", "-u", goPackage)
if err := runGoCommand(usr, *cmd); err != nil {
logrus.WithError(err).Warnf("Error running command: %s", cmd.String())
cmd = exec.Command(Go, "install", goPackage)
if err := runGoCommand(usr, *cmd); err != nil {
logrus.WithError(err).Fatalf("Error running command: %s", cmd.String())
return err
}
}
logrus.Infof("Successfully installed %s", goPackage)
}
return nil
}
func runGoCommand(usr *user.User, cmd exec.Cmd) error {
cmd.Dir = usr.HomeDir
if err := cmd.Start(); err != nil {
logrus.WithError(err).Fatalf("Error running command: %s", cmd.String())
return err
}
return cmd.Wait()
}
// Check to see if Docker is running.
func isDockerReady() error {
err := sh.Run("docker", "ps")
if !sh.CmdRan(err) {
return fmt.Errorf("could not run docker: %w", err)
}
return nil
}
func findOnPathOrGoPath(execName string) string {
if p := findOnPath(execName); p != "" {
return p
}
p := filepath.Join(goPath(), "bin", execName)
if _, err := os.Stat(p); err == nil {
return p
}
fmt.Printf("Could not find %s on PATH or in GOPATH/bin\n", execName)
return ""
}
func findOnPath(execName string) string {
pathEnv := os.Getenv("PATH")
pathDirectories := strings.Split(pathEnv, string(os.PathListSeparator))
for _, pathDirectory := range pathDirectories {
possible := filepath.Join(pathDirectory, execName)
stat, err := os.Stat(possible)
if err == nil || os.IsExist(err) {
if (stat.Mode() & 0111) != 0 {
return possible
}
}
}
return ""
}
func goPath() string {
usr, err := user.Current()
if err != nil {
logrus.Fatal(err)
return ""
}
goPath, goPathSet := os.LookupEnv("GOPATH")
if !goPathSet {
goPath = filepath.Join(usr.HomeDir, Go)
}
return goPath
}
// CBLT runs clean; build; lint; test.
func CBLT() error {
Clean()
if err := Build(); err != nil {
return err
}
if err := Lint(); err != nil {
return err
}
if err := Test(); err != nil {
return err
}
return nil
}