diff --git a/roles/ldap_server/molecule/default/tests/test_default.py b/roles/ldap_server/molecule/default/tests/test_default.py index 7e72f017534511049532f96e942ec198a9fc318e..c40eba37ddf947e663700944c5113d468bae163d 100644 --- a/roles/ldap_server/molecule/default/tests/test_default.py +++ b/roles/ldap_server/molecule/default/tests/test_default.py @@ -48,42 +48,6 @@ def test_ldap_server_service(host): assert service.is_running -def test_syslog_configuration(host): - """ - Tests if syslog configuration file has been deployed, and log file was - created correctly (and is being logged to). - """ - - config = host.file('/etc/rsyslog.d/slapd.conf') - assert config.is_file - assert config.user == 'root' - assert config.group == 'root' - assert config.mode == 0o644 - - with host.sudo(): - log = host.file('/var/log/slapd.log') - assert log.is_file - assert 'slapd' in log.content_string - - -def test_log_rotation_configuration(host): - """ - Tests if log rotation configuration file has been deployed correctly and has - valid syntax. - """ - - config = host.file('/etc/logrotate.d/slapd') - - assert config.is_file - assert config.user == 'root' - assert config.group == 'root' - assert config.mode == 0o644 - - with host.sudo(): - - assert host.run('logrotate /etc/logrotate.d/slapd').rc == 0 - - def test_misc_schema_presence(host): """ Tests if the misc LDAP schema has been imported.