-
Notifications
You must be signed in to change notification settings - Fork 16
/
test_pywebpack.py
383 lines (331 loc) · 11 KB
/
test_pywebpack.py
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
# -*- coding: utf-8 -*-
#
# This file is part of PyWebpack
# Copyright (C) 2017-2020 CERN.
# Copyright (C) 2020 Cottage Labs LLP.
#
# PyWebpack is free software; you can redistribute it and/or modify
# it under the terms of the Revised BSD License; see LICENSE file for
# more details.
"""Module tests."""
import json
import os
from os.path import exists, join
from pathlib import Path
import pytest
from pywebpack import (
WebpackBundle,
WebpackBundleProject,
WebpackProject,
WebpackTemplateProject,
)
from pywebpack.errors import MergeConflictError
from pywebpack.helpers import max_version, merge_deps
def json_from_file(filepath):
"""Load JSON from file."""
with open(filepath) as fp:
return json.load(fp)
def test_version():
"""Test version import."""
from pywebpack import __version__
assert __version__
@pytest.mark.parametrize(
"v1,v2,expected",
[
("1", "1", "1"),
("1", "2", "2"),
("2", "1", "2"),
("1.0", "1.1", "1.1"),
("2.3", "2.1", "2.3"),
("2.3", "2", "2.3"),
("1.0.0", "1.0.1", "1.0.1"),
("1.0.0", "1.1.0", "1.1.0"),
("1.0.0", "1.1", "1.1"),
("1.0.0", "2.0.1", "2.0.1"),
("1.0.0-alpha", "1.0.0-alpha.1", "1.0.0-alpha.1"),
("1.0.0-alpha.1", "1.0.0-alpha.beta", "1.0.0-alpha.beta"),
("1.0.0-alpha.beta", "1.0.0-beta", "1.0.0-beta"),
("1.0.0-beta", "1.0.0-beta.2", "1.0.0-beta.2"),
("1.0.0-beta.2", "1.0.0-beta.11", "1.0.0-beta.11"),
("1.0.0-beta.11", "1.0.0-rc.1", "1.0.0-rc.1"),
("1.0.0-rc.1", "1.0.0", "1.0.0"),
],
)
def test_max_version(v1, v2, expected):
assert max_version(v1, v2) == expected
@pytest.mark.parametrize(
"target,source,expected",
[
({}, {}, {"dependencies": {}, "devDependencies": {}, "peerDependencies": {}}),
(
{},
{"dependencies": {"mypkg": "1.0"}},
{
"dependencies": {"mypkg": "1.0"},
"devDependencies": {},
"peerDependencies": {},
},
),
(
{"dependencies": {"mypkg": "1.0"}},
{"dependencies": {"mypkg": "1.1"}},
{
"dependencies": {"mypkg": "1.1"},
"devDependencies": {},
"peerDependencies": {},
},
),
(
{"dependencies": {"mypkg": "0.0.1"}},
{"dependencies": {"mypkg": "0.1.0"}},
{
"dependencies": {"mypkg": "0.1.0"},
"devDependencies": {},
"peerDependencies": {},
},
),
(
{"dependencies": {"mypkg": "~2.0.1-alpha.1"}},
{"dependencies": {"mypkg": "2.0.1-beta"}},
{
"dependencies": {"mypkg": "2.0.1-beta"},
"devDependencies": {},
"peerDependencies": {},
},
),
(
{"dependencies": {"mypkg": "^2.0.1"}},
{"dependencies": {"mypkg": "2.0.2"}},
{
"dependencies": {"mypkg": "2.0.2"},
"devDependencies": {},
"peerDependencies": {},
},
),
(
{"dependencies": {"mypkg": "^3.3.1"}},
{"dependencies": {"mypkg": "~3.2.1"}},
{
"dependencies": {"mypkg": "^3.3.1"},
"devDependencies": {},
"peerDependencies": {},
},
),
],
)
def test_merge_deps(target, source, expected):
assert merge_deps(target, source) == expected
def test_merge_deps_incompat_major():
with pytest.raises(MergeConflictError):
merge_deps(
{"dependencies": {"mypkg": "3.3.1"}},
{"dependencies": {"mypkg": "4.2.1"}},
)
def test_project(simpleprj):
"""Test extension initialization."""
project = WebpackProject(simpleprj)
assert exists(project.project_path)
node_modules = join(project.project_path, "node_modules")
bundlejs = join(project.project_path, "dist/bundle.js")
assert not exists(node_modules)
project.install()
assert exists(node_modules)
assert not exists(bundlejs)
project.build()
assert exists(bundlejs)
def test_project_buildall(simpleprj):
"""Test build all."""
project = WebpackProject(simpleprj)
project.buildall()
assert exists(join(project.project_path, "node_modules"))
assert exists(join(project.project_path, "dist/bundle.js"))
def test_project_no_scripts(brokenprj):
project = WebpackProject(brokenprj)
with pytest.raises(RuntimeError):
project.buildall()
def test_project_failed_build(simpleprj):
# Remove a file necessary for the build
os.unlink(os.path.join(os.path.dirname(simpleprj), "index.js"))
project = WebpackProject(simpleprj)
with pytest.raises(RuntimeError):
project.buildall()
def test_templateproject_create(templatedir, destdir):
"""Test template project creation."""
project = WebpackTemplateProject(destdir, project_template_dir=templatedir)
assert not exists(project.npmpkg.package_json_path)
project.create()
assert exists(project.npmpkg.package_json_path)
def test_templateproject_clean(templatedir, destdir):
"""Test template project creation."""
project = WebpackTemplateProject(destdir, project_template_dir=templatedir)
project.create()
assert exists(project.project_path)
project.clean()
assert not exists(project.project_path)
def test_templateproject_create_config(templatedir, destdir):
"""Test template project creation."""
expected_config = {"entry": "./index.js"}
project = WebpackTemplateProject(
working_dir=destdir,
project_template_dir=templatedir,
config=lambda: expected_config,
)
assert not exists(project.config_path)
project.create()
assert json_from_file(project.config_path) == expected_config
def test_templateproject_buildall(templatedir, destdir):
"""Test build all."""
project = WebpackTemplateProject(
working_dir=destdir,
project_template_dir=templatedir,
config={"test": True},
config_path="build/config.json",
)
project.buildall()
assert exists(project.config_path)
assert exists(join(project.project_path, "node_modules"))
assert exists(join(project.project_path, "dist/bundle.js"))
def test_bundleproject(builddir, bundledir, destdir):
"""Test bundle project."""
entry = {"app": "./index.js"}
aliases = {"@app": "index.js"}
copy = [{"from": "./source/", "to": "./target/"}]
bundle = WebpackBundle(
bundledir,
entry=entry,
dependencies={
"lodash": "~4",
},
aliases=aliases,
copy=copy,
)
project = WebpackBundleProject(
working_dir=destdir,
project_template_dir=builddir,
bundles=(x for x in [bundle]), # Test for iterator evaluation
config={"test": True, "entry": False},
allowed_copy_paths=None, # Skips copy path validation
)
assert project.bundles == [bundle]
assert project.entry == entry
assert project.config == {
"entry": entry,
"test": True,
"aliases": aliases,
"copy": copy,
}
assert project.dependencies == {
"dependencies": {
"lodash": "~4",
},
"devDependencies": {},
"peerDependencies": {},
}
project.create()
# Assert generated files.
paths = ["config.json", "index.js", "package.json", "webpack.config.js"]
distpaths = [
"dist/bundle.js",
"node_modules",
]
for p in paths:
assert exists(join(project.project_path, p))
for p in distpaths:
assert not exists(join(project.project_path, p))
# Assert generated package.json
package_json = json_from_file(project.npmpkg.package_json_path)
# Coming from bundle
assert package_json["dependencies"] == {"lodash": "~4"}
# Coming from source package.json
assert package_json["devDependencies"] == {"lodash": "~4"}
assert package_json["peerDependencies"] == {}
# Build project and see that it works.
project.install()
project.build()
for p in distpaths:
assert exists(join(project.project_path, p))
def test_bundle_duplicated_entries(builddir, bundledir, bundledir2, destdir):
"""Test bundles with duplicated entries."""
with pytest.raises(RuntimeError):
bundle1 = WebpackBundle(
bundledir,
entry={"app": "./index.js"},
dependencies={
"lodash": "~4",
},
)
bundle2 = WebpackBundle(
bundledir2,
entry={"app": "./main.js"},
dependencies={
"lodash": "~3",
},
)
project = WebpackBundleProject(
working_dir=destdir,
project_template_dir=builddir,
bundles=(x for x in [bundle1, bundle2]),
config={"test": True, "entry": False},
)
project.create()
def test_bundle_copy_path_validation(builddir, bundledir, destdir):
"""Test bundles with invalid copy instructions."""
# Allow the precise locations
bundle = WebpackBundle(
bundledir,
copy=[{"from": "/etc/hosts", "to": "/mnt"}],
)
project = WebpackBundleProject(
working_dir=destdir,
project_template_dir=builddir,
bundles=[bundle],
allowed_copy_paths=["/etc", "/mnt"],
)
project.create()
# Test allowance of paths relative to the config,
# and dedicated allow-listed paths
config_path = Path(destdir).joinpath("config.json")
bundle = WebpackBundle(
bundledir,
copy=[{"from": "/home/invenio/", "to": "./path/from/config/"}],
)
project = WebpackBundleProject(
working_dir=destdir,
project_template_dir=builddir,
bundles=[bundle],
config_path=str(config_path),
allowed_copy_paths=["/home/invenio", destdir],
)
project.create()
# As soon as either one of the paths isn't allowed anymore, it should fail
with pytest.raises(RuntimeError):
project = WebpackBundleProject(
working_dir=destdir,
project_template_dir=builddir,
bundles=[bundle],
config_path=str(config_path),
allowed_copy_paths=["/home/invenio"],
)
project.create()
with pytest.raises(RuntimeError):
project = WebpackBundleProject(
working_dir=destdir,
project_template_dir=builddir,
bundles=[bundle],
config_path=str(config_path),
allowed_copy_paths=[destdir],
)
project.create()
# Also, don't allow access to locations like "/etc"
with pytest.raises(RuntimeError):
bundle = WebpackBundle(
bundledir,
copy=[{"from": "./local/", "to": "/etc"}],
)
project = WebpackBundleProject(
working_dir=destdir,
project_template_dir=builddir,
bundles=[bundle],
allowed_copy_paths=[builddir],
)
project.create()