diff options
Diffstat (limited to 'test/test_configuration.py')
-rw-r--r-- | test/test_configuration.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/test_configuration.py b/test/test_configuration.py index fec1b3dc..0b0c9c78 100644 --- a/test/test_configuration.py +++ b/test/test_configuration.py @@ -409,6 +409,33 @@ class TestConfiguration(TestControl): self.assertIn('success', self.conf(conf)) + def test_unprivileged_user_error(self): + self.skip_alerts.extend( + [ + r'cannot set user "root"', + r'failed to apply new conf', + ] + ) + if self.is_su: + print('unprivileged tests, skip this') + raise unittest.SkipTest() + + self.assertIn( + 'error', + self.conf( + { + "app": { + "type": "external", + "processes": 1, + "executable": "/app", + "user": "root", + } + }, + 'applications', + ), + 'setting user', + ) + if __name__ == '__main__': TestConfiguration.main() |