Skip to content

Commit 1e85346

Browse files
committed
Confirm that fast npm install works even if you delete node_modules #310
1 parent 92e1d21 commit 1e85346

File tree

2 files changed

+129
-0
lines changed

2 files changed

+129
-0
lines changed

src/main/kotlin/com/github/gradle/node/npm/task/NpmInstallTask.kt

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ abstract class NpmInstallTask : NpmTask() {
112112
return null
113113
}
114114

115+
// When legacy npm support is dropped this does not need projectFileIfExists
115116
return projectFileIfExists("node_modules/.package-lock.json").orNull
116117
}
117118

src/test/groovy/com/github/gradle/node/npm/task/NpmInstall_integTest.groovy

+128
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package com.github.gradle.node.npm.task
22

33
import com.github.gradle.AbstractIntegTest
44
import com.github.gradle.node.NodeExtension
5+
import groovy.io.FileType
56
import org.gradle.testkit.runner.TaskOutcome
67
import org.gradle.util.GradleVersion
78
import spock.lang.IgnoreIf
@@ -94,6 +95,133 @@ class NpmInstall_integTest extends AbstractIntegTest {
9495
gv << GRADLE_VERSIONS_UNDER_TEST
9596
}
9697
98+
def 'fast npm install properly handles lockfile deleted through task (#gv.version)'() {
99+
given:
100+
gradleVersion = gv
101+
102+
writePackageJson '''
103+
{
104+
"name": "fastinstall",
105+
"dependencies": {
106+
"@isaacs/string-locale-compare": "1.1.0"
107+
}
108+
}
109+
'''
110+
111+
def scriptfile = "script.js"
112+
writeFile(scriptfile, """
113+
const stringLocaleCompare = require('@isaacs/string-locale-compare')
114+
console.log(['b', 'a'].sort(stringLocaleCompare('en')))
115+
""")
116+
writeBuild("""
117+
plugins {
118+
id 'com.github.node-gradle.node'
119+
}
120+
121+
node {
122+
fastNpmInstall = true
123+
}
124+
125+
def scriptWithDependency = file("$scriptfile")
126+
127+
tasks.register("taskWithDependency", NodeTask) {
128+
script = scriptWithDependency
129+
dependsOn "npmInstall"
130+
}
131+
132+
tasks.register("deleteNodeModules", Delete) {
133+
delete "node_modules"
134+
}
135+
""")
136+
137+
138+
when:
139+
def result = build('npmInstall')
140+
141+
then:
142+
result.task(":npmInstall").outcome == TaskOutcome.SUCCESS
143+
144+
when:
145+
// when the node_modules is removed
146+
result = build('deleteNodeModules')
147+
148+
then:
149+
result.task(':deleteNodeModules').outcome == TaskOutcome.SUCCESS
150+
151+
when:
152+
result = build('taskWithDependency')
153+
154+
then:
155+
// npmInstall is re-run and the task runs successfully
156+
result.task(":npmInstall").outcome == TaskOutcome.SUCCESS
157+
result.task(":taskWithDependency").outcome == TaskOutcome.SUCCESS
158+
result.output.contains("[ 'a', 'b' ]")
159+
160+
where:
161+
gv << GRADLE_VERSIONS_UNDER_TEST
162+
}
163+
164+
def 'fast npm install properly handles lockfile deleted manually (#gv.version)'() {
165+
given:
166+
gradleVersion = gv
167+
168+
writePackageJson '''
169+
{
170+
"name": "fastinstall",
171+
"dependencies": {
172+
"@isaacs/string-locale-compare": "1.1.0"
173+
}
174+
}
175+
'''
176+
177+
def scriptfile = "script.js"
178+
writeFile(scriptfile, """
179+
const stringLocaleCompare = require('@isaacs/string-locale-compare')
180+
console.log(['b', 'a'].sort(stringLocaleCompare('en')))
181+
""")
182+
writeBuild("""
183+
plugins {
184+
id 'com.github.node-gradle.node'
185+
}
186+
187+
node {
188+
fastNpmInstall = true
189+
}
190+
191+
def scriptWithDependency = file("$scriptfile")
192+
193+
tasks.register("taskWithDependency", NodeTask) {
194+
script = scriptWithDependency
195+
dependsOn "npmInstall"
196+
}
197+
""")
198+
199+
200+
when:
201+
def result = build('npmInstall')
202+
203+
then:
204+
result.task(":npmInstall").outcome == TaskOutcome.SUCCESS
205+
206+
when:
207+
// when the node_modules is removed
208+
projectDir.eachFile(FileType.DIRECTORIES, {
209+
if (it.name == "node_modules") {
210+
it.deleteDir()
211+
}
212+
})
213+
result = build('taskWithDependency')
214+
215+
then:
216+
// npmInstall is re-run and the task runs successfully
217+
result.task(":npmInstall").outcome == TaskOutcome.SUCCESS
218+
result.task(":taskWithDependency").outcome == TaskOutcome.SUCCESS
219+
result.output.contains("[ 'a', 'b' ]")
220+
221+
where:
222+
gv << GRADLE_VERSIONS_UNDER_TEST
223+
}
224+
97225
def 'install packages with npm >= 7 (#gv.version)'() {
98226
given:
99227
gradleVersion = gv

0 commit comments

Comments
 (0)