|
1
|
|
|
import pytest |
|
2
|
|
|
import os |
|
3
|
|
|
import amd |
|
4
|
|
|
|
|
5
|
|
|
|
|
6
|
|
|
@pytest.fixture(scope='module') |
|
7
|
|
|
def cif_paths(root_dir): |
|
8
|
|
|
|
|
9
|
|
|
cif_names = [ |
|
10
|
|
|
'cubic', |
|
11
|
|
|
'T2_experimental', |
|
12
|
|
|
] |
|
13
|
|
|
|
|
14
|
|
|
return {name: os.path.join(root_dir, f'{name}.cif') for name in cif_names} |
|
15
|
|
|
|
|
16
|
|
|
|
|
17
|
|
|
def test_CifReader(cif_paths, reference_data): |
|
18
|
|
|
|
|
19
|
|
|
for name in cif_paths: |
|
20
|
|
|
references = reference_data[name] |
|
21
|
|
|
read_in = list(amd.CifReader(cif_paths[name], show_warnings=True)) |
|
22
|
|
|
|
|
23
|
|
|
if (not len(references) == len(read_in)) or len(read_in) == 0: |
|
24
|
|
|
pytest.fail(f'There are {len(references)} references, but {len(read_in)} structures were read.') |
|
25
|
|
|
|
|
26
|
|
|
for s, s_ in zip(read_in, references): |
|
27
|
|
|
if not s == s_: |
|
28
|
|
|
pytest.fail(f'Structure {s.name} read with CifReader disagrees with reference.') |
|
29
|
|
|
|
|
30
|
|
|
|
|
31
|
|
|
@pytest.fixture(scope='module') |
|
32
|
|
|
def asym_unit_test_cif_path(root_dir): |
|
33
|
|
|
return os.path.join(root_dir, 'OJIGOG.cif') |
|
34
|
|
|
|
|
35
|
|
|
def test_CifReader_equiv_structs(asym_unit_test_cif_path): |
|
36
|
|
|
|
|
37
|
|
|
pdds = [amd.PDD(struct, 100) for struct in amd.CifReader(asym_unit_test_cif_path, show_warnings=False)] |
|
38
|
|
|
|
|
39
|
|
|
if amd.emd(pdds[0], pdds[1]) > 0: |
|
40
|
|
|
pytest.fail(f'Asymmetric structure was read differently than identical expanded version.') |
|
41
|
|
|
|
|
42
|
|
|
|
|
43
|
|
|
@pytest.fixture(scope='module') |
|
44
|
|
|
def equiv_sites_cif_path(root_dir): |
|
45
|
|
|
return os.path.join(root_dir, 'BABMUQ.cif') |
|
46
|
|
|
|
|
47
|
|
|
def test_equiv_sites(equiv_sites_cif_path): |
|
48
|
|
|
|
|
49
|
|
|
pdds = [amd.PDD(s, 100) for s in amd.CifReader(equiv_sites_cif_path, show_warnings=False)] |
|
50
|
|
|
|
|
51
|
|
|
if amd.PDD_pdist(pdds): |
|
52
|
|
|
pytest.fail(f'Equivalent structures by symmetry differ by PDD.') |
|
53
|
|
|
|
|
54
|
|
|
|
|
55
|
|
|
@pytest.fixture(scope='module') |
|
56
|
|
|
def T2_alpha_cif_path(root_dir): |
|
57
|
|
|
return os.path.join(root_dir, 'T2-alpha-solvent.cif') |
|
58
|
|
|
|
|
59
|
|
|
def test_heaviest_component(T2_alpha_cif_path): |
|
60
|
|
|
|
|
61
|
|
|
if not amd.io._CSD_PYTHON_API_ENABLED: |
|
62
|
|
|
pytest.skip(f'Skipping test_heaviest_component as csd-python-api is not installed.') |
|
63
|
|
|
|
|
64
|
|
|
s = amd.CifReader(T2_alpha_cif_path, |
|
65
|
|
|
reader='ccdc', |
|
66
|
|
|
disorder='all_sites', |
|
67
|
|
|
heaviest_component=True).read_one() |
|
68
|
|
|
|
|
69
|
|
|
if not s.asymmetric_unit.shape[0] == 26: |
|
70
|
|
|
pytest.fail(f'Heaviest component test failed.') |
|
71
|
|
|
|