summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2019-12-10 14:21:35 +0100
committerDaniel Friesel <daniel.friesel@uos.de>2019-12-10 14:21:35 +0100
commit5bf60653d0dba3f1e0dd44f8403b478a2107b3bd (patch)
tree7aae6b64ec6113ad2e442ee9cf9072476595c2fd /test
parentbd3da8396a3ee4e1768507827158b7cdce317603 (diff)
update codegen + test for PTA attribute changes
Diffstat (limited to 'test')
-rwxr-xr-xtest/test_codegen.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/test_codegen.py b/test/test_codegen.py
index bdde484..fb0d387 100755
--- a/test/test_codegen.py
+++ b/test/test_codegen.py
@@ -91,12 +91,12 @@ class TestCG(unittest.TestCase):
def test_statetransition_immediate(self):
pta = PTA.from_json(example_json_1)
pta.set_random_energy_model()
- pta.state['IDLE'].power = 9
+ pta.state['IDLE'].power.value = 9
cg = get_simulated_accountingmethod('static_statetransition_immediate')(pta, 1000000, 'uint8_t', 'uint8_t', 'uint8_t', 'uint8_t')
cg.current_state = pta.state['IDLE']
cg.sleep(7)
self.assertEqual(cg.get_energy(), 9 * 7)
- pta.transitions[1].energy = 123
+ pta.transitions[1].energy.value = 123
cg.pass_transition(pta.transitions[1])
self.assertEqual(cg.get_energy(), 9 * 7 + 123)
cg.pass_transition(pta.transitions[1])
@@ -120,8 +120,8 @@ class TestCG(unittest.TestCase):
cg.sleep(90)
self.assertEqual(cg.get_energy(), 900)
- pta.state['IDLE'].power = 9 # -> 90 uW
- pta.transitions[1].energy = 1 # -> 100 pJ
+ pta.state['IDLE'].power.value = 9 # -> 90 uW
+ pta.transitions[1].energy.value = 1 # -> 100 pJ
cg = get_simulated_accountingmethod('static_statetransition_immediate')(pta, 1000000, 'uint8_t', 'uint8_t', 'uint8_t', 'uint8_t', 1e-5, 1e-5, 1e-10)
cg.current_state = pta.state['IDLE']
cg.sleep(10) # 10 us
@@ -134,12 +134,12 @@ class TestCG(unittest.TestCase):
def test_statetransition(self):
pta = PTA.from_json(example_json_1)
pta.set_random_energy_model()
- pta.state['IDLE'].power = 9
+ pta.state['IDLE'].power.value = 9
cg = get_simulated_accountingmethod('static_statetransition')(pta, 1000000, 'uint8_t', 'uint8_t', 'uint8_t', 'uint8_t')
cg.current_state = pta.state['IDLE']
cg.sleep(7)
self.assertEqual(cg.get_energy(), 9 * 7)
- pta.transitions[1].energy = 123
+ pta.transitions[1].energy.value = 123
cg.pass_transition(pta.transitions[1])
self.assertEqual(cg.get_energy(), 9 * 7 + 123)
cg.pass_transition(pta.transitions[1])
@@ -148,12 +148,12 @@ class TestCG(unittest.TestCase):
def test_state_immediate(self):
pta = PTA.from_json(example_json_1)
pta.set_random_energy_model()
- pta.state['IDLE'].power = 9
+ pta.state['IDLE'].power.value = 9
cg = get_simulated_accountingmethod('static_state_immediate')(pta, 1000000, 'uint8_t', 'uint8_t', 'uint8_t', 'uint8_t')
cg.current_state = pta.state['IDLE']
cg.sleep(7)
self.assertEqual(cg.get_energy(), 9 * 7)
- pta.transitions[1].energy = 123
+ pta.transitions[1].energy.value = 123
cg.pass_transition(pta.transitions[1])
self.assertEqual(cg.get_energy(), 9 * 7)
cg.pass_transition(pta.transitions[1])
@@ -162,12 +162,12 @@ class TestCG(unittest.TestCase):
def test_state(self):
pta = PTA.from_json(example_json_1)
pta.set_random_energy_model()
- pta.state['IDLE'].power = 9
+ pta.state['IDLE'].power.value = 9
cg = get_simulated_accountingmethod('static_state')(pta, 1000000, 'uint8_t', 'uint8_t', 'uint8_t', 'uint8_t')
cg.current_state = pta.state['IDLE']
cg.sleep(7)
self.assertEqual(cg.get_energy(), 9 * 7)
- pta.transitions[1].energy = 123
+ pta.transitions[1].energy.value = 123
cg.pass_transition(pta.transitions[1])
self.assertEqual(cg.get_energy(), 9 * 7)
cg.pass_transition(pta.transitions[1])