2015-02-13 22:24:48 +01:00
|
|
|
r"""
|
|
|
|
Test suite for module `inpconf.py`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import numpy as np
|
|
|
|
from inpconf import ConfigParameters
|
|
|
|
import ConfigParser
|
|
|
|
|
|
|
|
class TestSpecialParsers(unittest.TestCase):
|
|
|
|
"""
|
|
|
|
Tests of special parsers.
|
|
|
|
"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Initializes a custom equality function for comparing numpy arrays.
|
|
|
|
"""
|
|
|
|
super(TestSpecialParsers, self).__init__(*args, **kwargs)
|
|
|
|
self.addTypeEqualityFunc(np.ndarray, self.is_arrays_equal)
|
|
|
|
|
|
|
|
def is_arrays_equal(self, arr1, arr2, msg=None):
|
|
|
|
"""
|
|
|
|
Raises self.failureException is arrays arr1 and arr2
|
|
|
|
are not equal.
|
|
|
|
"""
|
|
|
|
if not np.allclose(arr1, arr2):
|
|
|
|
raise self.failureException(msg)
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# test_parse_string_logical()
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
def test_parse_string_logical(self):
|
|
|
|
"""
|
|
|
|
Function:
|
|
|
|
|
|
|
|
def parse_string_logical(self, par_str)
|
|
|
|
|
|
|
|
Scenarios:
|
|
|
|
|
|
|
|
- **if** par_str == 'True' **return** True
|
|
|
|
- **if** par_str == 'False' **return** False
|
|
|
|
- **if** par_str == '0' **raise** assertion
|
|
|
|
"""
|
|
|
|
conf_pars = ConfigParameters('test1.cfg')
|
|
|
|
|
|
|
|
# Scenario 1
|
|
|
|
res = conf_pars.parse_string_logical('True')
|
|
|
|
self.assertEqual(res, True)
|
|
|
|
|
|
|
|
# Scenario 2
|
|
|
|
res = conf_pars.parse_string_logical('False')
|
|
|
|
self.assertEqual(res, False)
|
|
|
|
|
|
|
|
# Scenario 3
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
conf_pars.parse_string_logical('0')
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# test_parse_string_ion_list()
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
def test_parse_string_ion_list(self):
|
|
|
|
"""
|
|
|
|
Function:
|
|
|
|
|
|
|
|
def parse_string_ion_list(self, par_str)
|
|
|
|
|
|
|
|
Scenarios:
|
|
|
|
|
|
|
|
- **if** par_str == '5 6 7 8' **return** array([4, 5, 6, 7])
|
|
|
|
- **if** par_str == 'Ni' **raise** NotImplementedError
|
|
|
|
- **if** par_str == '0 1' **raise** AssertionError
|
|
|
|
- **if** par_str == '5..8' **return** array([4, 5, 6, 7])
|
|
|
|
- **if** par_str == '8..5' **raise** AssertionError
|
|
|
|
"""
|
|
|
|
conf_pars = ConfigParameters('test1.cfg')
|
|
|
|
|
|
|
|
# Scenario 1
|
|
|
|
expected = np.array([4, 5, 6, 7])
|
|
|
|
res = conf_pars.parse_string_ion_list('5 6 7 8')
|
|
|
|
self.assertEqual(res, expected)
|
|
|
|
|
|
|
|
# Scenario 2
|
|
|
|
with self.assertRaises(NotImplementedError):
|
|
|
|
conf_pars.parse_string_ion_list('Ni')
|
|
|
|
|
|
|
|
# Scenario 3
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
conf_pars.parse_string_ion_list('0 1')
|
|
|
|
|
|
|
|
# Scenario 4
|
|
|
|
res = conf_pars.parse_string_ion_list('5..8')
|
|
|
|
self.assertEqual(res, expected)
|
|
|
|
|
|
|
|
# Scenario 5
|
|
|
|
err_mess = "First index of the range"
|
|
|
|
with self.assertRaisesRegexp(AssertionError, err_mess):
|
|
|
|
conf_pars.parse_string_ion_list('8..5')
|
|
|
|
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# test_parse_string_tmatrix()
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
def test_parse_string_tmatrix(self):
|
|
|
|
"""
|
|
|
|
Function:
|
|
|
|
|
|
|
|
def parse_string_tmatrix(self, par_str)
|
|
|
|
|
|
|
|
Parses a matrix defined as a set of rows in the conf-file.
|
|
|
|
|
|
|
|
Scenarios:
|
|
|
|
|
|
|
|
- **if** number of columns is not the same **raise** AssertionError
|
|
|
|
- **if** complex matrix is read and the number of columns is odd
|
|
|
|
**raise** AssertionError
|
|
|
|
- **if** a correct matrix is given **return** an array
|
|
|
|
|
|
|
|
"""
|
|
|
|
conf_pars = ConfigParameters('test1.cfg')
|
|
|
|
# Scenario 1
|
|
|
|
par_str = "1.0 0.0\n1.0"
|
|
|
|
err_mess = "Number of columns"
|
|
|
|
with self.assertRaisesRegexp(AssertionError, err_mess):
|
|
|
|
conf_pars.parse_string_tmatrix(par_str, real=True)
|
|
|
|
|
|
|
|
# Scenario 2
|
|
|
|
par_str = "1.0 0.0 2.0 1.0 0.0\n0.0 1.0 2.0 3.0 -1.0"
|
|
|
|
err_mess = "Complex matrix must"
|
|
|
|
with self.assertRaisesRegexp(AssertionError, err_mess):
|
|
|
|
conf_pars.parse_string_tmatrix(par_str, real=False)
|
|
|
|
|
|
|
|
# Scenario 3
|
|
|
|
par_str = "1.0 0.0 2.0 -3.0\n0.0 1.0 -1.0 1.0"
|
|
|
|
res = conf_pars.parse_string_tmatrix(par_str, real=False)
|
|
|
|
expected = np.array([[1.0, 2.0 - 3.0j], [1.0j, -1.0 + 1.0j]])
|
|
|
|
self.assertEqual(res, expected)
|
|
|
|
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# test_parse_parameter_set()
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
def test_parse_parameter_set(self):
|
|
|
|
"""
|
|
|
|
Function:
|
|
|
|
|
|
|
|
def parse_parameter_set(self, section, param_set, excpetion=False)
|
|
|
|
|
|
|
|
Scenarios:
|
|
|
|
|
|
|
|
- **if** config-file section [Shell 1] contains 'LSHELL = 2' **and**
|
|
|
|
'lshell' and 'ions' are in `param_set` **return** a dictionary {'lshell': 2}
|
|
|
|
|
|
|
|
- **if** config-file section [Shell 1] contains 'LSHELL = 2' **and**
|
|
|
|
'lshell' and 'ions' are in `param_set` and
|
|
|
|
exception=True **raise** Exception
|
|
|
|
"""
|
|
|
|
conf_pars = ConfigParameters('test1.cfg')
|
|
|
|
param_set = conf_pars.sh_required # contains 'lshell' and 'ions'
|
|
|
|
|
|
|
|
# Scenario 1
|
|
|
|
res = conf_pars.parse_parameter_set('Shell 1', param_set)
|
|
|
|
expected = {'lshell': 2}
|
|
|
|
self.assertDictEqual(res, expected)
|
|
|
|
|
|
|
|
# Scenario 2
|
|
|
|
section = 'Shell 1'
|
|
|
|
err_mess = "Required parameter" # .* in section [%s]"%(section)
|
|
|
|
with self.assertRaisesRegexp(Exception, err_mess):
|
|
|
|
conf_pars.parse_parameter_set(section, param_set, exception=True)
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# test_parse_shells()
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
def test_parse_shells(self):
|
|
|
|
"""
|
|
|
|
Function:
|
|
|
|
|
|
|
|
def parse_shells(self)
|
|
|
|
|
|
|
|
Scenarios:
|
|
|
|
|
|
|
|
- **if** config-file does not contain a valid [Shell] section
|
|
|
|
**raise** AssertionError
|
|
|
|
- **if** a [Shell] section does not contain a valid index
|
|
|
|
**raise** ValueError
|
|
|
|
- **if** a [Shell] section does not contain all required parameters
|
|
|
|
**raise** Exception
|
|
|
|
- **if** two correct [Shell] sections are defined
|
|
|
|
**return** a dictionary of shell parameters
|
|
|
|
"""
|
|
|
|
# Scenario 1
|
|
|
|
conf_pars = ConfigParameters('test2.cfg')
|
|
|
|
err_mess = "No projected shells"
|
|
|
|
with self.assertRaisesRegexp(AssertionError, err_mess):
|
|
|
|
conf_pars.parse_shells()
|
|
|
|
|
|
|
|
# Scenario 2
|
|
|
|
conf_pars = ConfigParameters('test3.cfg')
|
|
|
|
err_mess = "Failed to extract shell indices"
|
|
|
|
with self.assertRaisesRegexp(ValueError, err_mess):
|
|
|
|
conf_pars.parse_shells()
|
|
|
|
|
|
|
|
# Scenario 3
|
|
|
|
conf_pars = ConfigParameters('test4.cfg')
|
|
|
|
err_mess = "Required parameter"
|
|
|
|
with self.assertRaisesRegexp(Exception, err_mess):
|
|
|
|
conf_pars.parse_shells()
|
|
|
|
|
|
|
|
# Scenario 4
|
|
|
|
conf_pars = ConfigParameters('test5.cfg')
|
|
|
|
conf_pars.parse_shells()
|
|
|
|
res = conf_pars.shells
|
2015-02-16 11:30:31 +01:00
|
|
|
expected = [{'user_index': 1, 'lshell': 2, 'ion_list': np.array([4, 5, 6, 7])},
|
|
|
|
{'user_index': 2, 'lshell': 1, 'ion_list': np.array([0, 1, 2, 3]),
|
|
|
|
'tmatrix': np.array([[ 0., 1., 0.], [ 1., 0., 0.], [ 0., 0., 1.]])}]
|
2015-02-15 16:42:48 +01:00
|
|
|
# ...lousy way to test equality of two dictionaries containing numpy arrays
|
2015-02-16 11:30:31 +01:00
|
|
|
self.assertEqual(len(res), len(expected))
|
2015-02-13 22:24:48 +01:00
|
|
|
|
2015-02-16 11:30:31 +01:00
|
|
|
arr = res[0].pop('ion_list')
|
|
|
|
arr_exp = expected[0].pop('ion_list')
|
2015-02-13 22:24:48 +01:00
|
|
|
self.assertEqual(arr, arr_exp)
|
|
|
|
|
2015-02-16 11:30:31 +01:00
|
|
|
arr = res[1].pop('ion_list')
|
|
|
|
arr_exp = expected[1].pop('ion_list')
|
2015-02-13 22:24:48 +01:00
|
|
|
self.assertEqual(arr, arr_exp)
|
|
|
|
|
2015-02-16 11:30:31 +01:00
|
|
|
arr = res[1].pop('tmatrix')
|
|
|
|
arr_exp = expected[1].pop('tmatrix')
|
2015-02-13 22:24:48 +01:00
|
|
|
self.assertEqual(arr, arr_exp)
|
|
|
|
|
2015-02-16 11:30:31 +01:00
|
|
|
self.assertListEqual(res, expected)
|
2015-02-13 22:24:48 +01:00
|
|
|
|
2015-02-13 23:22:26 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# test_parse_groups()
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
def test_parse_groups(self):
|
|
|
|
"""
|
|
|
|
Function:
|
|
|
|
|
|
|
|
def parse_groups(self)
|
|
|
|
|
|
|
|
Scenarios:
|
|
|
|
|
2015-02-15 16:42:48 +01:00
|
|
|
- **if** a [Group] section does not contain all required parameters
|
|
|
|
**raise** Exception
|
|
|
|
- **if** a correct group section is defined **return** a list of dictionaries
|
|
|
|
"""
|
|
|
|
# Scenario 1
|
2015-02-16 11:37:41 +01:00
|
|
|
conf_pars = ConfigParameters('test5.cfg')
|
|
|
|
err_mess = "Required parameter"
|
|
|
|
with self.assertRaisesRegexp(Exception, err_mess):
|
|
|
|
conf_pars.parse_groups()
|
2015-02-15 16:42:48 +01:00
|
|
|
|
2015-02-16 11:46:26 +01:00
|
|
|
# Scenario 2
|
|
|
|
conf_pars = ConfigParameters('test7.cfg')
|
|
|
|
conf_pars.parse_groups()
|
|
|
|
res = conf_pars.groups
|
|
|
|
expected = [{'index': 1, 'shells': [1, 2], 'emin': -7.6, 'emax': 3.0},
|
|
|
|
{'index': 2, 'shells': [3], 'emin': -1.6, 'emax': 2.0}]
|
|
|
|
self.assertListEqual(res, expected)
|
|
|
|
|
|
|
|
|
2015-02-15 16:42:48 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
2015-02-16 11:37:41 +01:00
|
|
|
# test_parse_input()
|
2015-02-15 16:42:48 +01:00
|
|
|
#
|
|
|
|
################################################################################
|
2015-02-16 11:37:41 +01:00
|
|
|
def test_parse_input(self):
|
2015-02-15 16:42:48 +01:00
|
|
|
"""
|
|
|
|
Function:
|
|
|
|
|
2015-02-16 11:37:41 +01:00
|
|
|
def parse_input(self)
|
2015-02-15 16:42:48 +01:00
|
|
|
|
|
|
|
Scenarios:
|
|
|
|
|
2015-02-13 23:22:26 +01:00
|
|
|
- **if** no [Group] section exists and more than one [Shell] section
|
|
|
|
is given **raise** AssertionError
|
2015-02-15 16:42:48 +01:00
|
|
|
- **if** no [Group] section exists but the single [Shell] section
|
|
|
|
does not contain required group information **raise** KeyError
|
|
|
|
- **if** a shell referenced in a group does not exist
|
|
|
|
**raise** Exception
|
|
|
|
- **if** not all defined shells are referenced in the groups
|
2015-02-13 23:22:26 +01:00
|
|
|
**raise** Exception
|
2015-02-16 12:25:10 +01:00
|
|
|
- **if** all sections are parsed error-free check that the output
|
|
|
|
is correct
|
2015-02-13 23:22:26 +01:00
|
|
|
"""
|
|
|
|
# Scenario 1
|
|
|
|
conf_pars = ConfigParameters('test6.cfg')
|
|
|
|
err_mess = "At least one group"
|
|
|
|
with self.assertRaisesRegexp(AssertionError, err_mess):
|
2015-02-16 11:37:41 +01:00
|
|
|
conf_pars.parse_input()
|
2015-02-13 23:22:26 +01:00
|
|
|
|
2015-02-16 11:54:54 +01:00
|
|
|
# Scenario 2
|
|
|
|
conf_pars = ConfigParameters('test8.cfg')
|
|
|
|
err_mess = "One \[Shell\] section is"
|
|
|
|
with self.assertRaisesRegexp(KeyError, err_mess):
|
|
|
|
conf_pars.parse_input()
|
|
|
|
|
2015-02-16 12:02:11 +01:00
|
|
|
# Scenario 3
|
|
|
|
conf_pars = ConfigParameters('test9.cfg')
|
|
|
|
err_mess = "Shell 3 referenced in"
|
|
|
|
with self.assertRaisesRegexp(Exception, err_mess):
|
|
|
|
conf_pars.parse_input()
|
|
|
|
|
2015-02-16 12:05:02 +01:00
|
|
|
# Scenario 4
|
|
|
|
conf_pars = ConfigParameters('test10.cfg')
|
|
|
|
err_mess = "Some shells are not inside"
|
|
|
|
with self.assertRaisesRegexp(AssertionError, err_mess):
|
|
|
|
conf_pars.parse_input()
|
|
|
|
|
2015-02-16 12:25:10 +01:00
|
|
|
# Scenario 5
|
|
|
|
conf_pars = ConfigParameters('test7.cfg')
|
|
|
|
conf_pars.parse_input()
|
|
|
|
# with open('parse_input.output.test', 'wt') as f:
|
|
|
|
# f.write("Shells:\n")
|
|
|
|
# f.write(conf_pars.shells.__repr__() + '\n\n')
|
|
|
|
# f.write("Groups:\n")
|
|
|
|
# f.write(conf_pars.groups.__repr__() + '\n')
|
|
|
|
res = "Shells:\n"
|
|
|
|
res += conf_pars.shells.__repr__() + '\n\n'
|
|
|
|
res += "Groups:\n"
|
|
|
|
res += conf_pars.groups.__repr__()
|
|
|
|
|
|
|
|
expected = r"""Shells:
|
|
|
|
[{'ion_list': array([4, 5, 6, 7]), 'user_index': 1, 'lshell': 2}, {'tmatrix': array([[ 0., 1., 0.],
|
|
|
|
[ 1., 0., 0.],
|
|
|
|
[ 0., 0., 1.]]), 'ion_list': array([0, 1, 2, 3]), 'user_index': 2, 'lshell': 1}, {'ion_list': array([0, 1, 2, 3]), 'user_index': 3, 'lshell': 3}]
|
|
|
|
|
|
|
|
Groups:
|
|
|
|
[{'index': 1, 'shells': [0, 1], 'emin': -7.6, 'emax': 3.0}, {'index': 2, 'shells': [2], 'emin': -1.6, 'emax': 2.0}]"""
|
|
|
|
|
|
|
|
self.assertEqual(res, expected)
|
2015-02-16 11:54:54 +01:00
|
|
|
|
2015-02-13 22:24:48 +01:00
|
|
|
|
2015-02-15 16:42:48 +01:00
|
|
|
|
2015-02-13 22:24:48 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestSpecialParsers)
|
|
|
|
# unittest.TextTestRunner(verbosity=2, buffer=False).run(suite)
|
|
|
|
unittest.TextTestRunner(verbosity=2, buffer=True).run(suite)
|
|
|
|
|