-
Notifications
You must be signed in to change notification settings - Fork 450
/
Copy pathmagefile.go
299 lines (261 loc) · 7.29 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
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
//go:build mage
package main
import (
"context"
"fmt"
"io"
"os"
"path/filepath"
"strconv"
"github.com/Masterminds/semver/v3"
"github.com/magefile/mage/mg"
"github.com/magefile/mage/sh"
"github.com/pkg/errors"
"github.com/elastic/integrations/dev/citools"
"github.com/elastic/integrations/dev/codeowners"
"github.com/elastic/integrations/dev/coverage"
"github.com/elastic/integrations/dev/testsreporter"
)
const (
defaultResultsPath = "build/test-results/"
defaultPreviousLinksNumber = 5
defaultMaximumTestsReported = 20
defaultServerlessProjectType = "observability"
)
var (
// GoImportsLocalPrefix is a string prefix matching imports that should be
// grouped after third-party packages.
GoImportsLocalPrefix = "github.com/elastic"
buildDir = "./build"
)
func Check() error {
mg.Deps(build)
mg.Deps(format)
mg.Deps(ModTidy)
mg.Deps(goTest)
mg.Deps(codeowners.Check)
return nil
}
func Clean() error {
return os.RemoveAll(buildDir)
}
func ImportBeats() error {
args := []string{"run", "./dev/import-beats/"}
if os.Getenv("SKIP_KIBANA") == "true" {
args = append(args, "-skipKibana")
}
if os.Getenv("PACKAGES") != "" {
args = append(args, "-packages", os.Getenv("PACKAGES"))
}
args = append(args, "*.go")
return sh.Run("go", args...)
}
func MergeCoverage() error {
coverageFiles, err := filepath.Glob("build/test-coverage/coverage-*.xml")
if err != nil {
return fmt.Errorf("glob failed: %w", err)
}
return coverage.MergeGenericCoverageFiles(coverageFiles, "build/test-coverage/coverage_merged.xml")
}
func build() error {
mg.Deps(buildImportBeats)
return nil
}
func buildImportBeats() error {
err := sh.Run("go", "build", "-o", "/dev/null", "./dev/import-beats")
if err != nil {
return errors.Wrap(err, "building import-beats failed")
}
return nil
}
func format() {
mg.Deps(addLicenseHeaders)
mg.Deps(goImports)
}
func addLicenseHeaders() error {
return sh.RunV("go", "run", "github.com/elastic/go-licenser", "-license", "Elastic")
}
func goImports() error {
goFiles, err := findFilesRecursive(func(path string, _ os.FileInfo) bool {
return filepath.Ext(path) == ".go"
})
if err != nil {
return err
}
if len(goFiles) == 0 {
return nil
}
args := append(
[]string{"run", "golang.org/x/tools/cmd/goimports", "-local", GoImportsLocalPrefix, "-l", "-w"},
goFiles...,
)
return sh.RunV("go", args...)
}
func goTest() error {
args := []string{"test"}
stdout := io.Discard
stderr := io.Discard
if mg.Verbose() {
args = append(args, "-v")
stdout = os.Stdout
stderr = os.Stderr
}
args = append(args, "./dev/...")
_, err := sh.Exec(nil, stdout, stderr, "go", args...)
return err
}
func findFilesRecursive(match func(path string, info os.FileInfo) bool) ([]string, error) {
var matches []string
err := filepath.Walk(".", func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if !info.Mode().IsRegular() {
// continue
return nil
}
if match(filepath.ToSlash(path), info) {
matches = append(matches, path)
}
return nil
})
return matches, err
}
func ModTidy() error {
return sh.RunV("go", "mod", "tidy")
}
func ReportFailedTests(ctx context.Context, testResultsFolder string) error {
stackVersion := os.Getenv("STACK_VERSION")
serverlessEnv := os.Getenv("SERVERLESS")
dryRunEnv := os.Getenv("DRY_RUN")
serverlessProjectEnv := os.Getenv("SERVERLESS_PROJECT")
buildURL := os.Getenv("BUILDKITE_BUILD_URL")
subscription := os.Getenv("ELASTIC_SUBSCRIPTION")
serverless := false
if serverlessEnv != "" {
var err error
serverless, err = strconv.ParseBool(serverlessEnv)
if err != err {
return fmt.Errorf("failed to parse SERVERLESS value: %w", err)
}
if serverlessProjectEnv == "" {
serverlessProjectEnv = defaultServerlessProjectType
}
}
logsDBEnabled := false
if v, found := os.LookupEnv("STACK_LOGSDB_ENABLED"); found && v == "true" {
logsDBEnabled = true
}
verboseMode := false
if v, found := os.LookupEnv("VERBOSE_MODE_ENABLED"); found && v == "true" {
verboseMode = true
}
maxIssuesString := os.Getenv("CI_MAX_TESTS_REPORTED")
maxIssues := defaultMaximumTestsReported
if maxIssuesString != "" {
var err error
maxIssues, err = strconv.Atoi(maxIssuesString)
if err != nil {
return fmt.Errorf("failed to convert to int env. variable CI_MAX_TESTS_REPORTED %s: %w", maxIssuesString, err)
}
}
dryRun := false
if dryRunEnv != "" {
var err error
dryRun, err = strconv.ParseBool(dryRunEnv)
if err != err {
return fmt.Errorf("failed to parse DRY_RUN value: %w", err)
}
}
options := testsreporter.CheckOptions{
Serverless: serverless,
ServerlessProject: serverlessProjectEnv,
LogsDB: logsDBEnabled,
StackVersion: stackVersion,
Subscription: subscription,
BuildURL: buildURL,
MaxPreviousLinks: defaultPreviousLinksNumber,
MaxTestsReported: maxIssues,
DryRun: dryRun,
Verbose: verboseMode,
}
return testsreporter.Check(ctx, testResultsFolder, options)
}
// IsSubscriptionCompatible checks whether or not the package in the current directory allows to run with the given subscription (ELASTIC_SUBSCRIPTION env var).
func IsSubscriptionCompatible() error {
subscription := os.Getenv("ELASTIC_SUBSCRIPTION")
if subscription == "" {
fmt.Println("true")
return nil
}
supported, err := citools.IsSubscriptionCompatible(subscription, "manifest.yml")
if err != nil {
return err
}
if supported {
fmt.Println("true")
return nil
}
fmt.Println("false")
return nil
}
// KibanaConstraintPackage returns the Kibana version constraint defined in the package manifest
func KibanaConstraintPackage() error {
constraint, err := citools.KibanaConstraintPackage("manifest.yml")
if err != nil {
return fmt.Errorf("faile")
}
if constraint == nil {
fmt.Println("null")
return nil
}
fmt.Println(constraint)
return nil
}
// IsSupportedStack checks whether or not the package in the current directory is allowed to be installed in the given stack version
func IsSupportedStack(stackVersion string) error {
if stackVersion == "" {
fmt.Println("true")
return nil
}
supported, err := citools.IsPackageSupportedInStackVersion(stackVersion, "manifest.yml")
if err != nil {
return err
}
if supported {
fmt.Println("true")
return nil
}
fmt.Println("false")
return nil
}
// IsLogsDBSupportedInPackage checks whether or not the package in the current directory supports LogsDB
func IsLogsDBSupportedInPackage() error {
supported, err := citools.IsLogsDBSupportedInPackage("manifest.yml")
if err != nil {
return err
}
if !supported {
fmt.Println("false")
return nil
}
fmt.Println("true")
return nil
}
// IsVersionLessThanLogsDBGA checks whether or not the given version supports LogsDB. Minimum version that supports LogsDB as GA 8.17.0.
func IsVersionLessThanLogsDBGA(version string) error {
stackVersion, err := semver.NewVersion(version)
if err != nil {
return fmt.Errorf("failed to parse version %q: %w", version, err)
}
lessThan := citools.IsVersionLessThanLogsDBGA(stackVersion)
if lessThan {
fmt.Println("true")
return nil
}
fmt.Println("false")
return nil
}