forked from paketo-buildpacks/pip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetect_test.go
183 lines (158 loc) · 4 KB
/
detect_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
package pip_test
import (
"os"
"testing"
"github.com/paketo-buildpacks/packit/v2"
"github.com/paketo-buildpacks/pip"
"github.com/sclevine/spec"
. "github.com/onsi/gomega"
)
func testDetect(t *testing.T, context spec.G, it spec.S) {
var (
Expect = NewWithT(t).Expect
detect packit.DetectFunc
detectContext packit.DetectContext
)
it.Before(func() {
detect = pip.Detect()
detectContext = packit.DetectContext{}
})
context("detection", func() {
it("returns a build plan that provides pip", func() {
result, err := detect(detectContext)
Expect(err).NotTo(HaveOccurred())
Expect(result.Plan).To(Equal(packit.BuildPlan{
Provides: []packit.BuildPlanProvision{
{Name: pip.Pip},
},
Requires: []packit.BuildPlanRequirement{
{
Name: pip.CPython,
Metadata: pip.BuildPlanMetadata{
Build: true,
},
},
},
}))
})
context("when BP_PIP_VERSION is set", func() {
it.Before(func() {
os.Setenv("BP_PIP_VERSION", "some-version")
})
it.After(func() {
os.Unsetenv("BP_PIP_VERSION")
})
it("returns a build plan that provides the version of pip from BP_PIP_VERSION", func() {
result, err := detect(detectContext)
Expect(err).NotTo(HaveOccurred())
Expect(result.Plan).To(Equal(packit.BuildPlan{
Provides: []packit.BuildPlanProvision{
{Name: pip.Pip},
},
Requires: []packit.BuildPlanRequirement{
{
Name: pip.CPython,
Metadata: pip.BuildPlanMetadata{
Build: true,
},
},
{
Name: pip.Pip,
Metadata: pip.BuildPlanMetadata{
Version: "some-version",
VersionSource: "BP_PIP_VERSION",
},
},
},
}))
})
context("when the provided version is of the form X.Y", func() {
it.Before(func() {
os.Setenv("BP_PIP_VERSION", "2.11")
})
it("selects the version X.Y.0", func() {
result, err := detect(detectContext)
Expect(err).NotTo(HaveOccurred())
Expect(result.Plan).To(Equal(packit.BuildPlan{
Provides: []packit.BuildPlanProvision{
{Name: pip.Pip},
},
Requires: []packit.BuildPlanRequirement{
{
Name: pip.CPython,
Metadata: pip.BuildPlanMetadata{
Build: true,
},
},
{
Name: pip.Pip,
Metadata: pip.BuildPlanMetadata{
Version: "2.11.0",
VersionSource: "BP_PIP_VERSION",
},
},
},
}))
})
})
context("when the provided version is of the form X.Y.Z", func() {
it.Before(func() {
os.Setenv("BP_PIP_VERSION", "22.1.3")
})
it("selects the exact provided version X.Y.Z", func() {
result, err := detect(detectContext)
Expect(err).NotTo(HaveOccurred())
Expect(result.Plan).To(Equal(packit.BuildPlan{
Provides: []packit.BuildPlanProvision{
{Name: pip.Pip},
},
Requires: []packit.BuildPlanRequirement{
{
Name: pip.CPython,
Metadata: pip.BuildPlanMetadata{
Build: true,
},
},
{
Name: pip.Pip,
Metadata: pip.BuildPlanMetadata{
Version: "22.1.3",
VersionSource: "BP_PIP_VERSION",
},
},
},
}))
})
})
context("when the provided version is of some other form", func() {
it.Before(func() {
os.Setenv("BP_PIP_VERSION", "some.other")
})
it("selects the exact provided version", func() {
result, err := detect(detectContext)
Expect(err).NotTo(HaveOccurred())
Expect(result.Plan).To(Equal(packit.BuildPlan{
Provides: []packit.BuildPlanProvision{
{Name: pip.Pip},
},
Requires: []packit.BuildPlanRequirement{
{
Name: pip.CPython,
Metadata: pip.BuildPlanMetadata{
Build: true,
},
},
{
Name: pip.Pip,
Metadata: pip.BuildPlanMetadata{
Version: "some.other",
VersionSource: "BP_PIP_VERSION",
},
},
},
}))
})
})
})
})
}