mirror of
https://github.com/triqs/dft_tools
synced 2024-11-07 06:33:48 +01:00
db16a8438d
The names of the test suites have been prefixed with an underscore to avoid name conflicts with corresponding modules. Also an attempt to make a scan of all tests has been made by creating a 'test_all.py' script that is supposed to discover all test cases and run them. Unfortunately, this does not work as expected because many tests use input files assumed to be found in the current directory, which is not true if the tests are run from a different (parent) directory. This can be fixed by either forcing the change of directory (but it seems that 'unittest' does not have this functionality) or prepending input file names with the current module directory.
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
r"""
|
|
Tests of 'parse_groups()' defined in ConfigParameters class
|
|
"""
|
|
import arraytest
|
|
import numpy as np
|
|
from inpconf import ConfigParameters
|
|
|
|
################################################################################
|
|
#
|
|
# TestParseGroups
|
|
#
|
|
################################################################################
|
|
class TestParseGroups(arraytest.ArrayTestCase):
|
|
"""
|
|
Function:
|
|
|
|
def parse_groups(self)
|
|
|
|
Scenarios:
|
|
|
|
- **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
|
|
def test_gr_required(self):
|
|
conf_pars = ConfigParameters('parse_groups_1.cfg')
|
|
err_mess = "Required parameter"
|
|
with self.assertRaisesRegexp(Exception, err_mess):
|
|
conf_pars.parse_groups()
|
|
|
|
# Scenario 2
|
|
def test_example(self):
|
|
conf_pars = ConfigParameters('example.cfg')
|
|
conf_pars.parse_groups()
|
|
res = conf_pars.groups
|
|
expected = [{'index': 1, 'shells': [1, 2], 'emin': -7.6, 'emax': 3.0,
|
|
'normalize': True, 'normion': False},
|
|
{'index': 2, 'shells': [3], 'emin': -1.6, 'emax': 2.0,
|
|
'normalize': True, 'normion': False}]
|
|
self.assertListEqual(res, expected)
|
|
|
|
|
|
|