summaryrefslogtreecommitdiffhomepage
path: root/test/unit/applications/lang/node.py
blob: 1be164582540302bf6bde179eabcefae04525533 (plain) (blame)
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
import os
import shutil
from unit.applications.proto import TestApplicationProto


class TestApplicationNode(TestApplicationProto):
    def load(self, script, name='app.js'):
        # copy application

        shutil.copytree(
            self.current_dir + '/node/' + script, self.testdir + '/node'
        )

        # link modules

        os.symlink(
            self.pardir + '/node/node_modules',
            self.testdir + '/node/node_modules',
        )

        self._load_conf(
            {
                "listeners": {"*:7080": {"pass": "applications/" + script}},
                "applications": {
                    script: {
                        "type": "external",
                        "processes": {"spare": 0},
                        "working_directory": self.testdir + '/node',
                        "executable": name,
                    }
                },
            }
        )