bandit/tests/unit/core/test_config.py
Tim Kelsey 32a7679c5e Improving config handling
This patch adds a validation step to the config class that can
be used to detect bad configs. For now it just asserts that if
legacy blacklist tests are mentioned the config contains the
required data block for them.

Additionally, this also removes various places in our test set
where a config file is specified. This was only done to satisfy
the old behaviour when a config was not optional.

Finally, this detects when a config has legacy data in it and
prints a deprecation warning.

Test coverage of the config class is now raised to 100%

Change-Id: I492a20f9b9f421d32e3e72eaa15f88c34c3d11e8
2016-03-23 16:18:11 +00:00

265 lines
8.7 KiB
Python

# Copyright 2015 IBM Corp.
#
# 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.
import os
import tempfile
import textwrap
import uuid
import fixtures
import mock
import testtools
from bandit.core import config
from bandit.core import utils
class TempFile(fixtures.Fixture):
def __init__(self, contents=None):
super(TempFile, self).__init__()
self.contents = contents
def setUp(self):
super(TempFile, self).setUp()
with tempfile.NamedTemporaryFile(mode='wt', delete=False) as f:
if self.contents:
f.write(self.contents)
self.addCleanup(os.unlink, f.name)
self.name = f.name
class TestInit(testtools.TestCase):
def test_settings(self):
# Can initialize a BanditConfig.
example_key = uuid.uuid4().hex
example_value = self.getUniqueString()
contents = '%s: %s' % (example_key, example_value)
f = self.useFixture(TempFile(contents))
b_config = config.BanditConfig(f.name)
# After initialization, can get settings.
self.assertEqual('*.py', b_config.get_setting('plugin_name_pattern'))
self.assertEqual({example_key: example_value}, b_config.config)
self.assertEqual(example_value, b_config.get_option(example_key))
def test_file_does_not_exist(self):
# When the config file doesn't exist, ConfigFileUnopenable is raised.
cfg_file = os.path.join(os.getcwd(), 'notafile')
self.assertRaisesRegex(utils.ConfigError, cfg_file,
config.BanditConfig, cfg_file)
def test_yaml_invalid(self):
# When the config yaml file isn't valid, sys.exit(2) is called.
# The following is invalid because it starts a sequence and doesn't
# end it.
invalid_yaml = '- [ something'
f = self.useFixture(TempFile(invalid_yaml))
self.assertRaisesRegex(
utils.ConfigError, f.name, config.BanditConfig, f.name)
class TestGetOption(testtools.TestCase):
def setUp(self):
super(TestGetOption, self).setUp()
self.example_key = uuid.uuid4().hex
self.example_subkey = uuid.uuid4().hex
self.example_subvalue = uuid.uuid4().hex
sample_yaml = textwrap.dedent("""
%s:
%s: %s
""" % (self.example_key, self.example_subkey,
self.example_subvalue))
f = self.useFixture(TempFile(sample_yaml))
self.b_config = config.BanditConfig(f.name)
def test_levels(self):
# get_option with .-separated string.
sample_option_name = '%s.%s' % (self.example_key, self.example_subkey)
self.assertEqual(self.example_subvalue,
self.b_config.get_option(sample_option_name))
def test_levels_not_exist(self):
# get_option when option name doesn't exist returns None.
sample_option_name = '%s.%s' % (uuid.uuid4().hex, uuid.uuid4().hex)
self.assertIsNone(self.b_config.get_option(sample_option_name))
class TestGetSetting(testtools.TestCase):
def setUp(self):
super(TestGetSetting, self).setUp()
test_yaml = 'key: value'
f = self.useFixture(TempFile(test_yaml))
self.b_config = config.BanditConfig(f.name)
def test_not_exist(self):
# get_setting() when the name doesn't exist returns None
sample_setting_name = uuid.uuid4().hex
self.assertIsNone(self.b_config.get_setting(sample_setting_name))
class TestConfigCompat(testtools.TestCase):
sample_yaml = textwrap.dedent("""
profiles:
test_1:
include:
- any_other_function_with_shell_equals_true
- assert_used
exclude:
test_2:
include:
- blacklist_calls
test_3:
include:
- blacklist_imports
test_4:
exclude:
- assert_used
test_5:
exclude:
- blacklist_calls
- blacklist_imports
test_6:
include:
- blacklist_calls
exclude:
- blacklist_imports
blacklist_calls:
bad_name_sets:
- pickle:
qualnames: [pickle.loads]
message: "{func} library appears to be in use."
blacklist_imports:
bad_import_sets:
- telnet:
imports: [telnetlib]
level: HIGH
message: "{module} is considered insecure."
""")
def setUp(self):
super(TestConfigCompat, self).setUp()
f = self.useFixture(TempFile(self.sample_yaml))
self.config = config.BanditConfig(f.name)
def test_converted_include(self):
profiles = self.config.get_option('profiles')
test = profiles['test_1']
data = {'blacklist': {},
'exclude': set(),
'include': set(['B101', 'B604'])}
self.assertEqual(data, test)
def test_converted_exclude(self):
profiles = self.config.get_option('profiles')
test = profiles['test_4']
self.assertEqual(set(['B101']), test['exclude'])
def test_converted_blacklist_call_data(self):
profiles = self.config.get_option('profiles')
test = profiles['test_2']
data = {'Call': [{'qualnames': ['telnetlib'],
'level': 'HIGH',
'message': '{name} is considered insecure.',
'name': 'telnet'}]}
self.assertEqual(data, test['blacklist'])
def test_converted_blacklist_import_data(self):
profiles = self.config.get_option('profiles')
test = profiles['test_3']
data = [{'message': '{name} library appears to be in use.',
'name': 'pickle',
'qualnames': ['pickle.loads']}]
self.assertEqual(data, test['blacklist']['Call'])
self.assertEqual(data, test['blacklist']['Import'])
self.assertEqual(data, test['blacklist']['ImportFrom'])
def test_converted_blacklist_call_test(self):
profiles = self.config.get_option('profiles')
test = profiles['test_2']
self.assertEqual(set(['B001']), test['include'])
def test_converted_blacklist_import_test(self):
profiles = self.config.get_option('profiles')
test = profiles['test_3']
self.assertEqual(set(['B001']), test['include'])
def test_converted_exclude_blacklist(self):
profiles = self.config.get_option('profiles')
test = profiles['test_5']
self.assertEqual(set(['B001']), test['exclude'])
def test_deprecation_message(self):
msg = ("Config file '%s' contains deprecated legacy config data. "
"Please consider upgrading to the new config format. The tool "
"'bandit-config-generator' can help you with this. Support for "
"legacy configs will be removed in a future bandit version.")
with mock.patch('bandit.core.config.logger.warn') as m:
self.config._config = {"profiles": {}}
self.config.validate('')
self.assertEqual((msg, ''), m.call_args_list[0][0])
def test_blacklist_error(self):
msg = (" : Config file has an include or exclude reference to legacy "
"test '%s' but no configuration data for it. Configuration "
"data is required for this test. Please consider switching to "
"the new config file format, the tool "
"'bandit-config-generator' can help you with this.")
for name in ["blacklist_call",
"blacklist_imports",
"blacklist_imports_func"]:
self.config._config = (
{"profiles": {"test": {"include": [name]}}})
try:
self.config.validate('')
except utils.ConfigError as e:
self.assertEqual(msg % name, e.message)
def test_bad_yaml(self):
f = self.useFixture(TempFile("[]"))
try:
self.config = config.BanditConfig(f.name)
except utils.ConfigError as e:
self.assertTrue("Error parsing file." in e.message)