1 from __future__
import division
10 from full_physics
import *
13 from nose.plugins.skip
import Skip, SkipTest
16 test_data = os.path.dirname(__file__) +
"/../../test/unit/data/" 22 '''Simple test that we can call C++ through python and get back 24 if(
not have_full_physics_swig):
26 f = HeritageFile(test_data +
"heritage_file_test.run")
27 assert f.value_int(
"ALGORITHMS/points_sun") == 10000
30 '''Test that the doxygen documentation goes through''' 31 if(
not have_full_physics_swig):
33 f = HeritageFile(test_data +
"heritage_file_test.run")
34 assert f.__doc__.find(
35 ''' This class reads the heritage file formats. 37 We read both the configuration file and the matrix files (there are 38 similar enough in format that it makes sense to combine these two).''') > 0
42 '''Test that a C++ exception gets translated to a RuntimeError''' 43 if(
not have_full_physics_swig):
45 f = HeritageFile(
"/home/smyth/Local/Level2/test/unit/data/heritage_file_test.run")
46 f.value_bool(
"WINDOW_INFO/spectral_window_file")
49 return self.value_int(
"ALGORITHMS/points_sun") + 10
51 if(have_full_physics_swig):
52 HeritageFile.my_func = my_func
55 '''Test that we can add pure python functions to a class.''' 56 if(
not have_full_physics_swig):
58 f = HeritageFile(test_data +
"heritage_file_test.run")
59 assert f.my_func() == 10000 + 10
62 '''Test returning a numpy array''' 63 if(
not have_full_physics_swig):
65 f = HeritageFile(test_data +
"old_ascii/solar_cont_v1.dat")
66 assert_array_equal(f.data,
67 [[ 1.00000000e+00, 8.83596000e+21],
68 [ 2.00000000e+00, -9.48206000e+20],
69 [ 3.00000000e+00, -1.51700000e+22],
70 [ 4.00000000e+00, 1.74114000e+22],
71 [ 5.00000000e+00, -7.73485000e+21],
72 [ 6.00000000e+00, 1.23130000e+21]])
75 '''Test is a second class. This makes sure the module initialization etc. 76 get handled correctly for multiple classes.''' 77 if(
not have_full_physics_swig):
79 assert conversion(Unit(
"m"), Unit(
"cm")) == 100.0
81 assert_almost_equal(u.conversion_to_si, 1.0)
87 '''Test handling of a class with a .h but not a .cc file. This is 88 mainly a test of the Makefile, SWIG doesn't really act any differently 89 for .h vs .h and .cc files''' 90 if(
not have_full_physics_swig):
92 t = FpException(
"My exception")
93 assert t.what() ==
"My exception" 96 '''Test that import is working properly when a class uses another one. 97 We also test that the python operators (e.g., __mul__) get handled 99 if(
not have_full_physics_swig):
101 d = DoubleWithUnit(10,
"m")
103 assert_almost_equal(d2.value, 10 * 100.0)
106 assert_almost_equal(d2.convert(
"m").value, 4.0)
107 d2 = d2.convert(
"cm")
109 assert_almost_equal(d3.convert(
"m").value, 14.0)
111 assert_almost_equal(d3.convert(
"m").value, 6.0)
113 assert_almost_equal(d3.convert(
"dimensionless").value, 10.0 / 4)
115 assert_almost_equal(d3.convert(
"m^2").value, 40.0)
118 '''Test that passes a numpy array to a function''' 119 if(
not have_full_physics_swig):
121 a = np.array([[1, 2],[3,4],[5,6]])
122 t = ArrayWithUnit_double_2(a,
"m")
123 assert_almost_equal(t.value, a)
124 b = np.array([[10, 20],[3,4],[55,66]])
126 assert_almost_equal(t.value, b)
127 t = ArrayWithUnit_double_2(a[0:2,:],
"m")
128 assert_almost_equal(t.value, [[1,2],[3,4]])
129 t = ArrayWithUnit_double_2(a[0::2,:],
"m")
130 assert_almost_equal(t.value, [[1,2],[5,6]])
131 t = ArrayWithUnit_double_1(a[0:2,1],
"m")
132 assert_almost_equal(t.value, [2,4])
def test_extend_class_in_python()
def test_passing_numpy_array()
double conversion(const Unit &Dunit_from, const Unit &Dunit_to)
Return conversion factor to go from one unit to another.
def test_returning_numpy_array()
def test_exception_handled()
def test_swig_basic_call()
def test_class_using_another()
def test_header_only_class()