forked from jfrog/jfrog-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go_test.go
521 lines (435 loc) · 17.3 KB
/
go_test.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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
package main
import (
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"testing"
"github.com/jfrog/gocmd/executers"
"github.com/jfrog/jfrog-cli-core/artifactory/spec"
"github.com/jfrog/jfrog-cli-core/utils/coreutils"
"github.com/jfrog/jfrog-cli/inttestutils"
"github.com/jfrog/jfrog-cli/utils/tests"
"github.com/jfrog/jfrog-client-go/artifactory/buildinfo"
_go "github.com/jfrog/jfrog-client-go/artifactory/services/go"
"github.com/jfrog/jfrog-client-go/utils/io/fileutils"
"github.com/jfrog/jfrog-client-go/utils/log"
"github.com/jfrog/jfrog-client-go/utils/version"
"github.com/stretchr/testify/assert"
)
// Testing build info capabilities for go project.
// Build project using go without Artifactory ->
// Publish dependencies to Artifactory ->
// Publish project to Artifactory->
// Publish and validate build-info
func TestGoBuildInfo(t *testing.T) {
initGoTest(t)
wd, err := os.Getwd()
assert.NoError(t, err)
project1Path := createGoProject(t, "project1", false)
testdataTarget := filepath.Join(tests.Out, "testdata")
testdataSrc := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "go", "testdata")
assert.NoError(t, fileutils.CopyDir(testdataSrc, testdataTarget, true, nil))
assert.NoError(t, os.Chdir(project1Path))
defer os.Chdir(wd)
log.Info("Using Go project located at ", project1Path)
// 1. Download dependencies.
// 2. Publish build-info.
// 3. Validate the total count of dependencies added to the build-info.
buildNumber := "1"
err = execGo(t, artifactoryCli, "go", "build", tests.GoRepo, "--build-name="+tests.GoBuildName, "--build-number="+buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
inttestutils.ValidateGeneratedBuildInfoModule(t, tests.GoBuildName, buildNumber, []string{"github.com/jfrog/dependency"}, buildinfo.Go)
err = execGo(t, artifactoryCli, "bp", tests.GoBuildName, buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
module := "github.com/jfrog/dependency"
publishedBuildInfo, found, err := tests.GetBuildInfo(artifactoryDetails, tests.GoBuildName, buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
if !found {
assert.True(t, found, "build info was expected to be found")
return
}
buildInfo := publishedBuildInfo.BuildInfo
artifactoryVersion, err := artAuth.GetVersion()
assert.NoError(t, err)
// Since Artifactory doesn't support info file before version 6.10.0, the artifacts count in the build info is different between versions
ver := version.NewVersion(artifactoryVersion)
expectedDependencies := 8
expectedArtifacts := 2
if ver.AtLeast(_go.ArtifactoryMinSupportedVersionForInfoFile) {
expectedDependencies = 4
expectedArtifacts = 3
}
validateBuildInfo(buildInfo, t, expectedDependencies, 0, module)
// Now, using a new build number, do the following:
// 1. Build the project again.
// 2. Publish the go package.
// 3. Validate the total count of dependencies and artifacts added to the build-info.
// 4. Validate that the artifacts are tagged with the build.name and build.number properties.
buildNumber = "2"
err = execGo(t, artifactoryCli, "go", "build", tests.GoRepo, "--build-name="+tests.GoBuildName, "--build-number="+buildNumber, "--module="+ModuleNameJFrogTest)
if err != nil {
assert.NoError(t, err)
return
}
err = execGo(t, artifactoryCli, "gp", tests.GoRepo, "v1.0.0", "--build-name="+tests.GoBuildName, "--build-number="+buildNumber, "--deps=rsc.io/quote:v1.5.2", "--module="+ModuleNameJFrogTest)
if err != nil {
assert.NoError(t, err)
return
}
err = execGo(t, artifactoryCli, "bp", tests.GoBuildName, buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
publishedBuildInfo, found, err = tests.GetBuildInfo(artifactoryDetails, tests.GoBuildName, buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
if !found {
assert.True(t, found, "build info was expected to be found")
return
}
buildInfo = publishedBuildInfo.BuildInfo
validateBuildInfo(buildInfo, t, expectedDependencies, expectedArtifacts, ModuleNameJFrogTest)
assert.NoError(t, os.Chdir(filepath.Join(wd, "testdata", "go")))
resultItems := getResultItemsFromArtifactory(tests.SearchGo, t)
assert.Equal(t, len(buildInfo.Modules[0].Artifacts), len(resultItems), "Incorrect number of artifacts were uploaded")
propsMap := map[string]string{
"build.name": tests.GoBuildName,
"build.number": buildNumber,
"go.version": "v1.0.0",
}
validateArtifactsProperties(resultItems, t, propsMap)
assert.NoError(t, os.Chdir(wd))
inttestutils.DeleteBuild(artifactoryDetails.Url, tests.GoBuildName, artHttpDetails)
cleanGoTest(t)
}
func TestGoConfigWithModuleNameChange(t *testing.T) {
initGoTest(t)
buildNumber := "1"
oldHomeDir, newHomeDir := prepareHomeDir(t)
defer os.Setenv(coreutils.HomeDir, oldHomeDir)
defer os.RemoveAll(newHomeDir)
wd, err := os.Getwd()
assert.NoError(t, err)
prepareGoProject("", t, true)
runGo(ModuleNameJFrogTest, tests.GoBuildName, buildNumber, t, "go", "build", "--build-name="+tests.GoBuildName, "--build-number="+buildNumber, "--module="+ModuleNameJFrogTest)
assert.NoError(t, os.Chdir(wd))
cleanGoTest(t)
}
func TestGoConfigWithoutModuleChange(t *testing.T) {
initGoTest(t)
buildNumber := "1"
oldHomeDir, newHomeDir := prepareHomeDir(t)
defer os.Setenv(coreutils.HomeDir, oldHomeDir)
defer os.RemoveAll(newHomeDir)
wd, err := os.Getwd()
assert.NoError(t, err)
prepareGoProject("", t, true)
runGo("", tests.GoBuildName, buildNumber, t, "go", "build", "--build-name="+tests.GoBuildName, "--build-number="+buildNumber)
assert.NoError(t, os.Chdir(wd))
cleanGoTest(t)
}
func TestGoWithGlobalConfig(t *testing.T) {
initGoTest(t)
buildNumber := "1"
oldHomeDir, newHomeDir := prepareHomeDir(t)
defer os.Setenv(coreutils.HomeDir, oldHomeDir)
defer os.RemoveAll(newHomeDir)
wd, err := os.Getwd()
assert.NoError(t, err)
prepareGoProject(newHomeDir, t, false)
runGo(ModuleNameJFrogTest, tests.GoBuildName, buildNumber, t, "go", "build", "--build-name="+tests.GoBuildName, "--build-number="+buildNumber, "--module="+ModuleNameJFrogTest)
assert.NoError(t, os.Chdir(wd))
cleanGoTest(t)
}
func TestGoGetSpecificVersion(t *testing.T) {
// Init test and prepare Global config
initGoTest(t)
buildNumber := "1"
oldHomeDir, newHomeDir := prepareHomeDir(t)
defer os.Setenv(coreutils.HomeDir, oldHomeDir)
defer os.RemoveAll(newHomeDir)
wd, err := os.Getwd()
assert.NoError(t, err)
prepareGoProject("", t, true)
// Build and publish a go project.
// We do so in order to make sure the rsc.io/quote:v1.5.2 will be available for the get command
runGo("", tests.GoBuildName, buildNumber, t, "go", "build", "--build-name="+tests.GoBuildName, "--build-number="+buildNumber)
// Go get one of the known dependencies
artifactoryGoCli := tests.NewJfrogCli(execMain, "jfrog rt", "")
err = execGo(t, artifactoryGoCli, "go", "get", "rsc.io/[email protected]", "--build-name="+tests.GoBuildName, "--build-number="+buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
err = execGo(t, artifactoryCli, "bp", tests.GoBuildName, buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
publishedBuildInfo, found, err := tests.GetBuildInfo(artifactoryDetails, tests.GoBuildName, buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
if !found {
assert.True(t, found, "build info was expected to be found")
return
}
buildInfo := publishedBuildInfo.BuildInfo
validateBuildInfo(buildInfo, t, 2, 0, "rsc.io/quote")
// Cleanup
assert.NoError(t, os.Chdir(wd))
cleanGoTest(t)
}
func runGo(module, buildName, buildNumber string, t *testing.T, args ...string) {
artifactoryGoCli := tests.NewJfrogCli(execMain, "jfrog rt", "")
err := execGo(t, artifactoryGoCli, args...)
if err != nil {
assert.NoError(t, err)
return
}
err = execGo(t, artifactoryCli, "bp", buildName, buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
publishedBuildInfo, found, err := tests.GetBuildInfo(artifactoryDetails, buildName, buildNumber)
if err != nil {
assert.NoError(t, err)
return
}
if !found {
assert.True(t, found, "build info was expected to be found")
return
}
buildInfo := publishedBuildInfo.BuildInfo
if module == "" {
module = "github.com/jfrog/dependency"
}
artifactoryVersion, err := artAuth.GetVersion()
assert.NoError(t, err)
// Since Artifactory doesn't support info file before version 6.10.0, the artifacts count in the build info is different between versions
ver := version.NewVersion(artifactoryVersion)
if ver.AtLeast(_go.ArtifactoryMinSupportedVersionForInfoFile) {
validateBuildInfo(buildInfo, t, 4, 0, module)
} else {
validateBuildInfo(buildInfo, t, 8, 0, module)
}
inttestutils.DeleteBuild(artifactoryDetails.Url, buildName, artHttpDetails)
}
func prepareGoProject(configDestDir string, t *testing.T, copyDirs bool) {
project1Path := createGoProject(t, "project1", copyDirs)
testdataTarget := filepath.Join(tests.Out, "testdata")
testdataSrc := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "go", "testdata")
err := fileutils.CopyDir(testdataSrc, testdataTarget, copyDirs, nil)
assert.NoError(t, err)
if configDestDir == "" {
configDestDir = filepath.Join(project1Path, ".jfrog")
}
configFileDir := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "go", "project1", ".jfrog", "projects")
configFileDir, err = tests.ReplaceTemplateVariables(filepath.Join(configFileDir, "go.yaml"), filepath.Join(configDestDir, "projects"))
assert.NoError(t, err)
assert.NoError(t, os.Chdir(project1Path))
log.Info("Using Go project located at ", project1Path)
}
// Testing publishing and resolution capabilities for go projects.
// Build first project using go without Artifactory ->
// Publish dependencies to Artifactory ->
// Publish first project to Artifactory ->
// Set go to resolve from Artifactory (set GOPROXY) ->
// Build second project using go resolving from Artifactory, should download project1 as dependency.
func TestGoPublishResolve(t *testing.T) {
initGoTest(t)
wd, err := os.Getwd()
assert.NoError(t, err)
project1Path := createGoProject(t, "project1", false)
project2Path := createGoProject(t, "project2", false)
assert.NoError(t, os.Chdir(project1Path))
// Download dependencies without Artifactory
err = execGo(t, artifactoryCli, "go", "build", tests.GoRepo, "--publish-deps=true")
if err != nil {
assert.NoError(t, err)
return
}
// Publish dependency project to Artifactory
err = execGo(t, artifactoryCli, "gp", tests.GoRepo, "v1.0.0")
if err != nil {
assert.NoError(t, err)
return
}
assert.NoError(t, os.Chdir(project2Path))
// Build the second project, download dependencies from Artifactory
err = execGo(t, artifactoryCli, "go", "build", tests.GoRepo)
if err != nil {
assert.NoError(t, err)
return
}
// Restore workspace
assert.NoError(t, os.Chdir(wd))
cleanGoTest(t)
}
// Testing the fallback mechanism
// 1. Building a project with a dependency that doesn't exists not in Artifactory and not in VCS.
// 2. The fallback mechanism will try to download from both VCS and Artifactory and then fail with an error
// 3. Testing that the error that is returned is the right error of the fallback.
func TestGoFallback(t *testing.T) {
initGoTest(t)
wd, err := os.Getwd()
assert.NoError(t, err)
projectBuild := createGoProject(t, "projectbuild", false)
assert.NoError(t, os.Chdir(projectBuild))
err = execGo(t, artifactoryCli, "go", "build", tests.GoRepo)
if err != nil {
log.Warn(err)
assert.Contains(t, err.Error(), executers.FailedToRetrieve)
assert.Contains(t, err.Error(), executers.FromBothArtifactoryAndVcs)
} else {
assert.Error(t, err, "Expected error but got success")
return
}
assert.NoError(t, os.Chdir(wd))
cleanGoTest(t)
}
// Builds a project with a dependency of gofrog that is missing a mod file.
// Test the recursive overwrite capability.
// 1. Upload dependency.
// 2. Upload a project that is using that dependency
// 3. Build with recursive-tidy-overwrite set to true so the gofrog dependency will be downloaded from VCS
// 4. Check mod file (in Artifactory) of the dependency gofrog that populated.
// 5. Check mod file (in Artifactory) of the gofrog dependency (pkg/errors) that exists with the right content
func TestGoRecursivePublish(t *testing.T) {
initGoTest(t)
wd, err := os.Getwd()
assert.NoError(t, err)
testdataTarget := filepath.Join(tests.Out, "testdata")
testdataSrc := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "go", "testdata")
assert.NoError(t, fileutils.CopyDir(testdataSrc, testdataTarget, true, nil))
project1Path := createGoProject(t, "dependency", false)
projectMissingDependency := createGoProject(t, "projectmissingdependency", false)
projectBuild := createGoProject(t, "projectbuild", false)
uploadGoProject(project1Path, t)
uploadGoProject(projectMissingDependency, t)
assert.NoError(t, os.Chdir(projectBuild))
defer os.Chdir(wd)
err = execGo(t, artifactoryCli, "grp", tests.GoRepo)
if err != nil {
assert.NoError(t, err)
return
}
sumFileExists, err := fileutils.IsFileExists("go.sum", false)
assert.NoError(t, err)
if sumFileExists {
assert.NoError(t, os.Remove("go.sum"))
}
assert.NoError(t, os.Chdir(filepath.Join(wd, "testdata", "go")))
// Need to check the mod file within Artifactory of the gofrog dependency.
content := downloadModFile(tests.DownloadModFileGo, wd, "gofrog", t)
// Check that the file was signed:
assert.NotContains(t, string(content), "// Generated by JFrog", "Expected file to be not signed")
// Check that the mod file was populated with the dependency
assert.NotContains(t, string(content), "require github.com/pkg/errors", "Expected to get empty mod file")
assert.NoError(t, os.Chdir(filepath.Join(wd, "testdata", "go")))
// Need to check the mod file within Artifactory of the dependency of gofrog => pkg/errors.
content = downloadModFile(tests.DownloadModOfDependencyGo, wd, "errors", t)
// Check that the file was signed:
assert.NotContains(t, string(content), "// Generated by JFrog", "Expected file to be not signed")
// Check that the mod file contains dependency module.
assert.Contains(t, string(content), "module github.com/pkg/errors", "Expected to get module github.com/pkg/errors")
assert.NoError(t, os.Chdir(wd))
cleanGoTest(t)
}
// Publish also the missing dependencies to Artifactory with the publishDeps flag.
// Checks that the dependency exists in Artifactory.
func TestGoWithPublishDeps(t *testing.T) {
initGoTest(t)
wd, err := os.Getwd()
assert.NoError(t, err)
project1Path := createGoProject(t, "project1", false)
testdataTarget := filepath.Join(tests.Out, "testdata")
testdataSrc := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "go", "testdata")
assert.NoError(t, fileutils.CopyDir(testdataSrc, testdataTarget, true, nil))
assert.NoError(t, os.Chdir(project1Path))
defer os.Chdir(wd)
log.Info("Using Go project located at ", project1Path)
err = execGo(t, artifactoryCli, "go", "build", tests.GoRepo, "--publish-deps=true")
if err != nil {
assert.NoError(t, err)
return
}
assert.NoError(t, os.Chdir(filepath.Join(wd, "testdata", "go")))
content := downloadModFile(tests.DownloadModOfDependencyGo, wd, "errors", t)
assert.NotContains(t, string(content), " module github.com/pkg/errors", "Wrong mod content was downloaded")
assert.NoError(t, os.Chdir(wd))
cleanGoTest(t)
}
func initGoTest(t *testing.T) {
if !*tests.TestGo {
t.Skip("Skipping go test. To run go test add the '-test.go=true' option.")
}
assert.NoError(t, os.Setenv("GONOSUMDB", "github.com/jfrog"))
}
func cleanGoTest(t *testing.T) {
cleanGoCache(t)
assert.NoError(t, os.Unsetenv("GONOSUMDB"))
deleteSpec := spec.NewBuilder().Pattern(tests.GoRepo).BuildSpec()
_, _, err := tests.DeleteFiles(deleteSpec, artifactoryDetails)
assert.NoError(t, err)
cleanBuildToolsTest()
}
func uploadGoProject(projectPath string, t *testing.T) {
assert.NoError(t, os.Chdir(projectPath))
// Publish project to Artifactory
err := execGo(t, artifactoryCli, "gp", tests.GoRepo, "v1.0.0")
if err != nil {
assert.NoError(t, err)
return
}
}
func cleanGoCache(t *testing.T) {
log.Info("Cleaning go cache by running: 'go clean -modcache'")
cmd := exec.Command("go", "clean", "-modcache")
assert.NoError(t, cmd.Run())
}
func createGoProject(t *testing.T, projectName string, includeDirs bool) string {
projectSrc := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "go", projectName)
projectTarget := filepath.Join(tests.Out, projectName)
err := fileutils.CopyDir(projectSrc, projectTarget, includeDirs, nil)
assert.NoError(t, err)
projectTarget, err = filepath.Abs(projectTarget)
assert.NoError(t, err)
goModeOriginalPath := filepath.Join(projectTarget, "createGoProject_go.mod_suffix")
goModeTargetPath := filepath.Join(projectTarget, "go.mod")
assert.NoError(t, os.Rename(goModeOriginalPath, goModeTargetPath))
return projectTarget
}
func downloadModFile(specName, wd, subDir string, t *testing.T) []byte {
specFile, err := tests.CreateSpec(specName)
assert.NoError(t, err)
modDir := filepath.Join(wd, tests.Out, subDir)
assert.NoError(t, os.MkdirAll(modDir, 0777))
assert.NoError(t, os.Chdir(modDir))
assert.NoError(t, artifactoryCli.Exec("download", "--spec="+specFile, "--flat=true"))
files, err := fileutils.ListFiles(modDir, false)
assert.NoError(t, err)
assert.Len(t, files, 1, "Expected to get one mod file")
content, err := ioutil.ReadFile(files[0])
assert.NoError(t, err)
return content
}
func execGo(t *testing.T, cli *tests.JfrogCli, args ...string) error {
cleanGoCache(t)
return cli.Exec(args...)
}