use of org.yakindu.sct.model.stext.stext.InterfaceScope in project statecharts by Yakindu.
the class ModelSequencerOrthogonalityTest method testSiblingRegionExitFromSourceState.
/*
* --------------------------------------------------------------------------
* ----------------- Exit behavior tests
* ------------------------------------
* -------------------------------------------------------
*/
/**
* The transition from a leaf state with orthogonal siblings must invoke the
* exit sequence of the orthogonal sibling regions.
*/
@SuppressWarnings("unused")
@Test
public void testSiblingRegionExitFromSourceState() {
Statechart sc = _createStatechart("sc");
{
InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, s_scope);
Region r = _createRegion("r", sc);
{
Entry r_entry = _createEntry(EntryKind.INITIAL, null, r);
State s1 = _createState("s1", r);
{
Region r2 = _createRegion("r2", s1);
{
Entry r2_entry = _createEntry(EntryKind.INITIAL, null, r2);
State s2 = _createState("s2", r2);
_createTransition(r2_entry, s2);
State s2b = _createState("s2b", r2);
}
Region r3 = _createRegion("r3", s1);
{
Entry r3_entry = _createEntry(EntryKind.INITIAL, null, r3);
State s3 = _createState("s3", r3);
_createTransition(r3_entry, s3);
}
Region r4 = _createRegion("r4", s1);
{
Entry r4_entry = _createEntry(EntryKind.INITIAL, null, r4);
State s4 = _createState("s4", r4);
_createTransition(r4_entry, s4);
State s4b = _createState("s4b", r4);
}
}
_createTransition(r_entry, s1);
State s5 = _createState("s5", r);
_createTransition(findState(sc, "s3"), s5);
}
}
ExecutionFlow flow = sequencer.transform(sc);
ExecutionState _s1 = flow.getStates().get(0);
assertEquals("sc.r.s1", _s1.getName());
ExecutionState _s2 = flow.getStates().get(1);
assertEquals("sc.r.s1.r2.s2", _s2.getName());
ExecutionState _s2b = flow.getStates().get(2);
assertEquals("sc.r.s1.r2.s2b", _s2b.getName());
ExecutionState _s3 = flow.getStates().get(3);
assertEquals("sc.r.s1.r3.s3", _s3.getName());
ExecutionState _s4 = flow.getStates().get(4);
assertEquals("sc.r.s1.r4.s4", _s4.getName());
ExecutionState _s4b = flow.getStates().get(5);
assertEquals("sc.r.s1.r4.s4b", _s4b.getName());
ExecutionState _s5 = flow.getStates().get(6);
assertEquals("sc.r.s5", _s5.getName());
Reaction _t = _s3.getReactions().get(0);
assertTrue(_t.isTransition());
Sequence _effect = (Sequence) _t.getEffect();
assertEquals(2, _effect.getSteps().size());
assertedOrder(_effect, Lists.newArrayList(_s2b, _s3, _s4b), Lists.newArrayList(new StepLeaf(_s2b.getExitSequence()), new StepLeaf(_s3.getExitSequence()), new StepLeaf(_s4b.getExitSequence())));
assertCall(_effect, 1, _s5.getEnterSequences().get(0));
}
use of org.yakindu.sct.model.stext.stext.InterfaceScope in project statecharts by Yakindu.
the class ModelSequencertDeclarationsTest method testMapScope.
@SuppressWarnings("unused")
@Test
public void testMapScope() {
InterfaceScope scope = _createInterfaceScope(null, null);
EventDefinition e1 = _createEventDefinition("e1", scope);
EventDefinition e2 = _createEventDefinition("e2", scope);
VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, scope);
Scope _scope = structureMapping.mapScope(scope);
assertTrue(_scope instanceof InterfaceScope);
assertEquals(3, _scope.getDeclarations().size());
for (int i = 0; i < _scope.getDeclarations().size(); i++) {
Declaration s_decl = scope.getDeclarations().get(i);
Declaration r_decl = _scope.getDeclarations().get(i);
assertNotSame(s_decl, r_decl);
assertEquals(s_decl.getName(), r_decl.getName());
assertEquals(s_decl.getClass(), r_decl.getClass());
}
}
use of org.yakindu.sct.model.stext.stext.InterfaceScope in project statecharts by Yakindu.
the class ModelSequencerHistoryTest method testDeepHistorySave.
@Test
public void testDeepHistorySave() {
Statechart sc = _createStatechart("sc");
{
InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, s_scope);
Region r = _createRegion("r", sc);
{
Entry r_entry = _createEntry(EntryKind.DEEP_HISTORY, null, r);
State s1 = _createState("s1", r);
State s2 = _createState("s2", r);
{
_createEntryAssignment(v1, s2, 3);
Region r2 = _createRegion("r2", s2);
{
Entry e = _createEntry(EntryKind.INITIAL, null, r2);
Entry history = _createEntry(EntryKind.SHALLOW_HISTORY, "history", r2);
State s3 = _createState("s3", r2);
{
_createEntryAssignment(v1, s3, 4);
}
State s4 = _createState("s4", r2);
{
Region r4 = _createRegion("r4", s4);
{
Entry e4 = _createEntry(EntryKind.INITIAL, null, r2);
State s5 = _createState("s5", r4);
_createTransition(e4, s5);
_createTransition(s5, s1);
}
}
_createTransition(e, s3);
_createTransition(history, s3);
_createTransition(s3, s4);
_createTransition(s1, history);
}
}
_createTransition(r_entry, s1);
_createTransition(s1, s2);
}
}
ExecutionFlow flow = sequencer.transform(sc);
ExecutionState _s1 = flow.getStates().get(0);
assertEquals("sc.r.s1", _s1.getName());
ExecutionState _s2 = flow.getStates().get(1);
assertEquals("sc.r.s2", _s2.getName());
ExecutionState _s3 = flow.getStates().get(2);
assertEquals("sc.r.s2.r2.s3", _s3.getName());
ExecutionState _s4 = flow.getStates().get(3);
assertEquals("sc.r.s2.r2.s4", _s4.getName());
ExecutionState _s5 = flow.getStates().get(4);
assertEquals("sc.r.s2.r2.s4.r4.s5", _s5.getName());
// get the transition effect from s5 to s1
Step effect = _s5.getReactions().get(0).getEffect();
assertedOrder(effect, Lists.newArrayList(_s5), Lists.newArrayList(// new StepSaveHistory((ExecutionRegion) _s5.getSuperScope()),
new StepLeaf(_s5.getExitSequence().getSteps().get(0)), new StepLeaf(_s1.getEnterSequences().get(0).getSteps().get(0)), new StepSaveHistory((ExecutionRegion) _s1.getSuperScope())));
// get the transition effect from s3 to s4(s5)
effect = _s3.getReactions().get(0).getEffect();
assertedOrder(effect, Lists.newArrayList(_s5), Lists.newArrayList(new StepLeaf(_s3.getExitSequence().getSteps().get(0)), new StepSaveHistory((ExecutionRegion) _s4.getSuperScope())));
}
use of org.yakindu.sct.model.stext.stext.InterfaceScope in project statecharts by Yakindu.
the class ModelSequencerSCTest method testNoNullCall.
@Test
public void testNoNullCall() {
Statechart sc = _createStatechart("sc");
{
InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, s_scope);
Region r = _createRegion("r", sc);
{
Entry r_entry = _createEntry(EntryKind.INITIAL, null, r);
State s1 = _createState("s1", r);
State s2 = _createState("s2", r);
{
_createEntryAssignment(v1, s2, 3);
Region r2 = _createRegion("r2", s2);
{
Entry e = _createEntry(EntryKind.INITIAL, null, r2);
Entry history = _createEntry(EntryKind.SHALLOW_HISTORY, "history", r2);
State s3 = _createState("s3", r2);
{
_createEntryAssignment(v1, s3, 4);
}
State s4 = _createState("s4", r2);
{
Region r4 = _createRegion("r4", s4);
{
Entry e4 = _createEntry(EntryKind.INITIAL, null, r2);
State s5 = _createState("s5", r4);
_createTransition(e4, s5);
_createTransition(s5, s1);
}
}
_createTransition(e, s3);
_createTransition(history, s3);
_createTransition(s3, s4);
_createTransition(s1, history);
}
}
_createTransition(r_entry, s1);
_createTransition(s1, s2);
}
}
ExecutionFlow flow = sequencer.transform(sc);
TreeIterator<EObject> iter = flow.eAllContents();
while (iter.hasNext()) {
EObject child = iter.next();
if (child instanceof Call) {
Call childCall = (Call) child;
if (childCall.getStep() == null) {
Sequence sequence = assertedSequence((Step) childCall.eContainer());
fail(sequence.getName() + ": " + sequence.getComment());
}
}
}
}
use of org.yakindu.sct.model.stext.stext.InterfaceScope in project statecharts by Yakindu.
the class ModelSequencerStateTest method testFinalStateEnterSequenceCall.
/**
* The enter sequence must be called withnin incoming transitions.
*/
@SuppressWarnings("unused")
@Test
public void testFinalStateEnterSequenceCall() {
Statechart sc = _createStatechart("sc");
{
InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, s_scope);
EventDefinition e1 = _createEventDefinition("e1", s_scope);
Region r = _createRegion("r", sc);
{
State s1 = _createState("s1", r);
FinalState fs = _createFinalState(r);
Transition t_s1_fs = _createTransition(s1, fs);
_createReactionTrigger(t_s1_fs);
_createRegularEventSpec(e1, (ReactionTrigger) t_s1_fs.getTrigger());
}
}
ExecutionFlow flow = sequencer.transform(sc);
ExecutionState _s1 = flow.getStates().get(0);
assertEquals("sc.r.s1", _s1.getName());
ExecutionState _fs = flow.getStates().get(1);
assertEquals("sc.r._final_", _fs.getName());
assertNull(_fs.getEntryAction());
assertNull(_fs.getExitAction());
// the transition s1 -> fs must includes the fs exit sequence call
Sequence cycle = _s1.getReactSequence();
If _if = (If) SCTTestUtil.flattenSequenceStepsAsList(cycle).get(0);
assertCall(_if.getThenStep(), _s1.getReactions().get(0).getEffect());
Sequence _seq = (Sequence) _s1.getReactions().get(0).getEffect();
assertCall(_seq, 1, _fs.getEnterSequences().get(0));
}
Aggregations