diff options
author | Tiago Natel <t.nateldemoura@f5.com> | 2019-11-11 14:35:29 +0000 |
---|---|---|
committer | Tiago Natel <t.nateldemoura@f5.com> | 2019-11-11 14:35:29 +0000 |
commit | abbad122bb48cb1d8b650158a3e6180dbe5ee9e5 (patch) | |
tree | ac2199ac78c6902eb6c674600fc5c5ee718076fc /test/unit/applications/proto.py | |
parent | 417cc7be7c0c6f6e62f0916f671bbf0a4460226b (diff) | |
download | unit-abbad122bb48cb1d8b650158a3e6180dbe5ee9e5.tar.gz unit-abbad122bb48cb1d8b650158a3e6180dbe5ee9e5.tar.bz2 |
Tests: added support for testing "user" and "group".
Diffstat (limited to '')
-rw-r--r-- | test/unit/applications/proto.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/unit/applications/proto.py b/test/unit/applications/proto.py index 4105473f..ae1af354 100644 --- a/test/unit/applications/proto.py +++ b/test/unit/applications/proto.py @@ -25,7 +25,19 @@ class TestApplicationProto(TestControl): return found - def _load_conf(self, conf): + def _load_conf(self, conf, **kwargs): + if 'applications' in conf: + for app in conf['applications'].keys(): + app_conf = conf['applications'][app] + if 'user' in kwargs: + app_conf['user'] = kwargs['user'] + + if 'group' in kwargs: + app_conf['group'] = kwargs['group'] + + if 'isolation' in kwargs: + app_conf['isolation'] = kwargs['isolation'] + self.assertIn( 'success', self.conf(conf), 'load application configuration' ) |