-
Notifications
You must be signed in to change notification settings - Fork 234
/
pipenv_test.go
135 lines (116 loc) · 4.98 KB
/
pipenv_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
package main
import (
biutils "github.com/jfrog/build-info-go/utils"
"os"
"path/filepath"
"strconv"
"testing"
buildinfo "github.com/jfrog/build-info-go/entities"
"github.com/jfrog/jfrog-cli-core/v2/utils/coreutils"
coreTests "github.com/jfrog/jfrog-cli-core/v2/utils/tests"
"github.com/jfrog/jfrog-cli/inttestutils"
"github.com/jfrog/jfrog-cli/utils/tests"
"github.com/jfrog/jfrog-client-go/utils/io/fileutils"
clientTestUtils "github.com/jfrog/jfrog-client-go/utils/tests"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestPipenvInstall(t *testing.T) {
// Init pipenv test.
initPipenvTest(t)
// Populate cli config with 'default' server.
oldHomeDir, newHomeDir := prepareHomeDir(t)
defer func() {
assert.NoError(t, os.Setenv(coreutils.HomeDir, oldHomeDir))
assert.NoError(t, fileutils.RemoveTempDir(newHomeDir))
}()
// Create test cases.
allTests := []struct {
name string
project string
outputFolder string
moduleId string
args []string
cleanAfterExecution bool
}{
{"pipenv", "pipenvproject", "cli-pipenv-build", tests.PipenvBuildName, []string{"pipenv", "install", "--build-name=" + tests.PipenvBuildName}, true},
{"pipenv-with-module", "pipenvproject", "pipenv-with-module", "pipenv-with-module", []string{"pipenv", "install", "--build-name=" + tests.PipenvBuildName, "--module=pipenv-with-module"}, true},
}
// Run test cases.
for buildNumber, test := range allTests {
t.Run(test.name, func(t *testing.T) {
testPipenvCmd(t, createPipenvProject(t, test.outputFolder, test.project), strconv.Itoa(buildNumber), test.moduleId, test.args)
if test.cleanAfterExecution {
// cleanup
inttestutils.DeleteBuild(serverDetails.ArtifactoryUrl, tests.PipenvBuildName, artHttpDetails)
}
})
}
tests.CleanFileSystem()
}
func testPipenvCmd(t *testing.T, projectPath, buildNumber, module string, args []string) {
wd, err := os.Getwd()
assert.NoError(t, err, "Failed to get current dir")
chdirCallback := clientTestUtils.ChangeDirWithCallback(t, wd, projectPath)
defer chdirCallback()
// Set virtualenv path to project root, so it will be deleted after the test
unSetEnvCallback := clientTestUtils.SetEnvWithCallbackAndAssert(t, "PIPENV_VENV_IN_PROJECT", "true")
defer unSetEnvCallback()
args = append(args, "--build-number="+buildNumber)
jfrogCli := coreTests.NewJfrogCli(execMain, "jfrog", "")
err = jfrogCli.WithoutCredentials().Exec(args...)
if err != nil {
assert.Fail(t, "Failed executing pipenv-install command", err.Error())
return
}
inttestutils.ValidateGeneratedBuildInfoModule(t, tests.PipenvBuildName, buildNumber, "", []string{module}, buildinfo.Python)
assert.NoError(t, artifactoryCli.Exec("bp", tests.PipenvBuildName, buildNumber))
publishedBuildInfo, found, err := tests.GetBuildInfo(serverDetails, tests.PipenvBuildName, 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
require.NotEmpty(t, buildInfo.Modules, "Pipenv build info was not generated correctly, no modules were created.")
assert.Len(t, buildInfo.Modules[0].Dependencies, 3, "Incorrect number of artifacts found in the build-info")
assert.Equal(t, module, buildInfo.Modules[0].Id, "Unexpected module name")
assertPipenvDependenciesRequestedBy(t, buildInfo.Modules[0], module)
}
func assertPipenvDependenciesRequestedBy(t *testing.T, module buildinfo.Module, moduleName string) {
for _, dependency := range module.Dependencies {
switch dependency.Id {
case "toml:0.10.2", "pexpect:4.8.0":
assert.EqualValues(t, [][]string{{moduleName}}, dependency.RequestedBy)
case "ptyprocess:0.7.0":
assert.EqualValues(t, [][]string{{"pexpect:4.8.0", moduleName}}, dependency.RequestedBy)
default:
assert.Fail(t, "Unexpected dependency "+dependency.Id)
}
}
}
func createPipenvProject(t *testing.T, outFolder, projectName string) string {
projectSrc := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "pipenv", projectName)
projectTarget := filepath.Join(tests.Out, outFolder+"-"+projectName)
err := fileutils.CreateDirIfNotExist(projectTarget)
assert.NoError(t, err)
// Copy pipenv-installation file.
err = biutils.CopyDir(projectSrc, projectTarget, true, nil)
assert.NoError(t, err)
// Copy pipenv-config file.
configSrc := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "pipenv", "pipenv.yaml")
configTarget := filepath.Join(projectTarget, ".jfrog", "projects")
_, err = tests.ReplaceTemplateVariables(configSrc, configTarget)
assert.NoError(t, err)
return projectTarget
}
func initPipenvTest(t *testing.T) {
if !*tests.TestPipenv {
t.Skip("Skipping Pipenv test. To run Pipenv test add the '-test.pipenv=true' option.")
}
require.True(t, isRepoExist(tests.PipenvRemoteRepo), "Pypi test remote repository doesn't exist.")
require.True(t, isRepoExist(tests.PipenvVirtualRepo), "Pypi test virtual repository doesn't exist.")
}