forked from penny-vault/pvbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
magefile.go
417 lines (361 loc) · 9.73 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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
//go:build mage
// Copyright 2021-2023
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"errors"
"fmt"
"os"
"path/filepath"
"regexp"
"runtime"
"sort"
"strings"
"sync"
"time"
"github.com/Masterminds/semver/v3"
"github.com/magefile/mage/mg" // mg contains helpful utility functions, like Deps
"github.com/magefile/mage/sh"
)
const (
binaryName = "pvapi"
packageName = "."
module = "github.com/penny-vault/pv-api"
)
// allow user to override go executable by running as GOEXE=xxx make ... on unix-like systems
var goexe = "go"
var ginkgoexe = "ginkgo"
func init() {
if exe := os.Getenv("GOEXE"); exe != "" {
goexe = exe
}
}
// Default target to run when none is specified
// If not set, running mage will list available targets
// var Default = Build
func Build() error {
fmt.Printf("Building version: %s\n", version().String())
return runWith(flagEnv(), goexe, "build", "-o", binaryName, "-ldflags", ldFlags(), buildFlags(), "-tags", buildTags(), "-v", packageName)
}
// Manage your deps, or running package managers.
func InstallDeps() error {
fmt.Println("Installing Deps...")
return runWith(flagEnv(), goexe, "get", ".")
}
func Install() error {
return runWith(flagEnv(), goexe, "install", "-ldflags", ldFlags(), buildFlags(), "-tags", buildTags(), packageName)
}
func Uninstall() error {
return sh.Run(goexe, "clean", "-i", packageName)
}
// Clean up
func Clean() {
fmt.Println("Cleaning...")
os.RemoveAll("pvapi")
}
// Run tests and linters
func Check() {
mg.Deps(Fmt, Vet)
// don't run two tests in parallel, they saturate the CPUs anyway, and running two
// causes memory issues in CI.
mg.Deps(TestRace)
}
func testGoFlags() string {
return ""
}
// Run tests
func Test() error {
fmt.Println("Running Ginkgo tests ...")
// set testdir
wd, err := os.Getwd()
if err != nil {
fmt.Println(err)
fmt.Println("could not get working directory")
os.Exit(1)
}
testDir := filepath.Join(wd, "testdata")
env := map[string]string{
"GOFLAGS": testGoFlags(),
"PVAPI_TEST_DATA_DIR": testDir,
}
return runCmd(env, ginkgoexe, "run", "-r", "--junit-report", "test-report.xml")
}
// Run tests with race detector
func TestRace() error {
fmt.Println("Go Test Race")
fmt.Println("Running Ginkgo tests ...")
// set testdir
wd, err := os.Getwd()
if err != nil {
fmt.Println(err)
fmt.Println("could not get working directory")
os.Exit(1)
}
testDir := filepath.Join(wd, "testdata")
env := map[string]string{
"GOFLAGS": testGoFlags(),
"PVAPI_TEST_DATA_DIR": testDir,
}
return runCmd(env, ginkgoexe, "run", "-r", "--race", "--junit-report", "test-report.xml")
}
// Run gofmt linter
func Fmt() error {
fmt.Println("Go Format")
pkgs, err := packages()
if err != nil {
return err
}
failed := false
first := true
for _, pkg := range pkgs {
files, err := filepath.Glob(filepath.Join(pkg, "*.go"))
if err != nil {
return nil
}
for _, f := range files {
fmt.Printf("Format: %s\n", f)
// gofmt doesn't exit with non-zero when it finds unformatted code
// so we have to explicitly look for output, and if we find any, we
// should fail this target.
s, err := sh.Output("gofmt", "-l", f)
if err != nil {
fmt.Printf("ERROR: running gofmt on %q: %v\n", f, err)
failed = true
}
if s != "" {
if first {
fmt.Println("The following files are not gofmt'ed:")
first = false
}
failed = true
fmt.Println(s)
}
}
}
if failed {
return errors.New("improperly formatted go files")
}
return nil
}
// Run golint linter
func Lint() error {
fmt.Println("golangci-lint")
_, err := sh.Exec(nil, os.Stderr, nil, "golangci-lint", "run")
return err
}
// Run go vet linter
func Vet() error {
fmt.Println("Go Vet")
if err := sh.Run(goexe, "vet", "./..."); err != nil {
return fmt.Errorf("error running go vet: %v", err)
}
return nil
}
// Generate test coverage report
func TestCoverHTML() error {
fmt.Println("Generate Test Coverage HTML")
// set testdir
wd, err := os.Getwd()
if err != nil {
fmt.Println(err)
fmt.Println("could not get working directory")
os.Exit(1)
}
testDir := filepath.Join(wd, "testdata")
env := map[string]string{
"GOFLAGS": testGoFlags(),
"PVAPI_TEST_DATA_DIR": testDir,
}
runCmd(env, ginkgoexe, "run", "-r", "--coverprofile=cover.out", "--covermode=count")
return sh.Run(goexe, "tool", "cover", "-html=cover.out")
}
// Helpers
func buildFlags() []string {
if runtime.GOOS == "windows" {
return []string{"-buildmode", "exe"}
}
return nil
}
func buildTags() string {
return "jwx_goccy"
}
func gitHash() string {
hash, err := sh.Output("git", "rev-parse", "--short", "HEAD")
if err != nil {
fmt.Printf("error determining current git hash (maybe no commits on repo?): %s\n", err.Error())
return ""
}
return hash
}
func version() *semver.Version {
// check if the current commit is tagged
currentCommit, err := sh.Output("git", "show", "-s", `--format="%h %D"`)
if err != nil {
fmt.Fprintf(os.Stderr, "error getting commit info: %s", err.Error())
os.Exit(1)
}
regex, _ := regexp.Compile(`(?P<hash>[a-z0-9]+) (grafted, )?HEAD.*?(?P<tag>tag: v(?P<version>\d{1,3}.\d{1,3}.\d{1,3}))?`)
params := make(map[string]string)
res := regex.FindStringSubmatch(currentCommit)
if len(res) != 0 {
for ii, name := range regex.SubexpNames() {
params[name] = res[ii]
}
} else {
fmt.Fprintf(os.Stderr, "version regex did not match '%s'\n", currentCommit)
os.Exit(1)
}
for k, v := range params {
if v == "" {
delete(params, k)
}
}
// if this is a tagged version just return it
if taggedVersion, ok := params["version"]; ok {
ver, err := semver.NewVersion(taggedVersion)
if err != nil {
fmt.Fprintln(os.Stderr, err.Error())
fmt.Fprintln(os.Stderr, currentCommit)
fmt.Fprintf(os.Stderr, "could not create version from tag: '%s'\n", taggedVersion)
os.Exit(1)
}
return ver
}
// git a list of all version tags
versionTags, err := sh.Output("git", "tag", "-l", "v*.*.*")
if err != nil {
fmt.Fprintf(os.Stderr, "error getting list of versions: %s\n", err.Error())
os.Exit(1)
}
if versionTags == "" {
initialVersion := fmt.Sprintf("0.0.0-dev+%s", params["hash"])
if ver, err := semver.NewVersion(initialVersion); err != nil {
fmt.Fprintf(os.Stderr, "error parsing initial version: '%s'\n", initialVersion)
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)
} else {
return ver
}
}
// parse and sort
versions := strings.Split(versionTags, "\n")
vs := make([]*semver.Version, len(versions))
for i, r := range versions {
v, err := semver.NewVersion(r)
if err != nil {
fmt.Fprintf(os.Stderr, "error parsing version: '%s'\n", r)
fmt.Fprintf(os.Stderr, err.Error())
}
vs[i] = v
}
// check if a version has previously been released; if so rev it and
// apply the -dev pre-release fields
var newVer string
if len(vs) != 0 {
sort.Sort(semver.Collection(vs))
latestVersion := vs[len(vs)-1]
major := latestVersion.Major()
minor := latestVersion.Minor()
patch := latestVersion.Patch()
// plus up minor and annotate with meta-data
minor++
patch = 0
newVer = fmt.Sprintf("%d.%d.%d-dev+%s", major, minor, patch, params["hash"])
} else {
// could not find a version, this must be a new development, use 0.0.0
newVer = fmt.Sprintf("0.0.0-dev+%s", params["hash"])
}
ver, err := semver.NewVersion(newVer)
if err != nil {
fmt.Fprintln(os.Stderr, err.Error())
fmt.Fprintf(os.Stderr, "could not create version %s\n", newVer)
os.Exit(1)
}
return ver
}
func flagEnv() map[string]string {
return map[string]string{}
}
func buildTimeVariables() map[string]string {
return map[string]string{
"pkginfo.BuildDate": time.Now().Format("2006-01-02T15:04:05Z0700"),
"pkginfo.CommitHash": gitHash(),
"pkginfo.ProgramName": binaryName,
"pkginfo.Version": version().String(),
}
}
func ldFlags() string {
embeddedVars := buildTimeVariables()
var ldflags = make([]string, 0, len(embeddedVars)*2)
for k, v := range embeddedVars {
ldflags = append(ldflags, "-X")
ldflags = append(ldflags, fmt.Sprintf("'%s/%s=%s'", module, k, v))
}
return strings.Join(ldflags, " ")
}
func runCmd(env map[string]string, cmd string, args ...interface{}) error {
if mg.Verbose() {
return runWith(env, cmd, args...)
}
output, err := sh.OutputWith(env, cmd, argsToStrings(args...)...)
if err != nil {
fmt.Fprint(os.Stderr, err.Error())
}
fmt.Println(output)
return err
}
func runWith(env map[string]string, cmd string, inArgs ...interface{}) error {
s := argsToStrings(inArgs...)
fmt.Printf("%s %s\n", cmd, strings.Join(s, " "))
return sh.RunWith(env, cmd, s...)
}
var (
pkgPrefixLen = len(module)
pkgs []string
pkgsInit sync.Once
)
func packages() ([]string, error) {
var err error
pkgsInit.Do(func() {
var s string
s, err = sh.Output(goexe, "list", "./...")
if err != nil {
return
}
pkgs = strings.Split(s, "\n")
for i := range pkgs {
pkgs[i] = "." + pkgs[i][pkgPrefixLen:]
}
})
return pkgs, err
}
func argsToStrings(v ...interface{}) []string {
var args []string
for _, arg := range v {
switch v := arg.(type) {
case string:
if v != "" {
args = append(args, v)
}
case []string:
if v != nil {
args = append(args, v...)
}
default:
panic("invalid type")
}
}
return args
}