82 lines
3.0 KiB
Python
82 lines
3.0 KiB
Python
# Copyright 2016 Canonical Limited.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from mock import patch, call
|
|
from unittest import TestCase
|
|
|
|
from charmhelpers.contrib.hardening import harden
|
|
|
|
|
|
class HardenTestCase(TestCase):
|
|
|
|
def setUp(self):
|
|
super(HardenTestCase, self).setUp()
|
|
|
|
@patch.object(harden, 'log', lambda *args, **kwargs: None)
|
|
@patch.object(harden, 'run_apache_checks')
|
|
@patch.object(harden, 'run_mysql_checks')
|
|
@patch.object(harden, 'run_ssh_checks')
|
|
@patch.object(harden, 'run_os_checks')
|
|
def test_harden(self, mock_host, mock_ssh, mock_mysql, mock_apache):
|
|
mock_host.__name__ = 'host'
|
|
mock_ssh.__name__ = 'ssh'
|
|
mock_mysql.__name__ = 'mysql'
|
|
mock_apache.__name__ = 'apache'
|
|
|
|
@harden.harden(overrides=['ssh', 'mysql'])
|
|
def foo(arg1, kwarg1=None):
|
|
return "done."
|
|
|
|
self.assertEqual(foo('anarg', kwarg1='akwarg'), "done.")
|
|
self.assertTrue(mock_ssh.called)
|
|
self.assertTrue(mock_mysql.called)
|
|
self.assertFalse(mock_apache.called)
|
|
self.assertFalse(mock_host.called)
|
|
|
|
@patch.object(harden, 'log')
|
|
@patch.object(harden, 'run_apache_checks')
|
|
@patch.object(harden, 'run_mysql_checks')
|
|
@patch.object(harden, 'run_ssh_checks')
|
|
@patch.object(harden, 'run_os_checks')
|
|
def test_harden_logs_work(self, mock_host, mock_ssh, mock_mysql,
|
|
mock_apache, mock_log):
|
|
mock_host.__name__ = 'host'
|
|
mock_ssh.__name__ = 'ssh'
|
|
mock_mysql.__name__ = 'mysql'
|
|
mock_apache.__name__ = 'apache'
|
|
|
|
@harden.harden(overrides=['ssh', 'mysql'])
|
|
def foo(arg1, kwarg1=None):
|
|
return arg1 + kwarg1
|
|
|
|
mock_log.assert_not_called()
|
|
self.assertEqual(foo('anarg', kwarg1='akwarg'), "anargakwarg")
|
|
mock_log.assert_any_call("Hardening function 'foo'", level="DEBUG")
|
|
|
|
@harden.harden(overrides=['ssh', 'mysql'])
|
|
def bar(arg1, kwarg1=None):
|
|
return arg1 + kwarg1
|
|
|
|
mock_log.reset_mock()
|
|
self.assertEqual(bar("a", kwarg1="b"), "ab")
|
|
mock_log.assert_any_call("Hardening function 'bar'", level="DEBUG")
|
|
|
|
# check it only logs the function name once
|
|
mock_log.reset_mock()
|
|
self.assertEqual(bar("a", kwarg1="b"), "ab")
|
|
self.assertEqual(
|
|
mock_log.call_args_list,
|
|
[call("Executing hardening module 'ssh'", level="DEBUG"),
|
|
call("Executing hardening module 'mysql'", level="DEBUG")])
|