ReFRACtor
lua_test.py
Go to the documentation of this file.
1 from builtins import object
2 from nose.tools import *
3 from full_physics import *
4 from nose.plugins.skip import Skip, SkipTest
5 import os
6 
7 test_data = os.path.dirname(__file__) + "/../../test/unit/data/"
8 
9 if(not have_full_physics_swig):
10  class LuaCallback(object):
11  pass
12 
13 # A callback that takes no arguments
15  def __init__(self, ls):
16  LuaCallback.__init__(self, ls)
17  self.ls = ls
18 
19  def call(self, obj1,obj2,obj3,obj4,obj5,obj6,obj7,obj8,obj9,obj10):
20  return LuabindObject(self.ls, 1)
21 
22 # A callback that takes one arguments
24  def __init__(self, ls):
25  LuaCallback.__init__(self, ls)
26  self.ls = ls
27 
28  def call(self, obj1,obj2,obj3,obj4,obj5,obj6,obj7,obj8,obj9,obj10):
29  obj1.v3 = "hi there"
30  return LuabindObject(self.ls, 2)
31 
32 class TestLua(object):
33  def setUp(self):
34  if(not have_full_physics_swig):
35  raise SkipTest
36  self.ls = LuaState(test_data)
37 
38  # Test basic reading and writing of object to Lua
40  self.ls.run("test_var = {}\n")
41  test_var = self.ls.globals.test_var
42  test_var.v1 = "hi there"
43  test_var.v2 = 1
44  test_var.v3 = 2.0
45  t = HeritageFile(test_data + "heritage_file_test.run")
46  assert t.value_int("ALGORITHMS/points_sun") == 10000
47  test_var.test_obj = t
48  assert self.ls.globals.test_var.v1 == "hi there"
49  assert self.ls.globals.test_var.v2 == 1
50  assert self.ls.globals.test_var.v3 == 2.0
51  assert self.ls.globals.test_var.test_obj.value_int("ALGORITHMS/points_sun") == 10000
52 
53  test_list = ["a", "b", "abc"]
54  test_var.test_list = test_list
55  for l_idx, l_val in enumerate(test_list):
56  assert self.ls.globals.test_var.test_list[l_idx+1] == test_list[l_idx]
57 
58  test_dict = {"k1": "abc", "k2": "cde", 1: "blah"}
59  test_var.test_dict = test_dict
60  for l_key, l_val in list(test_dict.items()):
61  assert self.ls.globals.test_var.test_dict[l_key] == test_dict[l_key]
62 
63  # Test reading a config file
64  def test_config(self):
65  self.ls.do_file(test_data + "config.lua")
66  assert self.ls.globals.config.atmosphere.pressure.surface_pressure.value.value == 96716.6249
67 
68  # Test a callback function object. Note you don't normally use this
69  # directly, but rather use the callback tested in the next function
71  self.ls.run("test_var = {}\n")
72  test_var = self.ls.globals.test_var
73  test_var.f0 = MyCallback0(self.ls)
74  test_var.f1 = MyCallback1(self.ls)
75  global test_v
76  test_v = 0
77  assert test_v == 0
78  self.ls.run("test_v = test_var.f0()")
79  assert self.ls.globals.test_v == 1
80  self.ls.run("test_v = test_var:f1()")
81  assert self.ls.globals.test_v == 2
82  assert test_var.v3 == "hi there"
83 
84  def f0(self):
85  global test_v
86  test_v = 1
87 
88  def f1(self, v):
89  global test_v
90  test_v = v
91 
92  def f2(self, v1, v2):
93  global test_v
94  test_v = v1 + v2
95 
96  def f3(self, v1, v2, v3):
97  global test_v
98  test_v = v1 + v2 + v3
99 
100  def f3_return(self, v1, v2, v3):
101  return v1 + v2 + v3
102 
103  # Test passing any callable object to Lua, to make sure the callbacks work
104  def test_callback(self):
105  g = self.ls.globals
106  g.f0 = self.f0
107  g.f1 = self.f1
108  g.f2 = self.f2
109  g.f3 = self.f3
110  g.f3_return = self.f3_return
111  global test_v
112  test_v = 0
113  assert test_v == 0
114  self.ls.run("f0(nil,nil,nil,nil,nil,nil,nil,nil,nil)")
115  assert test_v == 1
116  self.ls.run("f1(3.5)")
117  assert test_v == 3.5
118  self.ls.run("f2(3, 4)")
119  assert test_v == 3 + 4
120  self.ls.run("f3(3, 4, 5)")
121  assert test_v == 3 + 4 + 5
122  self.ls.run("val = f3_return(3, 4, 5)")
123  assert g.val == 3 + 4 + 5
124 
125  # Test calling a Lua function.
126  def test_luafunc(self):
127  self.ls.run('''
128  function test_func(v1, v2)
129  return v1 + v2 * 2
130  end''')
131  tf = self.ls.globals.test_func
132  assert tf(1, 2) == 1 + 2 * 2
133  self.ls.run('''
134  function test_func2()
135  return "blah"
136  end''')
137  tf2 = self.ls.globals.test_func2
138  assert tf2() == "blah"
139 
def f3_return(self, v1, v2, v3)
Definition: lua_test.py:100
def setUp(self)
Definition: lua_test.py:33
def call(self, obj1, obj2, obj3, obj4, obj5, obj6, obj7, obj8, obj9, obj10)
Definition: lua_test.py:28
def __init__(self, ls)
Definition: lua_test.py:24
def test_callback(self)
Definition: lua_test.py:104
def f1(self, v)
Definition: lua_test.py:88
def test_read_and_write(self)
Definition: lua_test.py:39
def call(self, obj1, obj2, obj3, obj4, obj5, obj6, obj7, obj8, obj9, obj10)
Definition: lua_test.py:19
def test_callback_object(self)
Definition: lua_test.py:70
def test_luafunc(self)
Definition: lua_test.py:126
def f2(self, v1, v2)
Definition: lua_test.py:92
def __init__(self, ls)
Definition: lua_test.py:15
def f3(self, v1, v2, v3)
Definition: lua_test.py:96
def test_config(self)
Definition: lua_test.py:64
def f0(self)
Definition: lua_test.py:84

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