forked from elastic/integrations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmagefile.go
More file actions
265 lines (229 loc) · 6.44 KB
/
Copy pathmagefile.go
File metadata and controls
265 lines (229 loc) · 6.44 KB
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
// 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 (
"fmt"
"io"
"os"
"path/filepath"
"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/packagenames"
)
const (
elasticPackageModulePath = "github.com/elastic/elastic-package"
)
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)
mg.Deps(packagenames.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{"run", "gotest.tools/gotestsum", "--format", "testname", "--junitfile", "tests-report.xml"}
stdout := io.Discard
stderr := io.Discard
if mg.Verbose() {
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")
}
// ListPackages lists all packages found under the packages directory.
func ListPackages() error {
const packagesDir = "packages"
packages, err := citools.ListPackages(packagesDir)
if err != nil {
return fmt.Errorf("failed to list packages: %w", err)
}
for _, p := range packages {
fmt.Println(p)
}
return nil
}
// 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("failed to get Kibana constraint: %w", err)
}
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
}
// IsElasticPackageDependencyLessThan checks whether or not the elastic-package version set in go.mod is less than the given version
func IsElasticPackageDependencyLessThan(version string) error {
foundVersion, err := citools.PackageVersionGoMod("go.mod", elasticPackageModulePath)
if err != nil {
return fmt.Errorf("failed to get elastic-package version from go.mod: %w", err)
}
fmt.Fprintf(os.Stderr, "Found elastic-package %s\n", foundVersion)
desiredVersion, err := semver.NewVersion(version)
if err != nil {
return fmt.Errorf("failed to parse version %q: %w", version, err)
}
value := "false"
if foundVersion.LessThan(desiredVersion) {
value = "true"
}
fmt.Println(value)
return nil
}