Server IP : 128.199.20.84 / Your IP : 172.71.254.168 Web Server : Apache/2.4.41 (Ubuntu) System : Linux competent-maruti 5.4.0-128-generic #144-Ubuntu SMP Tue Sep 20 11:00:04 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.0.20 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF Directory (0755) : /lib/python3/dist-packages/certbot_apache/tests/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"""Test for certbot_apache.configurator implementations of reverter""" import shutil import unittest import mock from certbot import errors from certbot_apache.tests import util class ConfiguratorReverterTest(util.ApacheTest): """Test for ApacheConfigurator reverter methods""" def setUp(self): # pylint: disable=arguments-differ super(ConfiguratorReverterTest, self).setUp() self.config = util.get_apache_configurator( self.config_path, self.vhost_path, self.config_dir, self.work_dir) self.vh_truth = util.get_vh_truth( self.temp_dir, "debian_apache_2_4/multiple_vhosts") def tearDown(self): shutil.rmtree(self.config_dir) shutil.rmtree(self.work_dir) shutil.rmtree(self.temp_dir) def test_bad_save_checkpoint(self): self.config.reverter.add_to_checkpoint = mock.Mock( side_effect=errors.ReverterError) self.config.parser.add_dir( self.vh_truth[0].path, "Test", "bad_save_ckpt") self.assertRaises(errors.PluginError, self.config.save) def test_bad_save_finalize_checkpoint(self): self.config.reverter.finalize_checkpoint = mock.Mock( side_effect=errors.ReverterError) self.config.parser.add_dir( self.vh_truth[0].path, "Test", "bad_save_ckpt") self.assertRaises(errors.PluginError, self.config.save, "Title") def test_finalize_save(self): mock_finalize = mock.Mock() self.config.reverter = mock_finalize self.config.save("Example Title") self.assertTrue(mock_finalize.is_called) def test_revert_challenge_config(self): mock_load = mock.Mock() self.config.parser.aug.load = mock_load self.config.revert_challenge_config() self.assertEqual(mock_load.call_count, 1) def test_revert_challenge_config_error(self): self.config.reverter.revert_temporary_config = mock.Mock( side_effect=errors.ReverterError) self.assertRaises( errors.PluginError, self.config.revert_challenge_config) def test_rollback_checkpoints(self): mock_load = mock.Mock() self.config.parser.aug.load = mock_load self.config.rollback_checkpoints() self.assertEqual(mock_load.call_count, 1) def test_rollback_error(self): self.config.reverter.rollback_checkpoints = mock.Mock( side_effect=errors.ReverterError) self.assertRaises(errors.PluginError, self.config.rollback_checkpoints) def test_recovery_routine_reload(self): mock_load = mock.Mock() self.config.parser.aug.load = mock_load self.config.recovery_routine() self.assertEqual(mock_load.call_count, 1) if __name__ == "__main__": unittest.main() # pragma: no cover