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
|
import shutil
from urllib.parse import quote
from unit.applications.proto import TestApplicationProto
from unit.option import option
from unit.utils import public_dir
class TestApplicationNode(TestApplicationProto):
application_type = "node"
es_modules = False
def prepare_env(self, script):
# copy application
shutil.copytree(
option.test_dir + '/node/' + script, option.temp_dir + '/node'
)
# copy modules
shutil.copytree(
option.current_dir + '/node/node_modules',
option.temp_dir + '/node/node_modules',
)
public_dir(option.temp_dir + '/node')
def load(self, script, name='app.js', **kwargs):
self.prepare_env(script)
if self.es_modules:
arguments = [
"node",
"--loader",
"unit-http/loader.mjs",
"--require",
"unit-http/loader",
name,
]
else:
arguments = ["node", "--require", "unit-http/loader", name]
self._load_conf(
{
"listeners": {
"*:7080": {"pass": "applications/" + quote(script, '')}
},
"applications": {
script: {
"type": "external",
"processes": {"spare": 0},
"working_directory": option.temp_dir + '/node',
"executable": '/usr/bin/env',
"arguments": arguments,
}
},
},
**kwargs
)
|