[UnitTests] Move Python test suite and update SCons build process

This commit is contained in:
Ingmar Schoegl
2022-08-04 20:56:47 -05:00
committed by Ray Speth
parent 70e61819d0
commit 6e3c7e8296
23 changed files with 10 additions and 37 deletions

119
test/python/test_func1.py Normal file
View File

@@ -0,0 +1,119 @@
import numpy as np
import cantera as ct
from . import utilities
class TestFunc1(utilities.CanteraTest):
def test_function(self):
f = ct.Func1(np.sin)
self.assertNear(f(0), np.sin(0))
self.assertNear(f(0.1), np.sin(0.1))
self.assertNear(f(0.7), np.sin(0.7))
def test_lambda(self):
f = ct.Func1(lambda t: np.sin(t)*np.sqrt(t))
for t in [0.1, 0.7, 4.5]:
self.assertNear(f(t), np.sin(t)*np.sqrt(t))
def test_callable(self):
class Multiplier:
def __init__(self, factor):
self.factor = factor
def __call__(self, t):
return self.factor * t
m = Multiplier(8.1)
f = ct.Func1(m)
for t in [0.1, 0.7, 4.5]:
self.assertNear(f(t), 8.1*t)
def test_constant(self):
f = ct.Func1(5)
for t in [0.1, 0.7, 4.5]:
self.assertNear(f(t), 5)
def test_sequence(self):
f = ct.Func1([5])
for t in [0.1, 0.7, 4.5]:
self.assertNear(f(t), 5)
with self.assertRaises(TypeError):
ct.Func1([3,4])
def test_numpy(self):
f = ct.Func1(np.array(5))
g = ct.Func1(np.array([[5]]))
for t in [0.1, 0.7, 4.5]:
self.assertNear(f(t), 5)
self.assertNear(g(t), 5)
with self.assertRaises(TypeError):
ct.Func1(np.array([3,4]))
def test_failure(self):
def fails(t):
raise ValueError('bad')
f = ct.Func1(fails)
with self.assertRaises(ValueError):
f(0.1)
def test_unpicklable(self):
import pickle
f = ct.Func1(np.sin)
with self.assertRaises(NotImplementedError):
pickle.dumps(f)
def test_uncopyable(self):
import copy
f = ct.Func1(np.sin)
with self.assertRaises(NotImplementedError):
copy.copy(f)
def test_tabulated1(self):
arr = np.array([[0, 2], [1, 1], [2, 0]])
time = arr[:, 0]
fval = arr[:, 1]
fcn = ct.TabulatedFunction(time, fval)
for t, f in zip(time, fval):
self.assertNear(f, fcn(t))
def test_tabulated2(self):
time = [0, 1, 2]
fval = [2, 1, 0]
fcn = ct.TabulatedFunction(time, fval)
for t, f in zip(time, fval):
self.assertNear(f, fcn(t))
def test_tabulated3(self):
time = 0, 1, 2,
fval = 2, 1, 0,
fcn = ct.TabulatedFunction(time, fval)
self.assertNear(fcn(-1), fval[0])
self.assertNear(fcn(3), fval[-1])
def test_tabulated4(self):
time = np.array([0, 1, 2])
fval = np.array([2, 1, 0])
fcn = ct.TabulatedFunction(time, fval)
tt = .5*(time[1:] + time[:-1])
ff = .5*(fval[1:] + fval[:-1])
for t, f in zip(tt, ff):
self.assertNear(f, fcn(t))
def test_tabulated5(self):
time = [0, 1, 2]
fval = [2, 1, 0]
fcn = ct.TabulatedFunction(time, fval, method='previous')
val = np.array([fcn(v) for v in [-0.5, 0, 0.5, 1.5, 2, 2.5]])
self.assertArrayNear(val, np.array([2.0, 2.0, 2.0, 1.0, 0.0, 0.0]))
def test_tabulated_failures(self):
with self.assertRaisesRegex(ValueError, 'do not match'):
ct.TabulatedFunction(range(2), range(3))
with self.assertRaisesRegex(ValueError, 'must not be empty'):
ct.TabulatedFunction([], [])
with self.assertRaisesRegex(ct.CanteraError, 'monotonically'):
ct.TabulatedFunction((0, 1, 0.5, 2), (2, 1, 1, 0))
with self.assertRaisesRegex(ct.CanteraError, 'not implemented'):
ct.TabulatedFunction((0, 1, 1, 2), (2, 1, 1, 0), method='not implemented')