Deleted Added
1from unit.applications.proto import TestApplicationProto
2from conftest import option
3
4
5class TestApplicationPHP(TestApplicationProto):
6 application_type = "php"
7
8 def load(self, script, index='index.php', **kwargs):
9 script_path = option.test_dir + '/php/' + script
10 appication_type = self.get_appication_type()
11
12 if appication_type is None:
13 appication_type = self.application_type
14
15 self._load_conf(
16 {
17 "listeners": {"*:7080": {"pass": "applications/" + script}},
18 "applications": {
19 script: {
20 "type": appication_type,
21 "processes": {"spare": 0},
22 "root": script_path,
23 "working_directory": script_path,
24 "index": index,
25 }
26 },
27 },
28 **kwargs
29 )