Class usage came from the unittest framework and it was always redundant after migration to the pytest. This commit removes classes from files containing tests to make them more readable and understandable.
26 lines
835 B
Python
26 lines
835 B
Python
from unit.applications.proto import ApplicationProto
|
|
from unit.option import option
|
|
|
|
|
|
class ApplicationPerl(ApplicationProto):
|
|
def __init__(self, application_type='perl'):
|
|
self.application_type = application_type
|
|
|
|
def load(self, script, name='psgi.pl', **kwargs):
|
|
script_path = f'{option.test_dir}/perl/{script}'
|
|
|
|
self._load_conf(
|
|
{
|
|
"listeners": {"*:7080": {"pass": f"applications/{script}"}},
|
|
"applications": {
|
|
script: {
|
|
"type": self.get_application_type(),
|
|
"processes": {"spare": 0},
|
|
"working_directory": script_path,
|
|
"script": f'{script_path}/{name}',
|
|
}
|
|
},
|
|
},
|
|
**kwargs,
|
|
)
|