1
1
import os
2
- import time
3
-
2
+ import threading
4
3
# core elements
5
4
from rafcon .core .states .state import StateExecutionStatus
6
5
7
6
from rafcon .core .storage import storage
8
7
import rafcon .core .singleton
9
8
from rafcon .core .singleton import state_machine_execution_engine
9
+ from tests .utils import wait_for_execution_engine_sync_counter
10
10
from rafcon .utils import log
11
11
12
12
# test environment elements
@@ -23,19 +23,12 @@ def test_run_this_state(caplog):
23
23
sm = storage .load_state_machine_from_path (testing_utils .get_test_sm_path (os .path .join (
24
24
"unit_test_state_machines" , "test_run_this_state" )))
25
25
rafcon .core .singleton .state_machine_manager .add_state_machine (sm )
26
- # Set state machine as active state machine
27
- # rafcon.core.singleton.state_machine_manager.active_state_machine_id = state_machine.state_machine_id
28
26
# Run selected state machine
27
+ rafcon .core .singleton .global_variable_manager .set_variable ("test_value" , 1 )
29
28
state_machine_execution_engine .run_selected_state ("BTWFZQ/EPQSTG" , sm .state_machine_id )
30
- timeout = time .time ()
31
- while not sm .get_state_by_path ("BTWFZQ/EPQSTG" ).state_execution_status is StateExecutionStatus .WAIT_FOR_NEXT_STATE :
32
- time .sleep (.05 )
33
- if time .time ()- timeout > 2 :
34
- raise RuntimeError ("execution_state EPQSTG didn't run --> timeout" )
35
- # Stop execution engine
29
+ wait_for_execution_engine_sync_counter (1 , logger )
36
30
state_machine_execution_engine .stop ()
37
31
rafcon .core .singleton .state_machine_execution_engine .join ()
38
-
39
32
# assert variable state
40
33
try :
41
34
assert rafcon .core .singleton .global_variable_manager .get_variable ("test_value" ) == 2
0 commit comments