@@ -2,6 +2,7 @@ package com.github.gradle.node.npm.task
2
2
3
3
import com.github.gradle.AbstractIntegTest
4
4
import com.github.gradle.node.NodeExtension
5
+ import groovy.io.FileType
5
6
import org.gradle.testkit.runner.TaskOutcome
6
7
import org.gradle.util.GradleVersion
7
8
import spock.lang.IgnoreIf
@@ -94,6 +95,133 @@ class NpmInstall_integTest extends AbstractIntegTest {
94
95
gv << GRADLE_VERSIONS_UNDER_TEST
95
96
}
96
97
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
+
97
225
def 'install packages with npm >= 7 (#gv.version)'() {
98
226
given:
99
227
gradleVersion = gv
0 commit comments