ReFRACtor
swig_interface_test.py
Go to the documentation of this file.
1 from __future__ import division
2 # We don't normally need to test all the python interface to our C++ classes.
3 # We already test the C++ classes in our C++ unit tests, and the interface
4 # is automatically generated.
5 #
6 # However we have these tests in place to check the underlying functionality
7 # of SWIG (so for example, test that directors are handled correctly.
8 
9 from nose.tools import *
10 from full_physics import *
11 from numpy.testing import *
12 import numpy as np
13 from nose.plugins.skip import Skip, SkipTest
14 import os
15 
16 test_data = os.path.dirname(__file__) + "/../../test/unit/data/"
17 
18 # Start some tests using HeritageFile. This is a particularly simple class,
19 # because it doesn't depend on anything else.
20 
22  '''Simple test that we can call C++ through python and get back
23  a results.'''
24  if(not have_full_physics_swig):
25  raise SkipTest
26  f = HeritageFile(test_data + "heritage_file_test.run")
27  assert f.value_int("ALGORITHMS/points_sun") == 10000
28 
30  '''Test that the doxygen documentation goes through'''
31  if(not have_full_physics_swig):
32  raise SkipTest
33  f = HeritageFile(test_data + "heritage_file_test.run")
34  assert f.__doc__.find(
35 ''' This class reads the heritage file formats.
36 
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
39 
40 @raises(RuntimeError)
42  '''Test that a C++ exception gets translated to a RuntimeError'''
43  if(not have_full_physics_swig):
44  raise SkipTest
45  f = HeritageFile("/home/smyth/Local/Level2/test/unit/data/heritage_file_test.run")
46  f.value_bool("WINDOW_INFO/spectral_window_file")
47 
48 def my_func(self):
49  return self.value_int("ALGORITHMS/points_sun") + 10
50 
51 if(have_full_physics_swig):
52  HeritageFile.my_func = my_func
53 
55  '''Test that we can add pure python functions to a class.'''
56  if(not have_full_physics_swig):
57  raise SkipTest
58  f = HeritageFile(test_data + "heritage_file_test.run")
59  assert f.my_func() == 10000 + 10
60 
62  '''Test returning a numpy array'''
63  if(not have_full_physics_swig):
64  raise SkipTest
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]])
73 
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):
78  raise SkipTest
79  assert conversion(Unit("m"), Unit("cm")) == 100.0
80  u = Unit("m")
81  assert_almost_equal(u.conversion_to_si, 1.0)
82  assert u.name == "m"
83  # Not working yet
84  #print u.base_unit_powers
85 
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):
91  raise SkipTest
92  t = FpException("My exception")
93  assert t.what() == "My exception"
94 
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
98  correctly.'''
99  if(not have_full_physics_swig):
100  raise SkipTest
101  d = DoubleWithUnit(10, "m")
102  d2 = d.convert("cm")
103  assert_almost_equal(d2.value, 10 * 100.0)
104  d2.value = 4
105  d2.units = Unit("m")
106  assert_almost_equal(d2.convert("m").value, 4.0)
107  d2 = d2.convert("cm")
108  d3 = d + d2
109  assert_almost_equal(d3.convert("m").value, 14.0)
110  d3 = d - d2
111  assert_almost_equal(d3.convert("m").value, 6.0)
112  d3 = d / d2
113  assert_almost_equal(d3.convert("dimensionless").value, 10.0 / 4)
114  d3 = d * d2
115  assert_almost_equal(d3.convert("m^2").value, 40.0)
116 
118  '''Test that passes a numpy array to a function'''
119  if(not have_full_physics_swig):
120  raise SkipTest
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]])
125  t.value = b
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])
double conversion(const Unit &Dunit_from, const Unit &Dunit_to)
Return conversion factor to go from one unit to another.
Definition: unit.cc:180

Copyright © 2017, California Institute of Technology.
ALL RIGHTS RESERVED.
U.S. Government Sponsorship acknowledged.
Generated Fri Aug 24 2018 15:44:10