Common methods from applications/proto.py converted to the fixtures. sysctl check moved to the specific file where it is using. Some options moved to the constructor to have early access.
36 lines
983 B
Python
36 lines
983 B
Python
import os
|
|
import re
|
|
import time
|
|
|
|
from unit.control import TestControl
|
|
from unit.log import Log
|
|
from unit.option import option
|
|
|
|
|
|
class TestApplicationProto(TestControl):
|
|
application_type = None
|
|
|
|
def get_application_type(self):
|
|
current_test = (
|
|
os.environ.get('PYTEST_CURRENT_TEST').split(':')[-1].split(' ')[0]
|
|
)
|
|
|
|
return option.generated_tests.get(current_test, self.application_type)
|
|
|
|
def _load_conf(self, conf, **kwargs):
|
|
if 'applications' in conf:
|
|
for app in conf['applications'].keys():
|
|
app_conf = conf['applications'][app]
|
|
|
|
for key in [
|
|
'user',
|
|
'group',
|
|
'isolation',
|
|
'processes',
|
|
'threads',
|
|
]:
|
|
if key in kwargs:
|
|
app_conf[key] = kwargs[key]
|
|
|
|
assert 'success' in self.conf(conf), 'load application configuration'
|