forked from open-atmos/PyPartMC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_gas_data.py
93 lines (70 loc) · 2.37 KB
/
test_gas_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
####################################################################################################
# This file is a part of PyPartMC licensed under the GNU General Public License v3 (LICENSE file) #
# Copyright (C) 2022 University of Illinois Urbana-Champaign #
# Authors: https://github.com/open-atmos/PyPartMC/graphs/contributors #
####################################################################################################
import json
import pytest
import PyPartMC as ppmc
GAS_DATA_CTOR_ARG_MINIMAL = ("SO2",)
class TestGasData:
@staticmethod
def test_ctor():
# arrange
pass
# act
sut = ppmc.GasData(("SO2",))
# assert
assert sut is not None
@staticmethod
def test_len():
# arrange
data = ("X", "Y", "Z")
sut = ppmc.GasData(data)
# act
size = len(sut)
# assert
assert size == len(data)
@staticmethod
def test_str():
# arrange
data = ("A", "B", "C")
sut = ppmc.GasData(data)
# act
string = str(sut)
# assert
assert string == json.dumps(data, separators=(",", ":"))
@staticmethod
@pytest.mark.parametrize(
"ctor_arg", (GAS_DATA_CTOR_ARG_MINIMAL, ("SO2", "NO2"), ("A", "B", "C"))
)
def test_spec_by_name(ctor_arg):
# arrange
sut = ppmc.GasData(ctor_arg)
# act
indices = [sut.spec_by_name(name) for name in ctor_arg]
# assert
assert indices == list(range(len(ctor_arg)))
@staticmethod
@pytest.mark.parametrize(
"ctor_arg", (GAS_DATA_CTOR_ARG_MINIMAL, ("SO2", "NO2"), ("A", "B", "C"))
)
def test_species(ctor_arg):
# arrange
sut = ppmc.GasData(ctor_arg)
# act
names = sut.species
# assert
for i in range(len(sut)):
# pylint: disable=unsubscriptable-object
assert names[i] == ctor_arg[i]
@staticmethod
def test_species_immutable():
# arrange
sut = ppmc.GasData(GAS_DATA_CTOR_ARG_MINIMAL)
names = sut.species
# assert
with pytest.raises(TypeError) as exc_info:
names[0] = "Z" # pylint: disable=unsupported-assignment-operation
# assert
assert "not support item assignment" in str(exc_info.value)