-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathnpm_test.go
More file actions
1342 lines (1154 loc) · 54.7 KB
/
npm_test.go
File metadata and controls
1342 lines (1154 loc) · 54.7 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
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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"fmt"
"net/http"
"os"
"os/exec"
"path/filepath"
"strconv"
"strings"
"testing"
"github.com/jfrog/jfrog-cli-artifactory/artifactory/commands/generic"
utils2 "github.com/jfrog/jfrog-cli-core/v2/artifactory/commands/utils"
"github.com/jfrog/jfrog-cli-core/v2/artifactory/utils"
"github.com/jfrog/jfrog-client-go/http/httpclient"
"github.com/stretchr/testify/require"
"gopkg.in/yaml.v2"
"github.com/jfrog/jfrog-cli-core/v2/artifactory/utils/yarn"
buildutils "github.com/jfrog/build-info-go/build/utils"
biutils "github.com/jfrog/build-info-go/utils"
"github.com/jfrog/gofrog/version"
coretests "github.com/jfrog/jfrog-cli-core/v2/utils/tests"
"github.com/jfrog/jfrog-cli/utils/cliutils"
"github.com/jfrog/jfrog-client-go/utils/errorutils"
"github.com/jfrog/jfrog-client-go/utils/log"
clientTestUtils "github.com/jfrog/jfrog-client-go/utils/tests"
buildinfo "github.com/jfrog/build-info-go/entities"
"github.com/jfrog/jfrog-cli-core/v2/common/build"
"github.com/jfrog/jfrog-cli-core/v2/common/commands"
"github.com/jfrog/jfrog-cli-core/v2/common/project"
"github.com/jfrog/jfrog-cli-core/v2/common/spec"
clientutils "github.com/jfrog/jfrog-client-go/utils"
"github.com/jfrog/jfrog-cli-core/v2/utils/coreutils"
"github.com/jfrog/jfrog-cli-artifactory/artifactory/commands/npm"
"github.com/jfrog/jfrog-cli-core/v2/utils/ioutils"
"github.com/jfrog/jfrog-cli/inttestutils"
"github.com/jfrog/jfrog-cli/utils/tests"
"github.com/jfrog/jfrog-client-go/utils/io/fileutils"
"github.com/stretchr/testify/assert"
)
const (
minimumWorkspacesNpmVersion = "7.24.2"
)
type npmTestParams struct {
testName string
nativeCommand string
// Deprecated
legacyCommand string
repo string
npmArgs string
wd string
buildNumber string
moduleName string
validationFunc func(*testing.T, npmTestParams, bool)
}
func cleanNpmTest(t *testing.T) {
clientTestUtils.UnSetEnvAndAssert(t, coreutils.HomeDir)
deleteSpec := spec.NewBuilder().Pattern(tests.NpmRepo).BuildSpec()
_, _, err := tests.DeleteFiles(deleteSpec, serverDetails)
assert.NoError(t, err)
tests.CleanFileSystem()
}
func TestNpmNativeSyntax(t *testing.T) {
testNpm(t, false)
}
// Deprecated
func TestNpmLegacy(t *testing.T) {
testNpm(t, true)
}
func testNpm(t *testing.T, isLegacy bool) {
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
defer clientTestUtils.ChangeDirAndAssert(t, wd)
npmVersion, _, err := buildutils.GetNpmVersionAndExecPath(log.Logger)
if err != nil {
assert.NoError(t, err)
return
}
log.Info("npm version:", npmVersion.GetVersion())
isNpm7 := isNpm7(npmVersion)
// Temporarily change the cache folder to a temporary folder - to make sure the cache is clean and dependencies will be downloaded from Artifactory
tempCacheDirPath, createTempDirCallback := coretests.CreateTempDirWithCallbackAndAssert(t)
defer createTempDirCallback()
npmProjectPath, npmScopedProjectPath, npmNpmrcProjectPath, npmProjectCi, npmPostInstallProjectPath := initNpmFilesTest(t)
var npmTests = []npmTestParams{
{testName: "npm ci", nativeCommand: "npm ci", legacyCommand: "rt npmci", repo: tests.NpmRemoteRepo, wd: npmProjectCi, validationFunc: validateNpmInstall},
{testName: "npm ci with module", nativeCommand: "npm ci", legacyCommand: "rt npmci", repo: tests.NpmRemoteRepo, wd: npmProjectCi, moduleName: ModuleNameJFrogTest, validationFunc: validateNpmInstall},
{testName: "npm i with module", nativeCommand: "npm install", legacyCommand: "rt npm-install", repo: tests.NpmRemoteRepo, wd: npmProjectPath, moduleName: ModuleNameJFrogTest, validationFunc: validateNpmInstall},
{testName: "npm i with scoped project", nativeCommand: "npm install", legacyCommand: "rt npm-install", repo: tests.NpmRemoteRepo, wd: npmScopedProjectPath, validationFunc: validateNpmInstall},
{testName: "npm i with npmrc project", nativeCommand: "npm install", legacyCommand: "rt npm-install", repo: tests.NpmRemoteRepo, wd: npmNpmrcProjectPath, validationFunc: validateNpmInstall},
{testName: "npm i with production", nativeCommand: "npm install", legacyCommand: "rt npm-install", repo: tests.NpmRemoteRepo, wd: npmProjectPath, validationFunc: validateNpmInstall, npmArgs: "--production"},
{testName: "npm p with module", nativeCommand: "npm p", legacyCommand: "rt npmp", repo: tests.NpmRepo, wd: npmScopedProjectPath, moduleName: ModuleNameJFrogTest, validationFunc: validateNpmScopedPublish},
{testName: "npm p", nativeCommand: "npm publish", legacyCommand: "rt npm-publish", repo: tests.NpmRepo, wd: npmProjectPath, validationFunc: validateNpmPublish},
{testName: "npm postinstall", nativeCommand: "npm i", legacyCommand: "rt npmi", repo: tests.NpmRemoteRepo, wd: npmPostInstallProjectPath, validationFunc: validateNpmInstall},
}
for i, npmTest := range npmTests {
t.Run(npmTest.testName, func(t *testing.T) {
npmCmd := npmTest.nativeCommand
if isLegacy {
npmCmd = npmTest.legacyCommand
}
clientTestUtils.ChangeDirAndAssert(t, filepath.Dir(npmTest.wd))
npmrcFileInfo, err := os.Stat(".npmrc")
if err != nil && !os.IsNotExist(err) {
assert.Fail(t, err.Error())
}
var buildNumber string
commandArgs := strings.Split(npmCmd, " ")
buildNumber = strconv.Itoa(i + 100)
commandArgs = append(commandArgs, npmTest.npmArgs)
// Temporarily change the cache folder to a temporary folder - to make sure the cache is clean and dependencies will be downloaded from Artifactory
commandArgs = append(commandArgs, "--cache="+tempCacheDirPath)
commandArgs = append(commandArgs, "--build-name="+tests.NpmBuildName, "--build-number="+buildNumber)
if npmTest.moduleName != "" {
runJfrogCli(t, append(commandArgs, "--module="+npmTest.moduleName)...)
} else {
npmTest.moduleName = readModuleId(t, npmTest.wd, npmVersion)
runJfrogCli(t, commandArgs...)
}
validateNpmLocalBuildInfo(t, tests.NpmBuildName, buildNumber, npmTest.moduleName)
assert.NoError(t, artifactoryCli.Exec("bp", tests.NpmBuildName, buildNumber))
npmTest.buildNumber = buildNumber
npmTest.validationFunc(t, npmTest, isNpm7)
// make sure npmrc file was not changed (if existed)
postTestFileInfo, postTestFileInfoErr := os.Stat(".npmrc")
validateNpmrcFileInfo(t, npmTest, npmrcFileInfo, postTestFileInfo, err, postTestFileInfoErr)
})
}
inttestutils.DeleteBuild(serverDetails.ArtifactoryUrl, tests.NpmBuildName, artHttpDetails)
}
func TestNpmPublishWithNpmrc(t *testing.T) {
testNpmPublishWithNpmrc(t, validateNpmPublish, "npmpublishrcproject", tests.NpmRepo, false)
}
func TestNpmPublishWithNpmrcScoped(t *testing.T) {
testNpmPublishWithNpmrc(t, validateNpmScopedPublish, "npmpublishrcscopedproject", tests.NpmScopedRepo, true)
}
func testNpmPublishWithNpmrc(t *testing.T, validationFunc func(t *testing.T, npmTest npmTestParams, isNpm7 bool), projectName string, repoName string, isScoped bool) {
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
defer clientTestUtils.ChangeDirAndAssert(t, wd)
buildNumber := "1"
npmVersion, _, err := buildutils.GetNpmVersionAndExecPath(log.Logger)
if err != nil {
assert.NoError(t, err)
return
}
// Init npm project & npmp command for testing
npmProjectPath := initNpmPublishRcProjectTest(t, projectName)
configFilePath := filepath.Join(npmProjectPath, ".jfrog", "projects", "npm.yaml")
// fetch module id
packageJsonPath := npmProjectPath + "/package.json"
moduleName := readModuleId(t, packageJsonPath, npmVersion)
err = createNpmrcForTesting(t, configFilePath)
assert.NoError(t, err)
if isScoped {
addNpmScopeRegistryToNpmRc(t, npmProjectPath, packageJsonPath, npmVersion)
}
npmpCmd, err := publishUsingNpmrc(configFilePath, buildNumber)
assert.NoError(t, err)
result := npmpCmd.Result()
assert.NotNil(t, result)
validateNpmLocalBuildInfo(t, tests.NpmBuildName, buildNumber, moduleName)
assert.NoError(t, artifactoryCli.Exec("bp", tests.NpmBuildName, buildNumber))
// validation
testParams := npmTestParams{testName: "npm p",
nativeCommand: "npm publish",
legacyCommand: "rt npm-publish",
repo: repoName,
wd: npmProjectPath,
validationFunc: validateNpmPublish,
buildNumber: buildNumber,
moduleName: moduleName,
}
validationFunc(t, testParams, false)
}
func TestNpmInstallClientNative(t *testing.T) {
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
defer clientTestUtils.ChangeDirAndAssert(t, wd)
npmVersion, _, err := buildutils.GetNpmVersionAndExecPath(log.Logger)
if err != nil {
assert.NoError(t, err)
return
}
buildNumber := "1"
npmProjectDirectory := initNpmProjectTest(t)
configFilePath := filepath.Join(npmProjectDirectory, ".jfrog", "projects", "npm.yaml")
err = createNpmrcForTesting(t, configFilePath)
assert.NoError(t, err)
clientTestUtils.ChangeDirAndAssert(t, npmProjectDirectory)
npmrcFileInfo, err := os.Stat(".npmrc")
if err != nil && os.IsNotExist(err) {
assert.Fail(t, err.Error())
}
packageJsonPath := npmProjectDirectory + "/package.json"
moduleName := readModuleId(t, packageJsonPath, npmVersion)
runJfrogCli(t, "npm", "i", "--run-native=true", "--build-name="+tests.NpmBuildName, "--build-number="+buildNumber)
validateNpmLocalBuildInfo(t, tests.NpmBuildName, buildNumber, moduleName)
assert.NoError(t, artifactoryCli.Exec("bp", tests.NpmBuildName, buildNumber))
npmTest := npmTestParams{
testName: "npm with run-native",
buildNumber: buildNumber,
npmArgs: "--run-native=true",
}
validateNpmInstall(t, npmTest, isNpm7(npmVersion))
postTestFileInfo, postTestFileInfoErr := os.Stat(".npmrc")
validateNpmrcFileInfo(t, npmTest, npmrcFileInfo, postTestFileInfo, err, postTestFileInfoErr)
validateIfFileWasEverModified(t, npmrcFileInfo, postTestFileInfo)
}
func createNpmrcForTesting(t *testing.T, configFilePath string) (err error) {
// Creation of npmrc - npmCommand.CreateTempNpmrc() function is used to create a npmrc file
npmCommand := npm.NewNpmCommand("install", true)
npmCommand.SetConfigFilePath(configFilePath)
npmCommand.SetServerDetails(serverDetails)
err = npmCommand.Init()
assert.NoError(t, err)
err = npmCommand.PreparePrerequisites(tests.NpmRepo)
assert.NoError(t, err)
err = npmCommand.CreateTempNpmrc()
return
}
func publishUsingNpmrc(configFilePath string, buildNumber string) (npm.NpmPublishCommand, error) {
args := []string{"--run-native=true", "--build-name=" + tests.NpmBuildName, "--build-number=" + buildNumber}
npmpCmd := npm.NewNpmPublishCommand()
npmpCmd.SetConfigFilePath(configFilePath).SetArgs(args)
err := npmpCmd.Init()
if err != nil {
return *npmpCmd, err
}
err = commands.Exec(npmpCmd)
if err != nil {
return *npmpCmd, err
}
return *npmpCmd, err
}
func readModuleId(t *testing.T, wd string, npmVersion *version.Version) string {
packageInfo, err := buildutils.ReadPackageInfoFromPackageJsonIfExists(filepath.Dir(wd), npmVersion)
assert.NoError(t, err)
return packageInfo.BuildInfoModuleId()
}
func addNpmScopeRegistryToNpmRc(t *testing.T, projectPath string, packageJsonPath string, npmVersion *version.Version) {
scope := getScopeFromPackageJson(t, packageJsonPath, npmVersion)
authConfig, err := serverDetails.CreateArtAuthConfig()
assert.NoError(t, err)
_, registry, err := utils2.GetArtifactoryNpmRepoDetails(tests.NpmScopedRepo, authConfig, false)
assert.NoError(t, err)
scopedRegistry := scope + ":registry=" + registry
npmrcFilePath := filepath.Join(projectPath, ".npmrc")
npmrcFile, err := os.OpenFile(npmrcFilePath, os.O_APPEND|os.O_WRONLY, 0644)
assert.NoError(t, err)
defer func() {
_ = npmrcFile.Close()
}()
_, err = npmrcFile.WriteString(scopedRegistry)
assert.NoError(t, err)
}
func getScopeFromPackageJson(t *testing.T, wd string, npmVersion *version.Version) string {
packageInfo, err := buildutils.ReadPackageInfoFromPackageJsonIfExists(filepath.Dir(wd), npmVersion)
assert.NoError(t, err)
return packageInfo.Scope
}
func TestNpmWithGlobalConfig(t *testing.T) {
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
defer clientTestUtils.ChangeDirAndAssert(t, wd)
npmProjectPath := initGlobalNpmFilesTest(t)
clientTestUtils.ChangeDirAndAssert(t, filepath.Dir(npmProjectPath))
runJfrogCli(t, "npm", "install", "--build-name="+tests.NpmBuildName, "--build-number=1", "--module="+ModuleNameJFrogTest)
validateNpmLocalBuildInfo(t, tests.NpmBuildName, "1", ModuleNameJFrogTest)
}
func validateNpmLocalBuildInfo(t *testing.T, buildName, buildNumber, moduleName string) {
buildInfoService := build.CreateBuildInfoService()
npmBuild, err := buildInfoService.GetOrCreateBuildWithProject(buildName, buildNumber, "")
assert.NoError(t, err)
bi, err := npmBuild.ToBuildInfo()
assert.NoError(t, err)
assert.NotEmpty(t, bi.Started)
if assert.Len(t, bi.Modules, 1) {
assert.Equal(t, moduleName, bi.Modules[0].Id)
assert.Equal(t, buildinfo.Npm, bi.Modules[0].Type)
}
}
func TestNpmWithoutPackageJson(t *testing.T) {
initNpmTest(t)
defer cleanNpmTest(t)
// Create temp dir that does not contain an npm project
tempDirPath, createTempDirCallback := coretests.CreateTempDirWithCallbackAndAssert(t)
defer createTempDirCallback()
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
chdirCallback := clientTestUtils.ChangeDirWithCallback(t, wd, tempDirPath)
defer chdirCallback()
// Run config to allow resolution from Artifactory
err = createConfigFileForTest([]string{tempDirPath}, tests.NpmRemoteRepo, "", t, project.Npm, false)
assert.NoError(t, err)
// Run npm install and make sure that package.json and package-lock.json were created
runJfrogCli(t, "npm", "i", "json@9.0.6", "--save-exact")
assert.FileExists(t, filepath.Join(tempDirPath, "package.json"))
assert.FileExists(t, filepath.Join(tempDirPath, "package-lock.json"))
}
func TestNpmConditionalUpload(t *testing.T) {
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
searchSpec, err := tests.CreateSpec(tests.SearchAllNpm)
assert.NoError(t, err)
npmVersion, _, err := buildutils.GetNpmVersionAndExecPath(log.Logger)
assert.NoError(t, err)
npmProjectPath := initNpmProjectTest(t)
clientTestUtils.ChangeDirAndAssert(t, npmProjectPath)
defer clientTestUtils.ChangeDirAndAssert(t, wd)
buildName := tests.NpmBuildName + "-scan"
buildNumber := "505"
runJfrogCli(t, []string{"npm", "install", "--build-name=" + buildName, "--build-number=" + buildNumber}...)
execFunc := func() error {
return runNpmConditionalUploadTest(buildName, buildNumber)
}
testConditionalUpload(t, execFunc, searchSpec, tests.GetNpmDeployedArtifacts(isNpm7(npmVersion))...)
}
func runNpmConditionalUploadTest(buildName, buildNumber string) (err error) {
configFilePath, exists, err := project.GetProjectConfFilePath(project.Npm)
if err != nil {
return
} else if !exists {
return errorutils.CheckErrorf("no config file was found!")
}
npmCmd := npm.NewNpmPublishCommand()
npmCmd.SetConfigFilePath(configFilePath).SetArgs([]string{"--scan", "--build-name=" + buildName, "--build-number=" + buildNumber})
if err = npmCmd.Init(); err != nil {
return err
}
printDeploymentView, detailedSummary := log.IsStdErrTerminal(), npmCmd.IsDetailedSummary()
if !detailedSummary {
npmCmd.SetDetailedSummary(printDeploymentView)
}
err = commands.Exec(npmCmd)
result := npmCmd.Result()
defer cliutils.CleanupResult(result, &err)
err = cliutils.PrintCommandSummary(npmCmd.Result(), detailedSummary, printDeploymentView, false, err)
return
}
func validateNpmrcFileInfo(t *testing.T, npmTest npmTestParams, npmrcFileInfo, postTestNpmrcFileInfo os.FileInfo, err, postTestFileInfoErr error) {
if postTestFileInfoErr != nil && !os.IsNotExist(postTestFileInfoErr) {
assert.Fail(t, postTestFileInfoErr.Error())
}
assert.False(t, err == nil && postTestFileInfoErr != nil, ".npmrc file existed and was not restored at the end of the install command.")
assert.False(t, err != nil && postTestFileInfoErr == nil, ".npmrc file was not deleted at the end of the install command.")
assert.False(t, err == nil && postTestFileInfoErr == nil && (npmrcFileInfo.Mode() != postTestNpmrcFileInfo.Mode() || npmrcFileInfo.Size() != postTestNpmrcFileInfo.Size()),
".npmrc file was changed after running npm command! it was:\n%v\nnow it is:\n%v\nTest arguments are:\n%v", npmrcFileInfo, postTestNpmrcFileInfo, npmTest)
// make sue the temp .npmrc was deleted.
bcpNpmrc, err := os.Stat("jfrog.npmrc.backup")
if err != nil && !os.IsNotExist(err) {
assert.Fail(t, err.Error())
}
assert.Nil(t, bcpNpmrc, "The file 'jfrog.npmrc.backup' was supposed to be deleted but it was not when running the configuration:\n%v", npmTest)
}
// if file was backed up then it's mod time should be changed
func validateIfFileWasEverModified(t *testing.T, fileInfo, postTestFileInfo os.FileInfo) {
assert.Equal(t, fileInfo.ModTime(), postTestFileInfo.ModTime())
}
func initNpmFilesTest(t *testing.T) (npmProjectPath, npmScopedProjectPath, npmNpmrcProjectPath, npmProjectCi, npmPostInstallProjectPath string) {
npmProjectPath = createNpmProject(t, "npmproject")
npmScopedProjectPath = createNpmProject(t, "npmscopedproject")
npmNpmrcProjectPath = createNpmProject(t, "npmnpmrcproject")
npmProjectCi = createNpmProject(t, "npmprojectci")
npmPostInstallProjectPath = createNpmProject(t, "npmpostinstall")
_ = createNpmProject(t, filepath.Join("npmpostinstall", "subdir"))
err := createConfigFileForTest([]string{filepath.Dir(npmProjectPath), filepath.Dir(npmScopedProjectPath),
filepath.Dir(npmNpmrcProjectPath), filepath.Dir(npmProjectCi), filepath.Dir(npmPostInstallProjectPath)}, tests.NpmRemoteRepo, tests.NpmRepo, t, project.Npm, false)
assert.NoError(t, err)
prepareArtifactoryForNpmBuild(t, filepath.Dir(npmProjectPath))
prepareArtifactoryForNpmBuild(t, filepath.Dir(npmProjectCi))
prepareArtifactoryForNpmBuild(t, filepath.Dir(npmPostInstallProjectPath))
return
}
func initNpmProjectTest(t *testing.T) (npmProjectPath string) {
npmProjectPath = filepath.Dir(createNpmProject(t, "npmproject"))
err := createConfigFileForTest([]string{npmProjectPath}, tests.NpmRemoteRepo, tests.NpmRepo, t, project.Npm, false)
assert.NoError(t, err)
prepareArtifactoryForNpmBuild(t, npmProjectPath)
return
}
func initNpmPublishRcProjectTest(t *testing.T, projectName string) (npmProjectPath string) {
npmProjectPath = filepath.Dir(createNpmProject(t, projectName))
err := createConfigFileForTest([]string{npmProjectPath}, tests.NpmRemoteRepo, tests.NpmRepo, t, project.Npm, false)
assert.NoError(t, err)
prepareArtifactoryForNpmBuild(t, npmProjectPath)
return
}
func initNpmWorkspacesProjectTest(t *testing.T) (npmProjectPath string) {
npmProjectPath = filepath.Dir(createNpmProject(t, "npmworkspaces"))
err := createConfigFileForTest([]string{npmProjectPath}, tests.NpmRemoteRepo, tests.NpmRepo, t, project.Npm, false)
assert.NoError(t, err)
testFolder := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "npm", "npmworkspaces")
err = biutils.CopyDir(testFolder, npmProjectPath, true, []string{})
assert.NoError(t, err)
prepareArtifactoryForNpmBuild(t, npmProjectPath)
return
}
func initGlobalNpmFilesTest(t *testing.T) (npmProjectPath string) {
npmProjectPath = createNpmProject(t, "npmproject")
jfrogHomeDir, err := coreutils.GetJfrogHomeDir()
assert.NoError(t, err)
err = createConfigFileForTest([]string{jfrogHomeDir}, tests.NpmRemoteRepo, tests.NpmRepo, t, project.Npm, true)
assert.NoError(t, err)
prepareArtifactoryForNpmBuild(t, filepath.Dir(npmProjectPath))
return
}
func createNpmProject(t *testing.T, dir string) string {
srcPackageJson := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "npm", dir, "package.json")
targetPackageJson := filepath.Join(tests.Out, dir)
packageJson, err := tests.ReplaceTemplateVariables(srcPackageJson, targetPackageJson)
assert.NoError(t, err)
// failure can be ignored
npmrcExists, err := fileutils.IsFileExists(filepath.Join(filepath.Dir(srcPackageJson), ".npmrc"), false)
assert.NoError(t, err)
if npmrcExists {
_, err = tests.ReplaceTemplateVariables(filepath.Join(filepath.Dir(srcPackageJson), ".npmrc"), targetPackageJson)
assert.NoError(t, err)
}
packageJson, err = filepath.Abs(packageJson)
assert.NoError(t, err)
return packageJson
}
func validateNpmInstall(t *testing.T, npmTestParams npmTestParams, isNpm7 bool) {
expectedDependencies := []expectedDependency{{id: "xml:1.0.1", scopes: []string{"prod"}}}
if !strings.Contains(npmTestParams.npmArgs, "-only=prod") && !strings.Contains(npmTestParams.npmArgs, "-production") {
expectedDependencies = append(expectedDependencies, expectedDependency{id: "json:9.0.6", scopes: []string{"dev"}})
}
publishedBuildInfo, found, err := tests.GetBuildInfo(serverDetails, tests.NpmBuildName, npmTestParams.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 buildInfo.Modules == nil {
assert.NotNil(t, buildInfo.Modules)
return
}
assert.NotEmpty(t, buildInfo.Modules)
equalDependenciesSlices(t, expectedDependencies, buildInfo.Modules[0].Dependencies)
}
type expectedDependency struct {
id string
scopes []string
}
func validateNpmPublish(t *testing.T, npmTestParams npmTestParams, isNpm7 bool) {
verifyExistInArtifactoryByProps(tests.GetNpmDeployedArtifacts(isNpm7),
tests.NpmRepo+"/*",
fmt.Sprintf("build.name=%v;build.number=%v;build.timestamp=*", tests.NpmBuildName, npmTestParams.buildNumber), t)
validateNpmCommonPublish(t, npmTestParams, isNpm7, false)
}
func validateNpmScopedPublish(t *testing.T, npmTestParams npmTestParams, isNpm7 bool) {
verifyExistInArtifactoryByProps(tests.GetNpmDeployedScopedArtifacts(npmTestParams.repo, isNpm7),
npmTestParams.repo+"/*",
fmt.Sprintf("build.name=%v;build.number=%v;build.timestamp=*", tests.NpmBuildName, npmTestParams.buildNumber), t)
validateNpmCommonPublish(t, npmTestParams, isNpm7, true)
}
func validateNpmCommonPublish(t *testing.T, npmTestParams npmTestParams, isNpm7, isScoped bool) {
publishedBuildInfo, found, err := tests.GetBuildInfo(serverDetails, tests.NpmBuildName, npmTestParams.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
expectedArtifactName := tests.GetNpmArtifactName(isNpm7, isScoped)
if len(buildInfo.Modules) == 0 {
// Case no module was created
assert.Fail(t, "npm publish test failed", "params: \n%v \nexpected to have module with the following artifact: \n%v \nbut has no modules: \n%v",
npmTestParams, expectedArtifactName, buildInfo)
return
}
// The checksums are ignored when comparing the actual and the expected
assert.Len(t, buildInfo.Modules[0].Artifacts, 1, "npm publish test with the arguments: \n%v \nexpected to have the following artifact: \n%v \nbut has: \n%v",
npmTestParams, expectedArtifactName, buildInfo.Modules[0].Artifacts)
assert.Equal(t, npmTestParams.moduleName, buildInfo.Modules[0].Id, "npm publish test with the arguments: \n%v \nexpected to have the following module name: \n%v \nbut has: \n%v",
npmTestParams, npmTestParams.moduleName, buildInfo.Modules[0].Id)
assert.Equal(t, expectedArtifactName, buildInfo.Modules[0].Artifacts[0].Name, "npm publish test with the arguments: \n%v \nexpected to have the following artifact: \n%v \nbut has: \n%v",
npmTestParams, expectedArtifactName, buildInfo.Modules[0].Artifacts[0].Name)
}
func prepareArtifactoryForNpmBuild(t *testing.T, workingDirectory string) {
clientTestUtils.ChangeDirAndAssert(t, workingDirectory)
caches := ioutils.DoubleWinPathSeparator(filepath.Join(workingDirectory, "caches"))
// Run install with -cache argument to download the artifacts from Artifactory
// This done to be sure the artifacts exists in Artifactory
jfrogCli := coretests.NewJfrogCli(execMain, "jfrog", "")
assert.NoError(t, jfrogCli.Exec("npm", "install", "-cache="+caches))
clientTestUtils.RemoveAllAndAssert(t, filepath.Join(workingDirectory, "node_modules"))
clientTestUtils.RemoveAllAndAssert(t, caches)
}
func initNpmTest(t *testing.T) {
if !*tests.TestNpm {
t.Skip("Skipping Npm test. To run Npm test add the '-test.npm=true' option.")
}
createJfrogHomeConfig(t, true)
}
func TestNpmPublishDetailedSummary(t *testing.T) {
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
defer clientTestUtils.ChangeDirAndAssert(t, wd)
npmVersion, _, err := buildutils.GetNpmVersionAndExecPath(log.Logger)
if err != nil {
assert.NoError(t, err)
return
}
// Init npm project & npmp command for testing
npmProjectPath := initNpmProjectTest(t)
configFilePath := filepath.Join(npmProjectPath, ".jfrog", "projects", "npm.yaml")
args := []string{"--detailed-summary=true"}
npmpCmd := npm.NewNpmPublishCommand()
npmpCmd.SetConfigFilePath(configFilePath).SetArgs(args)
assert.NoError(t, npmpCmd.Init())
err = commands.Exec(npmpCmd)
assert.NoError(t, err)
result := npmpCmd.Result()
assert.NotNil(t, result)
reader := result.Reader()
readerGetErrorAndAssert(t, reader)
defer readerCloseAndAssert(t, reader)
// Read result
var files []clientutils.FileTransferDetails
for transferDetails := new(clientutils.FileTransferDetails); reader.NextRecord(transferDetails) == nil; transferDetails = new(clientutils.FileTransferDetails) {
files = append(files, *transferDetails)
}
if files == nil {
assert.NotNil(t, files)
return
}
// Verify deploy details
tarballName := "jfrog-cli-tests-v1.0.0.tgz"
// In npm under v7 prefix is removed.
if npmVersion.Compare("7.0.0") > 0 {
tarballName = "jfrog-cli-tests-1.0.0.tgz"
}
expectedSourcePath := filepath.Join(npmProjectPath, tarballName)
expectedTargetPath := serverDetails.ArtifactoryUrl + tests.NpmRepo + "/jfrog-cli-tests/-/" + tarballName
assert.Equal(t, expectedSourcePath, files[0].SourcePath, "Summary validation failed - unmatched SourcePath.")
assert.Equal(t, expectedTargetPath, files[0].RtUrl+files[0].TargetPath, "Summary validation failed - unmatched TargetPath.")
assert.Equal(t, 1, len(files), "Summary validation failed - only one archive should be deployed.")
// Verify sha256 is valid (a string size 256 characters) and not an empty string.
assert.Equal(t, 64, len(files[0].Sha256), "Summary validation failed - sha256 should be in size 64 digits.")
}
func TestNpmDistTag(t *testing.T) {
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
npmPath := initNpmProjectTest(t)
chdirCallBack := clientTestUtils.ChangeDirWithCallback(t, wd, npmPath)
defer chdirCallBack()
jfrogCli := coretests.NewJfrogCli(execMain, "jfrog", "")
// Publish package with tag.
tagP := "tag-from-publish"
assert.NoError(t, jfrogCli.Exec("npm", "p", "--tag="+tagP))
// Add tag using dist-tag add command.
tagDt := "tag-from-dist-tag"
assert.NoError(t, jfrogCli.Exec("npm", "dist-tag", "add", "jfrog-cli-tests@v1.0.0", tagDt))
assertDistTagsExist(t, []string{tagP, tagDt, "latest"})
}
func assertDistTagsExist(t *testing.T, expectedTags []string) {
searchSpecBuilder := spec.NewBuilder().Pattern(tests.NpmRepo + "/*jfrog-cli-tests*1.0.0.tgz").Recursive(true)
searchCmd := generic.NewSearchCommand()
searchCmd.SetServerDetails(serverDetails)
searchCmd.SetSpec(searchSpecBuilder.BuildSpec())
reader, err := searchCmd.Search()
assert.NoError(t, err)
readerGetErrorAndAssert(t, reader)
defer readerCloseAndAssert(t, reader)
length, err := reader.Length()
assert.NoError(t, err)
if !assert.Equal(t, length, 1) {
return
}
for resultItem := new(utils.SearchResult); reader.NextRecord(resultItem) == nil; resultItem = new(utils.SearchResult) {
assert.ElementsMatch(t, resultItem.Props[npm.DistTagPropKey], expectedTags)
}
}
func TestNpmPublishWithDeploymentView(t *testing.T) {
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
npmPath := initNpmProjectTest(t)
chdirCallBack := clientTestUtils.ChangeDirWithCallback(t, wd, npmPath)
defer chdirCallBack()
assertPrintedDeploymentViewFunc, cleanupFunc := initDeploymentViewTest(t)
defer cleanupFunc()
runGenericNpm(t, "npm", "publish")
// Check deployment view
assertPrintedDeploymentViewFunc()
}
func TestNpmPackInstall(t *testing.T) {
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
defer clientTestUtils.ChangeDirAndAssert(t, wd)
command := "npm i"
testWorkingDir, err := filepath.Abs(createNpmProject(t, "npmnpmrcproject"))
assert.NoError(t, err)
err = createConfigFileForTest([]string{filepath.Dir(testWorkingDir)}, tests.NpmRemoteRepo, tests.NpmRepo, t, project.Npm, false)
assert.NoError(t, err)
clientTestUtils.ChangeDirAndAssert(t, filepath.Dir(testWorkingDir))
// Temporarily change the cache folder to a temporary folder - to make sure the cache is clean and dependencies will be downloaded from Artifactory
tempCacheDirPath, createTempDirCallback := coretests.CreateTempDirWithCallbackAndAssert(t)
defer createTempDirCallback()
buildNumber := "999"
commandArgs := strings.Split(command, " ")
commandArgs = append(commandArgs, "yaml")
// Temporarily change the cache folder to a temporary folder - to make sure the cache is clean and dependencies will be downloaded from Artifactory
commandArgs = append(commandArgs, "--cache="+tempCacheDirPath)
commandArgs = append(commandArgs, "--build-name="+tests.NpmBuildName, "--build-number="+buildNumber)
runJfrogCli(t, commandArgs...)
// Validate that no dependencies were collected
buildInfoService := build.CreateBuildInfoService()
npmBuild, err := buildInfoService.GetOrCreateBuild(tests.NpmBuildName, buildNumber)
assert.NoError(t, err)
defer func() {
assert.NoError(t, npmBuild.Clean())
}()
npmBuildInfo, err := npmBuild.ToBuildInfo()
assert.NoError(t, err)
assert.NotNil(t, npmBuildInfo)
assert.Len(t, npmBuildInfo.Modules, 0)
}
// Test npm publish --workspaces command
// When using the -w flag npm itself knows to handle multiple modules,
// And the CLI needs to know to publish multiple packages.
// Workspaces has been introduced in npm v7.0.0+
// Read more about npm workspaces here: https://docs.npmjs.com/cli/v7/using-npm/workspaces
func TestNpmPublishWithWorkspaces(t *testing.T) {
if coreutils.IsWindows() {
t.Skip("JGC-417 - Test is flaky on Windows, skipping...")
}
// Check npm version
npmVersion, _, err := buildutils.GetNpmVersionAndExecPath(log.Logger)
if err != nil {
assert.NoError(t, err)
return
}
// In npm under v7 skip test
if npmVersion.Compare(minimumWorkspacesNpmVersion) > 0 {
log.Info("Test skipped as this function in not supported in npm version " + npmVersion.GetVersion())
return
}
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
defer clientTestUtils.ChangeDirAndAssert(t, wd)
// Init npm project & npmp command for testing
npmProjectPath := initNpmWorkspacesProjectTest(t)
configFilePath := filepath.Join(npmProjectPath, ".jfrog", "projects", "npm.yaml")
// Add build info parameters
buildName := tests.NpmBuildName + "-workspaces"
buildNumber := "789"
args := []string{"--detailed-summary=true", "--workspaces", "--verbose",
"--build-name=" + buildName, "--build-number=" + buildNumber}
npmpCmd := npm.NewNpmPublishCommand()
npmpCmd.SetConfigFilePath(configFilePath).SetArgs(args)
npmpCmd.SetNpmArgs(args)
assert.NoError(t, npmpCmd.Init())
err = commands.Exec(npmpCmd)
assert.NoError(t, err)
files := assertNpmPublishResultFiles(t, npmpCmd)
expectedTars := []string{"nested1", "nested2"}
for index, tar := range expectedTars {
// Verify deploy details
tarballName := tar + "-1.0.0.tgz"
expectedSourcePath := filepath.Join(npmProjectPath, tarballName)
expectedTargetPath := serverDetails.ArtifactoryUrl + tests.NpmRepo + "/" + tar + "/-/" + tarballName
assert.Equal(t, expectedSourcePath, files[index].SourcePath, "Summary validation failed - unmatched SourcePath.")
assert.Equal(t, expectedTargetPath, files[index].RtUrl+files[index].TargetPath, "Summary validation failed - unmatched TargetPath.")
assert.Equal(t, len(expectedTars), len(files), "Summary validation failed - two archive should be deployed.")
assert.Len(t, files[index].Sha256, 64)
}
// Validate build info was created
buildInfoService := build.CreateBuildInfoService()
npmBuild, err := buildInfoService.GetOrCreateBuild(buildName, buildNumber)
assert.NoError(t, err)
defer func() {
assert.NoError(t, npmBuild.Clean())
}()
npmBuildInfo, err := npmBuild.ToBuildInfo()
assert.NoError(t, err)
assert.NotNil(t, npmBuildInfo)
assert.NotEmpty(t, npmBuildInfo.Started)
// Should have multiple modules for workspaces (one per workspace package)
assert.GreaterOrEqual(t, len(npmBuildInfo.Modules), 1, "There should be a single module created as part of workspaces publish")
module := npmBuildInfo.Modules[0]
assert.NotEmpty(t, module.Id, "Module %d should have an ID")
assert.Equal(t, buildinfo.Npm, module.Type, "Module %d should be npm type")
assert.Equal(t, len(module.Artifacts), 2, "Module %d should have artifacts")
// Validate artifact properties
for j, artifact := range module.Artifacts {
assert.NotEmpty(t, artifact.Name, "Artifact %d in module %d should have a name", j)
assert.NotEmpty(t, artifact.Path, "Artifact %d in module %d should have a path", j)
assert.NotEmpty(t, artifact.Sha1, "Artifact %d in module %d should have SHA1", j)
assert.NotEmpty(t, artifact.Sha256, "Artifact %d in module %d should have SHA256", j)
assert.NotEmpty(t, artifact.Md5, "Artifact %d in module %d should have MD5", j)
assert.True(t, containsTarName(artifact.Name, expectedTars))
}
// Publish build info to Artifactory
assert.NoError(t, artifactoryCli.Exec("bp", buildName, buildNumber))
// Clean up
inttestutils.DeleteBuild(serverDetails.ArtifactoryUrl, buildName, artHttpDetails)
}
func TestNpmPublishWithWorkspacesRunNative(t *testing.T) {
if coreutils.IsWindows() {
t.Skip("JGC-417 - Test is flaky on Windows, skipping...")
}
// Check npm version
npmVersion, _, err := buildutils.GetNpmVersionAndExecPath(log.Logger)
if err != nil {
assert.NoError(t, err)
return
}
// In npm under v7 skip test
if npmVersion.Compare(minimumWorkspacesNpmVersion) > 0 {
log.Info("Test skipped as this function in not supported in npm version " + npmVersion.GetVersion())
return
}
initNpmTest(t)
defer cleanNpmTest(t)
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
defer clientTestUtils.ChangeDirAndAssert(t, wd)
// Init npm project & npmp command for testing
npmProjectPath := initNpmWorkspacesProjectTest(t)
configFilePath := filepath.Join(npmProjectPath, ".jfrog", "projects", "npm.yaml")
// Create npmrc for run-native functionality
err = createNpmrcForTesting(t, configFilePath)
assert.NoError(t, err)
// Add build info parameters with run-native flag
buildName := tests.NpmBuildName + "-workspaces-native"
buildNumber := "890"
args := []string{"--workspaces", "--build-name=" + buildName, "--build-number=" + buildNumber, "--run-native"}
npmpCmd := npm.NewNpmPublishCommand()
npmpCmd.SetConfigFilePath(configFilePath).SetArgs(args)
assert.NoError(t, npmpCmd.Init())
err = commands.Exec(npmpCmd)
assert.NoError(t, err)
expectedTars := []string{"nested1", "nested2"}
// Validate build info was created
buildInfoService := build.CreateBuildInfoService()
npmBuild, err := buildInfoService.GetOrCreateBuild(buildName, buildNumber)
assert.NoError(t, err)
defer func() {
assert.NoError(t, npmBuild.Clean())
}()
npmBuildInfo, err := npmBuild.ToBuildInfo()
assert.NoError(t, err)
assert.NotNil(t, npmBuildInfo)
assert.NotEmpty(t, npmBuildInfo.Started)
// Should have single module with multiple artifacts for workspaces with run-native
assert.GreaterOrEqual(t, len(npmBuildInfo.Modules), 1, "There should be a single module created as part of workspaces publish with run-native")
module := npmBuildInfo.Modules[0]
assert.NotEmpty(t, module.Id, "Module should have an ID")
assert.Equal(t, buildinfo.Npm, module.Type, "Module should be npm type")
assert.Equal(t, len(module.Artifacts), 2, "Module should have exactly 2 artifacts for workspaces")
// Validate artifact properties
for j, artifact := range module.Artifacts {
assert.NotEmpty(t, artifact.Name, "Artifact %d should have a name", j)
assert.NotEmpty(t, artifact.Path, "Artifact %d should have a path", j)
assert.NotEmpty(t, artifact.Sha1, "Artifact %d should have SHA1", j)
assert.NotEmpty(t, artifact.Sha256, "Artifact %d should have SHA256", j)
assert.NotEmpty(t, artifact.Md5, "Artifact %d should have MD5", j)
assert.True(t, containsTarName(artifact.Name, expectedTars))
}
// Publish build info to Artifactory
assert.NoError(t, artifactoryCli.Exec("bp", buildName, buildNumber))
// Clean up
inttestutils.DeleteBuild(serverDetails.ArtifactoryUrl, buildName, artHttpDetails)
}
// Test npm publish command with provided tarball
func TestNpmPackProvidedTarball(t *testing.T) {
// Check npm version
npmVersion, _, err := buildutils.GetNpmVersionAndExecPath(log.Logger)
if err != nil {
assert.NoError(t, err)
return
}
// In npm under v7 skip test
if npmVersion.Compare(minimumWorkspacesNpmVersion) > 0 {
log.Info("Test skipped as this function in not supported in npm version " + npmVersion.GetVersion())
return
}
// Prepare test
initNpmTest(t)
defer cleanNpmTest(t)
tempDirPath, createTempDirCallback := coretests.CreateTempDirWithCallbackAndAssert(t)
defer createTempDirCallback()
testFolder := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "npm", "npmprovidedtarball")
err = biutils.CopyDir(testFolder, tempDirPath, false, []string{})
assert.NoError(t, err)
// CD inside the copied project and create npm config
wd, err := os.Getwd()
assert.NoError(t, err)
chdirCallback := clientTestUtils.ChangeDirWithCallback(t, wd, tempDirPath)
defer chdirCallback()
err = createConfigFileForTest([]string{tempDirPath}, tests.NpmRemoteRepo, tests.NpmRepo, t, project.Npm, false)
assert.NoError(t, err)
// Init npm project & npmp command for testing
configFilePath := filepath.Join(tempDirPath, ".jfrog", "projects", "npm.yaml")
args := []string{"jfrog-cli-tests-v1.0.0.tgz", "--detailed-summary=true", "--workspaces", "--verbose"}
npmpCmd := npm.NewNpmPublishCommand()
npmpCmd.SetConfigFilePath(configFilePath).SetArgs(args)
npmpCmd.SetNpmArgs(args)
assert.NoError(t, npmpCmd.Init())
err = commands.Exec(npmpCmd)
assert.NoError(t, err)
// Check result
assertNpmPublishResultFiles(t, npmpCmd)
}
func TestYarn(t *testing.T) {
initNpmTest(t)
defer cleanNpmTest(t)
// Temporarily change the cache folder to a temporary folder - to make sure the cache is clean and dependencies will be downloaded from Artifactory
tempDirPath, createTempDirCallback := coretests.CreateTempDirWithCallbackAndAssert(t)
defer createTempDirCallback()
testDataSource := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "yarn")
testDataTarget := filepath.Join(tempDirPath, tests.Out, "yarn")
assert.NoError(t, biutils.CopyDir(testDataSource, testDataTarget, true, nil))
yarnProjectPath := filepath.Join(testDataTarget, "yarnprojectV2")
assert.NoError(t, createConfigFileForTest([]string{yarnProjectPath}, tests.NpmRemoteRepo, "", t, project.Yarn, false))
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
chdirCallback := clientTestUtils.ChangeDirWithCallback(t, wd, yarnProjectPath)
defer chdirCallback()
cleanUpYarnGlobalFolder := clientTestUtils.SetEnvWithCallbackAndAssert(t, "YARN_GLOBAL_FOLDER", tempDirPath)
defer cleanUpYarnGlobalFolder()
// Add "localhost" to http whitelist
yarnExecPath, err := exec.LookPath("yarn")
assert.NoError(t, err)
// Get original http white list config
origWhitelist, err := yarn.ConfigGet("unsafeHttpWhitelist", yarnExecPath, true)
assert.NoError(t, err)
assert.NoError(t, yarn.ConfigSet("unsafeHttpWhitelist", "[\"localhost\"]", yarnExecPath, true))
defer func() {
// Restore original whitelist config
assert.NoError(t, yarn.ConfigSet("unsafeHttpWhitelist", origWhitelist, yarnExecPath, true))
}()
jfrogCli := coretests.NewJfrogCli(execMain, "jfrog", "")
assert.NoError(t, jfrogCli.Exec("yarn", "--build-name="+tests.YarnBuildName, "--build-number=1", "--module="+ModuleNameJFrogTest))
validateNpmLocalBuildInfo(t, tests.YarnBuildName, "1", ModuleNameJFrogTest)
assert.NoError(t, artifactoryCli.WithoutCredentials().Exec("bp", tests.YarnBuildName, "1"))
publishedBuildInfo, found, err := tests.GetBuildInfo(serverDetails, tests.YarnBuildName, "1")
assert.NoError(t, err)
assert.True(t, found)
if assert.NotNil(t, publishedBuildInfo) && assert.NotNil(t, publishedBuildInfo.BuildInfo) {
assert.Equal(t, 1, len(publishedBuildInfo.BuildInfo.Modules))
if len(publishedBuildInfo.BuildInfo.Modules) > 0 {
assert.Equal(t, buildinfo.Npm, publishedBuildInfo.BuildInfo.Modules[0].Type)
assert.Equal(t, "jfrog-test", publishedBuildInfo.BuildInfo.Modules[0].Id)