Search in sources :

Example 1 with StateCase

use of org.yakindu.sct.model.sexec.StateCase in project statecharts by Yakindu.

the class Assert method findNext.

protected static Iterable<Step> findNext(Step step, Collection<? extends ExecutionState> currentStates, List<? extends AbstractStep> requiredSteps) {
    if (step instanceof Sequence) {
        return ((Sequence) step).getSteps();
    } else if (step instanceof Call) {
        return Collections.singleton(((Call) step).getStep());
    } else if (step instanceof StateSwitch) {
        StateCase stateCase = null;
        StringBuilder sb = new StringBuilder();
        for (StateCase caze : ((StateSwitch) step).getCases()) {
            sb.append(", " + caze.getState().getName());
            if (stateCase == null && currentStates.contains(caze.getState())) {
                stateCase = caze;
            }
        }
        assertNotNull("No state case found for " + currentStates + " in " + sb.toString(), stateCase);
        return Collections.singleton(stateCase.getStep());
    }
    return null;
}
Also used : FeatureCall(org.yakindu.base.expressions.expressions.FeatureCall) Call(org.yakindu.sct.model.sexec.Call) StateCase(org.yakindu.sct.model.sexec.StateCase) Sequence(org.yakindu.sct.model.sexec.Sequence) StateSwitch(org.yakindu.sct.model.sexec.StateSwitch)

Example 2 with StateCase

use of org.yakindu.sct.model.sexec.StateCase in project statecharts by Yakindu.

the class ModelSequencerHierarchyTest method testParentExitDeep.

/**
 * The transition sequence must contain all exit actions for parent states
 * that will be left by a transition.
 */
@SuppressWarnings("unused")
@Test
public void testParentExitDeep() {
    Statechart sc = _createStatechart("sc");
    {
        InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
        VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, s_scope);
        Region r = _createRegion("r", sc);
        {
            State s1 = _createState("s1", r);
            {
                _createExitAssignment(v1, s1, 1);
                Region r_s1 = _createRegion("r", s1);
                {
                    State s3 = _createState("s3", r_s1);
                    {
                        _createExitAssignment(v1, s3, 2);
                        Region r_s3 = _createRegion("r", s3);
                        {
                            State s4 = _createState("s4", r_s3);
                            _createExitAssignment(v1, s4, 3);
                            State s5 = _createState("s5", r_s3);
                        }
                    }
                }
            }
            State s2 = _createState("s2", r);
            {
                Region r_s1 = _createRegion("r", s2);
                {
                    _createState("s6", r_s1);
                }
            }
        }
    }
    _createTransition(findState(sc, "s4"), findState(sc, "s6"));
    ExecutionFlow flow = sequencer.transform(sc);
    ExecutionState _s1 = flow.getStates().get(0);
    assertEquals("sc.r.s1", _s1.getName());
    assertNotNull(_s1.getExitAction());
    ExecutionState _s3 = flow.getStates().get(1);
    assertEquals("sc.r.s1.r.s3", _s3.getName());
    assertNotNull(_s3.getExitAction());
    ExecutionState _s4 = flow.getStates().get(2);
    assertEquals("sc.r.s1.r.s3.r.s4", _s4.getName());
    assertNotNull(_s4.getExitAction());
    ExecutionState _s6 = flow.getStates().get(5);
    assertEquals("sc.r.s2.r.s6", _s6.getName());
    Reaction _t = _s4.getReactions().get(0);
    assertTrue(_t.isTransition());
    Sequence _effect = (Sequence) _t.getEffect();
    assertEquals(2, _effect.getSteps().size());
    assertCall(_effect, 0, _s1.getExitSequence());
    assertCall(_effect, 1, _s6.getEnterSequences().get(0));
    assertCall(_s1.getExitSequence(), 0, _s1.getSubScopes().get(0).getExitSequence());
    StateSwitch _switch = (StateSwitch) _s1.getSubScopes().get(0).getExitSequence().getSteps().get(0);
    StateCase _s4_case = assertedStateCase(_switch, _s4);
    assertCall(assertedSequence(_s4_case.getStep()), 0, _s4.getExitSequence());
    assertCall(assertedSequence(_s4_case.getStep()), 1, _s3.getExitAction());
    assertCall(_s1.getExitSequence(), 1, _s1.getExitAction());
}
Also used : ExecutionState(org.yakindu.sct.model.sexec.ExecutionState) VariableDefinition(org.yakindu.sct.model.stext.stext.VariableDefinition) StextTestFactory._createVariableDefinition(org.yakindu.sct.model.stext.test.util.StextTestFactory._createVariableDefinition) SGraphTestFactory._createState(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createState) ExecutionState(org.yakindu.sct.model.sexec.ExecutionState) SCTTestUtil.findState(org.yakindu.sct.model.sexec.transformation.test.SCTTestUtil.findState) State(org.yakindu.sct.model.sgraph.State) StateCase(org.yakindu.sct.model.sexec.StateCase) ExecutionFlow(org.yakindu.sct.model.sexec.ExecutionFlow) Statechart(org.yakindu.sct.model.sgraph.Statechart) SGraphTestFactory._createStatechart(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createStatechart) InterfaceScope(org.yakindu.sct.model.stext.stext.InterfaceScope) StextTestFactory._createInterfaceScope(org.yakindu.sct.model.stext.test.util.StextTestFactory._createInterfaceScope) Region(org.yakindu.sct.model.sgraph.Region) SGraphTestFactory._createRegion(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createRegion) Sequence(org.yakindu.sct.model.sexec.Sequence) Reaction(org.yakindu.sct.model.sexec.Reaction) StateSwitch(org.yakindu.sct.model.sexec.StateSwitch) Test(org.junit.Test)

