use of org.yakindu.sct.model.stext.test.util.StextTestFactory._createVariableDefinition in project statecharts by Yakindu.
the class ModelSequencerStateReactionTest method testEntryActionWithGuard.
/**
* If a entry trigger is combined with a guard condition then the entry
* action is executed conditionally with this trigger.
*/
@Test
public void testEntryActionWithGuard() {
Statechart sc = _createStatechart("test");
Scope scope = _createInterfaceScope("interface", sc);
VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, scope);
Region r = _createRegion("main", sc);
Entry e = _createEntry(EntryKind.INITIAL, null, r);
State s1 = _createState("s1", r);
State s2 = _createState("s2", r);
_createTransition(e, s1);
_createTransition(s1, s2);
LocalReaction entryAction = _createEntryAction(s2);
_createVariableAssignment(v1, AssignmentOperator.ASSIGN, _createValue(42), (ReactionEffect) entryAction.getEffect());
((ReactionTrigger) entryAction.getTrigger()).setGuard(createGuardExpression(_createValue(true)));
ExecutionFlow flow = sequencer.transform(sc);
ExecutionState _s1 = flow.getStates().get(0);
ExecutionState _s2 = flow.getStates().get(1);
assertEquals(s1.getName(), _s1.getSimpleName());
assertEquals(s2.getName(), _s2.getSimpleName());
Sequence _entrySeq = (Sequence) _s2.getEntryAction();
assertClass(If.class, _entrySeq.getSteps().get(0));
assertClass(PrimitiveValueExpression.class, ((If) _entrySeq.getSteps().get(0)).getCheck().getCondition());
assertAssignment(((Sequence) ((If) _entrySeq.getSteps().get(0)).getThenStep()).getSteps().get(0), "v1", AssignmentOperator.ASSIGN, "42");
}
use of org.yakindu.sct.model.stext.test.util.StextTestFactory._createVariableDefinition in project statecharts by Yakindu.
the class ModelSequencerStateReactionTest method testEntryActionWithoutGuard.
/**
* If a entry trigger is combined with a guard condition then the entry
* action is executed conditionally with this trigger.
*/
@Test
public void testEntryActionWithoutGuard() {
Statechart sc = _createStatechart("test");
Scope scope = _createInterfaceScope("interface", sc);
VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, scope);
Region r = _createRegion("main", sc);
Entry e = _createEntry(EntryKind.INITIAL, null, r);
State s1 = _createState("s1", r);
State s2 = _createState("s2", r);
_createTransition(e, s1);
_createTransition(s1, s2);
LocalReaction entryAction = _createEntryAction(s2);
_createVariableAssignment(v1, AssignmentOperator.ASSIGN, _createValue(42), (ReactionEffect) entryAction.getEffect());
// ((ReactionTrigger)entryAction.getTrigger()).setGuardExpression(_createValue(true));
ExecutionFlow flow = sequencer.transform(sc);
ExecutionState _s1 = flow.getStates().get(0);
ExecutionState _s2 = flow.getStates().get(1);
assertEquals(s1.getName(), _s1.getSimpleName());
assertEquals(s2.getName(), _s2.getSimpleName());
Sequence _entrySeq = (Sequence) _s2.getEntryAction();
assertClass(Sequence.class, _entrySeq.getSteps().get(0));
assertAssignment(((Sequence) _entrySeq.getSteps().get(0)).getSteps().get(0), "v1", AssignmentOperator.ASSIGN, "42");
}
use of org.yakindu.sct.model.stext.test.util.StextTestFactory._createVariableDefinition in project statecharts by Yakindu.
the class ModelSequencerStateReactionTest method testExitActionWithGuard.
/**
* If a entry trigger is combined with a guard condition then the entry
* action is executed conditionally with this trigger.
*/
@Test
public void testExitActionWithGuard() {
Statechart sc = _createStatechart("test");
Scope scope = _createInterfaceScope("interface", sc);
VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, scope);
Region r = _createRegion("main", sc);
Entry e = _createEntry(EntryKind.INITIAL, null, r);
State s1 = _createState("s1", r);
State s2 = _createState("s2", r);
_createTransition(e, s1);
_createTransition(s1, s2);
LocalReaction exitAction = _createExitAction(s2);
_createVariableAssignment(v1, AssignmentOperator.ASSIGN, _createValue(42), (ReactionEffect) exitAction.getEffect());
((ReactionTrigger) exitAction.getTrigger()).setGuard(createGuardExpression(_createValue(true)));
ExecutionFlow flow = sequencer.transform(sc);
ExecutionState _s1 = flow.getStates().get(0);
ExecutionState _s2 = flow.getStates().get(1);
assertEquals(s1.getName(), _s1.getSimpleName());
assertEquals(s2.getName(), _s2.getSimpleName());
Sequence _exitSeq = (Sequence) _s2.getExitAction();
assertClass(If.class, _exitSeq.getSteps().get(0));
assertClass(PrimitiveValueExpression.class, ((If) _exitSeq.getSteps().get(0)).getCheck().getCondition());
assertAssignment(((Sequence) ((If) _exitSeq.getSteps().get(0)).getThenStep()).getSteps().get(0), "v1", AssignmentOperator.ASSIGN, "42");
}
use of org.yakindu.sct.model.stext.test.util.StextTestFactory._createVariableDefinition 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.test.util.StextTestFactory._createVariableDefinition 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())));
}
Aggregations