-
Notifications
You must be signed in to change notification settings - Fork 0
/
detect_test.go
216 lines (187 loc) · 5.71 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
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
package noderunscript_test
import (
"os"
"path"
"path/filepath"
"testing"
noderunscript "github.com/initializ-buildpacks/node-run-script"
"github.com/paketo-buildpacks/packit/v2"
"github.com/paketo-buildpacks/packit/v2/fs"
"github.com/sclevine/spec"
. "github.com/onsi/gomega"
)
func testDetect(t *testing.T, context spec.G, it spec.S) {
var (
Expect = NewWithT(t).Expect
workingDir string
detect packit.DetectFunc
)
it.Before(func() {
var err error
workingDir, err = os.MkdirTemp("", "working-dir")
Expect(err).NotTo(HaveOccurred())
Expect(os.WriteFile(filepath.Join(workingDir, "package.json"), []byte(`{
"scripts": {
"build": "mybuildcommand --args",
"some-script": "somecommand --args"
}
}`), 0600)).To(Succeed())
detect = noderunscript.Detect(noderunscript.Environment{
NodeRunScripts: "build",
})
})
it.After(func() {
Expect(os.RemoveAll(workingDir)).To(Succeed())
})
context("when using npm", func() {
it("returns a plan that requires node and npm", func() {
result, err := detect(packit.DetectContext{
WorkingDir: workingDir,
})
Expect(err).NotTo(HaveOccurred())
Expect(result.Plan).To(Equal(packit.BuildPlan{
Requires: []packit.BuildPlanRequirement{
{
Name: "node",
Metadata: noderunscript.BuildPlanMetadata{Build: true},
},
{
Name: "npm",
Metadata: noderunscript.BuildPlanMetadata{Build: true},
},
{
Name: "node_modules",
Metadata: noderunscript.BuildPlanMetadata{Build: true},
},
},
}))
})
})
context("when using yarn", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "yarn.lock"), nil, 0600)).To(Succeed())
})
it("returns a plan that requires node and yarn", func() {
result, err := detect(packit.DetectContext{
WorkingDir: workingDir,
})
Expect(err).NotTo(HaveOccurred())
Expect(result.Plan).To(Equal(packit.BuildPlan{
Requires: []packit.BuildPlanRequirement{
{
Name: "node",
Metadata: noderunscript.BuildPlanMetadata{Build: true},
},
{
Name: "yarn",
Metadata: noderunscript.BuildPlanMetadata{Build: true},
},
{
Name: "node_modules",
Metadata: noderunscript.BuildPlanMetadata{Build: true},
},
},
}))
})
})
context("when env var $BP_NODE_RUN_SCRIPTS has spaces among commas", func() {
it.Before(func() {
detect = noderunscript.Detect(noderunscript.Environment{NodeRunScripts: "build, some-script"})
})
it("trims the whitespace and successfully detects the scripts", func() {
_, err := detect(packit.DetectContext{
WorkingDir: workingDir,
})
Expect(err).NotTo(HaveOccurred())
})
})
context("when env var $BP_NODE_RUN_SCRIPTS is empty", func() {
it.Before(func() {
detect = noderunscript.Detect(noderunscript.Environment{NodeRunScripts: ""})
})
it("fails detection", func() {
_, err := detect(packit.DetectContext{
WorkingDir: workingDir,
})
Expect(err).To(MatchError(packit.Fail.WithMessage(`script running has been deactivated: BP_NODE_RUN_SCRIPTS=""`)))
})
})
context("when env var $BP_NODE_PROJECT_PATH is set", func() {
it.Before(func() {
customPath, err := os.MkdirTemp(workingDir, "custom-project-path")
base := path.Base(customPath)
t.Setenv("BP_NODE_PROJECT_PATH", base)
Expect(err).NotTo(HaveOccurred())
customPath = filepath.Base(customPath)
Expect(os.WriteFile(filepath.Join(workingDir, customPath, "yarn.lock"), nil, 0600)).To(Succeed())
Expect(fs.Move(filepath.Join(workingDir, "package.json"), filepath.Join(workingDir, customPath, "package.json"))).To(Succeed())
detect = noderunscript.Detect(noderunscript.Environment{
NodeRunScripts: "build",
})
})
context("when the custom project path contains yarn.lock", func() {
it("returns a plan that requires node and yarn", func() {
result, err := detect(packit.DetectContext{
WorkingDir: workingDir,
})
Expect(err).NotTo(HaveOccurred())
Expect(result.Plan).To(Equal(packit.BuildPlan{
Requires: []packit.BuildPlanRequirement{
{
Name: "node",
Metadata: noderunscript.BuildPlanMetadata{Build: true},
},
{
Name: "yarn",
Metadata: noderunscript.BuildPlanMetadata{Build: true},
},
{
Name: "node_modules",
Metadata: noderunscript.BuildPlanMetadata{Build: true},
},
},
}))
})
})
})
context("failure cases", func() {
context("if package.json is absent", func() {
it.Before(func() {
Expect(os.Remove(filepath.Join(workingDir, "package.json"))).To(Succeed())
})
it("fails detection", func() {
_, err := detect(packit.DetectContext{
WorkingDir: workingDir,
})
Expect(err).To(MatchError(packit.Fail.WithMessage("no package.json file present")))
})
})
context("if any of the scripts in \"$BP_NODE_RUN_SCRIPTS\" does not exist in package.json", func() {
it.Before(func() {
detect = noderunscript.Detect(noderunscript.Environment{
NodeRunScripts: "build,script1,some-script,script2,script3",
})
})
it("returns an error", func() {
_, err := detect(packit.DetectContext{
WorkingDir: workingDir,
})
Expect(err).To(MatchError("could not find script(s) [script1 script2 script3] in package.json"))
})
})
context("if $BP_NODE_PROJECT_PATH leads to a directory that doesn't exist", func() {
it.Before(func() {
detect = noderunscript.Detect(noderunscript.Environment{
NodeRunScripts: "build",
})
t.Setenv("BP_NODE_PROJECT_PATH", "not_a_real_directory")
})
it("fails detection", func() {
_, err := detect(packit.DetectContext{
WorkingDir: workingDir,
})
Expect(err).To(HaveOccurred())
})
})
})
}