Example 3 with StateCase

use of org.yakindu.sct.model.sexec.StateCase in project statecharts by Yakindu.

the class Assert method assertedStateCase.

public static StateCase assertedStateCase(Step step, ExecutionState state) {
    assertNotNull("Step is null", step);
    assertNotNull("No state specified", state);
    assertTrue("Step is no StateSwitch (was " + step.getClass().getName() + ")", step instanceof StateSwitch);
    for (StateCase sCase : ((StateSwitch) step).getCases()) {
        if (sCase.getState() == state)
            return sCase;
    }
    fail("No case for state '" + state.getSimpleName() + "' exists.");
    return null;
}
Also used : StateCase(org.yakindu.sct.model.sexec.StateCase) StateSwitch(org.yakindu.sct.model.sexec.StateSwitch)

Example 4 with StateCase

use of org.yakindu.sct.model.sexec.StateCase in project statecharts by Yakindu.

the class Assert method assertStateSwitch.

public static void assertStateSwitch(Step step, ExecutionState... states) {
    assertNotNull("Step is null", step);
    assertTrue("Step is no StateSwitch (was " + step.getClass().getName() + ")", step instanceof StateSwitch);
    List<ExecutionState> stateList = Arrays.asList(states);
    List<ExecutionState> stateCases = new ArrayList<ExecutionState>();
    for (StateCase aCase : ((StateSwitch) step).getCases()) {
        stateCases.add(aCase.getState());
    }
    assertEquals("StateSwitch cases do not match!", stateList, stateCases);
}
Also used : ExecutionState(org.yakindu.sct.model.sexec.ExecutionState) StateCase(org.yakindu.sct.model.sexec.StateCase) ArrayList(java.util.ArrayList) StateSwitch(org.yakindu.sct.model.sexec.StateSwitch)

Aggregations

StateCase (org.yakindu.sct.model.sexec.StateCase)4 StateSwitch (org.yakindu.sct.model.sexec.StateSwitch)4 ExecutionState (org.yakindu.sct.model.sexec.ExecutionState)2 Sequence (org.yakindu.sct.model.sexec.Sequence)2 ArrayList (java.util.ArrayList)1 Test (org.junit.Test)1 FeatureCall (org.yakindu.base.expressions.expressions.FeatureCall)1 Call (org.yakindu.sct.model.sexec.Call)1 ExecutionFlow (org.yakindu.sct.model.sexec.ExecutionFlow)1 Reaction (org.yakindu.sct.model.sexec.Reaction)1 SCTTestUtil.findState (org.yakindu.sct.model.sexec.transformation.test.SCTTestUtil.findState)1 Region (org.yakindu.sct.model.sgraph.Region)1 State (org.yakindu.sct.model.sgraph.State)1 Statechart (org.yakindu.sct.model.sgraph.Statechart)1 SGraphTestFactory._createRegion (org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createRegion)1 SGraphTestFactory._createState (org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createState)1 SGraphTestFactory._createStatechart (org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createStatechart)1 InterfaceScope (org.yakindu.sct.model.stext.stext.InterfaceScope)1 VariableDefinition (org.yakindu.sct.model.stext.stext.VariableDefinition)1 StextTestFactory._createInterfaceScope (org.yakindu.sct.model.stext.test.util.StextTestFactory._createInterfaceScope)1