forked from jfrog/jfrog-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pip_test.go
224 lines (193 loc) · 7.5 KB
/
pip_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
package main
import (
"fmt"
"io"
"os"
"os/exec"
"path/filepath"
"strconv"
"testing"
gofrogcmd "github.com/jfrog/gofrog/io"
"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/utils/io/fileutils"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type PipCmd struct {
Command string
Options []string
}
func TestPipInstall(t *testing.T) {
// Init pip.
initPipTest(t)
// Add virtual-environment path to 'PATH' for executing all pip and python commands inside the virtual-environment.
pathValue := setPathEnvForPipInstall(t)
if t.Failed() {
t.FailNow()
}
defer os.Setenv("PATH", pathValue)
// Check pip env is clean.
validateEmptyPipEnv(t)
// Populate cli config with 'default' server.
oldHomeDir, newHomeDir := prepareHomeDir(t)
defer os.Setenv(coreutils.HomeDir, oldHomeDir)
defer os.RemoveAll(newHomeDir)
// Create test cases.
allTests := []struct {
name string
project string
outputFolder string
moduleId string
args []string
expectedDependencies int
cleanAfterExecution bool
}{
{"setuppy", "setuppyproject", "setuppy", "jfrog-python-example", []string{"pip-install", ".", "--no-cache-dir", "--force-reinstall", "--build-name=" + tests.PipBuildName}, 3, true},
{"setuppy-verbose", "setuppyproject", "setuppy-verbose", "jfrog-python-example", []string{"pip-install", ".", "--no-cache-dir", "--force-reinstall", "-v", "--build-name=" + tests.PipBuildName}, 3, true},
{"setuppy-with-module", "setuppyproject", "setuppy-with-module", "setuppy-with-module", []string{"pip-install", ".", "--no-cache-dir", "--force-reinstall", "--build-name=" + tests.PipBuildName, "--module=setuppy-with-module"}, 3, true},
{"requirements", "requirementsproject", "requirements", tests.PipBuildName, []string{"pip-install", "-r", "requirements.txt", "--no-cache-dir", "--force-reinstall", "--build-name=" + tests.PipBuildName}, 5, true},
{"requirements-verbose", "requirementsproject", "requirements-verbose", tests.PipBuildName, []string{"pip-install", "-r", "requirements.txt", "--no-cache-dir", "--force-reinstall", "-v", "--build-name=" + tests.PipBuildName}, 5, false},
{"requirements-use-cache", "requirementsproject", "requirements-verbose", "requirements-verbose-use-cache", []string{"pip-install", "-r", "requirements.txt", "--module=requirements-verbose-use-cache", "--build-name=" + tests.PipBuildName}, 5, true},
}
// Run test cases.
for buildNumber, test := range allTests {
t.Run(test.name, func(t *testing.T) {
testPipCmd(t, test.name, createPipProject(t, test.outputFolder, test.project), strconv.Itoa(buildNumber), test.moduleId, test.expectedDependencies, test.args)
if test.cleanAfterExecution {
// cleanup
inttestutils.DeleteBuild(artifactoryDetails.Url, tests.PipBuildName, artHttpDetails)
cleanPipTest(t, test.name)
}
})
}
cleanPipTest(t, "cleanup")
tests.CleanFileSystem()
}
func testPipCmd(t *testing.T, outputFolder, projectPath, buildNumber, module string, expectedDependencies int, args []string) {
wd, err := os.Getwd()
assert.NoError(t, err)
err = os.Chdir(projectPath)
assert.NoError(t, err)
defer os.Chdir(wd)
args = append(args, "--build-number="+buildNumber)
err = artifactoryCli.WithoutCredentials().Exec(args...)
if err != nil {
assert.Fail(t, "Failed executing pip-install command", err.Error())
cleanPipTest(t, outputFolder)
return
}
assert.NoError(t, artifactoryCli.Exec("bp", tests.PipBuildName, buildNumber))
publishedBuildInfo, found, err := tests.GetBuildInfo(artifactoryDetails, tests.PipBuildName, 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, "Pip build info was not generated correctly, no modules were created.")
assert.Len(t, buildInfo.Modules[0].Dependencies, expectedDependencies, "Incorrect number of artifacts found in the build-info")
assert.Equal(t, module, buildInfo.Modules[0].Id, "Unexpected module name")
}
func cleanPipTest(t *testing.T, outFolder string) {
// Clean pip environment from installed packages.
pipFreezeCmd := &PipCmd{Command: "freeze", Options: []string{"--local"}}
out, err := gofrogcmd.RunCmdOutput(pipFreezeCmd)
if err != nil {
t.Fatal(err)
}
// If no packages to uninstall, return.
if out == "" {
return
}
// Save freeze output to file.
freezeTarget, err := fileutils.CreateFilePath(tests.Temp, outFolder+"-freeze.txt")
assert.NoError(t, err)
file, err := os.Create(freezeTarget)
assert.NoError(t, err)
defer file.Close()
_, err = file.Write([]byte(out))
assert.NoError(t, err)
// Delete freezed packages.
pipUninstallCmd := &PipCmd{Command: "uninstall", Options: []string{"-y", "-r", freezeTarget}}
err = gofrogcmd.RunCmd(pipUninstallCmd)
if err != nil {
t.Fatal(err)
}
}
func createPipProject(t *testing.T, outFolder, projectName string) string {
projectSrc := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "pip", projectName)
projectTarget := filepath.Join(tests.Out, outFolder+"-"+projectName)
err := fileutils.CreateDirIfNotExist(projectTarget)
assert.NoError(t, err)
// Copy pip-installation file.
err = fileutils.CopyDir(projectSrc, projectTarget, true, nil)
assert.NoError(t, err)
// Copy pip-config file.
configSrc := filepath.Join(filepath.FromSlash(tests.GetTestResourcesPath()), "pip", "pip.yaml")
configTarget := filepath.Join(projectTarget, ".jfrog", "projects")
tests.ReplaceTemplateVariables(configSrc, configTarget)
return projectTarget
}
func initPipTest(t *testing.T) {
if !*tests.TestPip {
t.Skip("Skipping Pip test. To run Pip test add the '-test.pip=true' option.")
}
require.True(t, isRepoExist(tests.PypiRemoteRepo), "Pypi test remote repository doesn't exist.")
require.True(t, isRepoExist(tests.PypiVirtualRepo), "Pypi test virtual repository doesn't exist.")
}
func setPathEnvForPipInstall(t *testing.T) string {
// Keep original value of 'PATH'.
pathValue, exists := os.LookupEnv("PATH")
if !exists {
t.Fatal("Couldn't find PATH variable, failing pip tests.")
}
// Append the path.
virtualEnvPath := *tests.PipVirtualEnv
if virtualEnvPath != "" {
var newPathValue string
if coreutils.IsWindows() {
newPathValue = fmt.Sprintf("%s;%s", virtualEnvPath, pathValue)
} else {
newPathValue = fmt.Sprintf("%s:%s", virtualEnvPath, pathValue)
}
err := os.Setenv("PATH", newPathValue)
if err != nil {
t.Fatal(err)
}
}
// Return original PATH value.
return pathValue
}
// Ensure that the provided pip virtual-environment is empty from installed packages.
func validateEmptyPipEnv(t *testing.T) {
//pipFreezeCmd := &PipFreezeCmd{Executable: "pip", Command: "freeze"}
pipFreezeCmd := &PipCmd{Command: "freeze", Options: []string{"--local"}}
out, err := gofrogcmd.RunCmdOutput(pipFreezeCmd)
if err != nil {
t.Fatal(err)
}
if out != "" {
t.Fatalf("Provided pip virtual-environment contains installed packages: %s\n. Please provide a clean environment.", out)
}
}
func (pfc *PipCmd) GetCmd() *exec.Cmd {
var cmd []string
cmd = append(cmd, "pip")
cmd = append(cmd, pfc.Command)
cmd = append(cmd, pfc.Options...)
return exec.Command(cmd[0], cmd[1:]...)
}
func (pfc *PipCmd) GetEnv() map[string]string {
return map[string]string{}
}
func (pfc *PipCmd) GetStdWriter() io.WriteCloser {
return nil
}
func (pfc *PipCmd) GetErrWriter() io.WriteCloser {
return nil
}