Files
nginx-unit/test/unit/applications/lang/python.py
Max Romanov 6a00bab41e Tests: improving get_application_type() and fixing its name.
This patch also enables multiversion tests running for Java.
2020-10-28 00:01:46 +03:00

54 lines
1.6 KiB
Python

import os
import shutil
from urllib.parse import quote
import pytest
from conftest import option
from unit.applications.proto import TestApplicationProto
class TestApplicationPython(TestApplicationProto):
application_type = "python"
load_module = "wsgi"
def load(self, script, name=None, module=None, **kwargs):
if name is None:
name = script
if module is None:
module = self.load_module
if script[0] == '/':
script_path = script
else:
script_path = option.test_dir + '/python/' + script
if kwargs.get('isolation') and kwargs['isolation'].get('rootfs'):
rootfs = kwargs['isolation']['rootfs']
if not os.path.exists(rootfs + '/app/python/'):
os.makedirs(rootfs + '/app/python/')
if not os.path.exists(rootfs + '/app/python/' + name):
shutil.copytree(script_path, rootfs + '/app/python/' + name)
script_path = '/app/python/' + name
self._load_conf(
{
"listeners": {
"*:7080": {"pass": "applications/" + quote(name, '')}
},
"applications": {
name: {
"type": self.get_application_type(),
"processes": {"spare": 0},
"path": script_path,
"working_directory": script_path,
"module": module,
}
},
},
**kwargs
)