mirror of
https://github.com/triqs/dft_tools
synced 2024-11-18 12:03:50 +01:00
23723bc580
In coordination with M. Aichorn and O. Peil we decided to change the default of the normion to False. This is closed to the behavior of the other converters w90, elk, and wien2k, which will always orthonormalize all projectors in a unit cell together (normion=False) and not per ion site (normion=True). Changed tests accordingly.
51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
r"""
|
|
Tests of 'parse_groups()' defined in ConfigParameters class
|
|
"""
|
|
import os
|
|
import rpath
|
|
_rpath = os.path.dirname(rpath.__file__) + '/'
|
|
|
|
import arraytest
|
|
import numpy as np
|
|
from triqs_dft_tools.converters.plovasp.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(_rpath + 'parse_groups_1.cfg')
|
|
err_mess = "Required parameter"
|
|
with self.assertRaisesRegex(Exception, err_mess):
|
|
conf_pars.parse_groups()
|
|
|
|
# Scenario 2
|
|
def test_example(self):
|
|
conf_pars = ConfigParameters(_rpath + 'example.cfg')
|
|
conf_pars.parse_groups()
|
|
res = conf_pars.groups
|
|
expected = [{'index': 1, 'shells': [1, 2], 'ewindow': (-7.6, 3.0),
|
|
'normalize': True, 'normion': False,'complement': False},
|
|
{'index': 2, 'shells': [3], 'ewindow': (-1.6, 2.0),
|
|
'normalize': True, 'normion': False,'complement': False}]
|
|
print(res)
|
|
print(expected)
|
|
self.assertListEqual(res, expected)
|
|
|
|
|
|
|