use of org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createEntry in project statecharts by Yakindu.
the class ModelSequencerStateReactionTest method testExitActionWithoutGuard.
/**
* If a entry trigger is combined with a guard condition then the entry
* action is executed conditionally with this trigger.
*/
@Test
public void testExitActionWithoutGuard() {
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)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 _exitSeq = (Sequence) _s2.getExitAction();
assertClass(Sequence.class, _exitSeq.getSteps().get(0));
assertAssignment(((Sequence) _exitSeq.getSteps().get(0)).getSteps().get(0), "v1", AssignmentOperator.ASSIGN, "42");
}
use of org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createEntry in project statecharts by Yakindu.
the class SelfTransitionTest method testFlowName.
@SuppressWarnings("unused")
@Test
public void testFlowName() {
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);
{
Region r2 = _createRegion("r2", s2);
{
Entry e = _createEntry(EntryKind.INITIAL, null, r2);
State s3 = _createState("s3", r2);
_createTransition(e, s3);
}
}
_createTransition(s2, 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());
ExecutionNode e = flow.getNodes().get(1);
EList<Reaction> _t = _s2.getReactions();
Reaction tr0 = _t.get(0);
assertCall(assertedSequence(tr0.getEffect()), 0, _s2.getExitSequence());
assertCall(assertedSequence(tr0.getEffect()), 1, _s2.getEnterSequences().get(0));
}
use of org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createEntry in project statecharts by Yakindu.
the class StatechartEnterExistActionTest method testSCLocalReaction.
/**
* The transition sequence must contain all exit actions for parent states
* that will be left by a transition.
*/
@SuppressWarnings("unused")
@Test
public void testSCLocalReaction() {
Statechart sc = _createStatechart("sc");
{
VariableDefinition v = _createVariableDefinition("v", TYPE_INTEGER, getOrCreateInternalScope(sc));
LocalReaction entryAction = _createEntryAction(sc);
ReactionEffect effect = _createReactionEffect(entryAction);
_createVariableAssignment(v, AssignmentOperator.ADD_ASSIGN, _createValue(1), effect);
LocalReaction exitAction = _createExitAction(sc);
effect = _createReactionEffect(exitAction);
_createVariableAssignment(v, AssignmentOperator.ADD_ASSIGN, _createValue(1), effect);
Region r = _createRegion("r", sc);
{
Entry e = _createEntry(EntryKind.INITIAL, null, r);
State s1 = _createState("s1", r);
Transition t = _createTransition(e, s1);
}
}
ExecutionFlow flow = sequencer.transform(sc);
ExecutionRegion region = flow.getRegions().get(0);
assertEquals(0, flow.getReactions().size());
assertedOrder(flow.getEnterSequences().get(0), null, Lists.newArrayList(new StepLeaf(flow.getEntryAction()), new StepLeaf(region.getEnterSequences().get(0))));
assertedOrder(flow.getExitSequence(), null, Lists.newArrayList(new StepLeaf(region.getExitSequence()), new StepLeaf(flow.getExitAction())));
}
use of org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createEntry in project statecharts by Yakindu.
the class HistoryTest method testDeepHistory.
@Test
public void testDeepHistory() {
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.DEEP_HISTORY, "history", r2);
State s3 = _createState("s3", r2);
{
_createEntryAssignment(v1, s3, 4);
}
State s4 = _createState("s4", r2);
{
_createEntryAssignment(v1, s4, 6);
Region r4 = _createRegion("r4", s4);
{
Entry e4 = _createEntry(EntryKind.INITIAL, null, r2);
State s5 = _createState("s5", r4);
_createTransition(e4, s5);
}
}
_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 _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());
ExecutionNode e = flow.getNodes().get(2);
assertTrue(e.eClass().getName(), e instanceof ExecutionEntry);
Sequence reactSequence = e.getReactSequence();
assertEquals("Default react sequence for deep history entry history", reactSequence.getComment());
Step historyEntry = reactSequence.getSteps().get(0);
assertTrue(historyEntry.eClass().getName(), historyEntry instanceof HistoryEntry);
assertedOrder(reactSequence, Sets.newHashSet(_s3), //
Lists.newArrayList(//
new StepHistory(historyEntry, false), //
new StepLeaf(_s3.getEnterSequences().get(0))));
assertedOrder(reactSequence, Sets.newHashSet(_s3), //
Lists.newArrayList(//
new StepHistory(historyEntry, true), //
new StepLeaf(_s3.getEnterSequences().get(0))));
assertedOrder(reactSequence, Sets.newHashSet(_s5), //
Lists.newArrayList(//
new StepHistory(historyEntry, true), //
new StepLeaf(_s4.getEntryAction()), //
new StepLeaf(_s5.getEnterSequences().get(0))));
// assertCall(assertedSequence(tr0.getEffect()), 0,
// _s2.getEnterSequence());
}
use of org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createEntry in project statecharts by Yakindu.
the class HistoryTest method testShallowHistory.
@Test
public void testShallowHistory() {
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);
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());
ExecutionNode e = flow.getNodes().get(2);
assertTrue(e.eClass().getName(), e instanceof ExecutionEntry);
Sequence reactSequence = e.getReactSequence();
assertEquals("Default react sequence for shallow history entry history", reactSequence.getComment());
Step historyEntry = reactSequence.getSteps().get(0);
assertTrue(historyEntry.eClass().getName(), historyEntry instanceof HistoryEntry);
assertedOrder(reactSequence, Sets.newHashSet(_s3), //
Lists.newArrayList(//
new StepHistory(historyEntry, false), //
new StepLeaf(_s3.getEnterSequences().get(0))));
assertedOrder(reactSequence, Sets.newHashSet(_s3), //
Lists.newArrayList(//
new StepHistory(historyEntry, true), //
new StepLeaf(_s3.getEnterSequences().get(0))));
assertedOrder(reactSequence, Sets.newHashSet(_s5), //
Lists.newArrayList(//
new StepHistory(historyEntry, true), //
new StepLeaf(_s4.getEnterSequences().get(0))));
}
Aggregations