use of org.yakindu.sct.model.stext.test.util.StextTestFactory._createReactionTrigger in project statecharts by Yakindu.
the class ModelSequencerStateReactionTest method testMultipleRegularEventTriggerCondition.
/**
* Multiple trigger events of a ReactionTrigger will be converted to a
* condition that consists of a ElementReferenceExpressions connected by
* LogicalOrExpressions.
*
* e1, e1 -> e1 || e2
*/
@Test
public void testMultipleRegularEventTriggerCondition() {
EventDefinition e1 = _createEventDefinition("e1", null);
EventDefinition e2 = _createEventDefinition("e2", null);
ReactionTrigger tr1 = _createReactionTrigger(null);
_createRegularEventSpec(e1, tr1);
_createRegularEventSpec(e2, tr1);
Expression s = behaviorMapping.buildCondition(tr1);
assertTrue(s instanceof LogicalOrExpression);
assertClass(ElementReferenceExpression.class, ((LogicalOrExpression) s).getLeftOperand());
assertClass(ElementReferenceExpression.class, ((LogicalOrExpression) s).getRightOperand());
}
use of org.yakindu.sct.model.stext.test.util.StextTestFactory._createReactionTrigger in project statecharts by Yakindu.
the class ModelSequencertDeclarationsTest method testOperationMapping.
/**
* The OperationCalls must map to Operations in Scopes inside the Flow..
*/
@Test
public void testOperationMapping() {
Statechart sc = _createStatechart("test");
InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
OperationDefinition _operation = _createOperation("value", s_scope);
Region r = _createRegion("main", sc);
State s1 = _createState("S1", r);
State s2 = _createState("S2", r);
Transition t = _createTransition(s1, s2);
ReactionTrigger tr = _createReactionTrigger(t);
tr.setGuard(createGuardExpression(_createValue(true)));
ReactionEffect tr1 = _createReactionEffect(t);
FeatureCall _operationCall = _createOperationCall(_operation);
tr1.getActions().add(_operationCall);
ExecutionFlow flow = sequencer.transform(sc);
OperationDefinition _o1 = (OperationDefinition) flow.getScopes().get(0).getDeclarations().get(0);
assertNotSame(_operation, _o1);
assertEquals(_operation.getName(), _o1.getName());
Step step = flow.getStates().get(0).getReactSequence().getSteps().get(0);
If _if = (If) assertedSequence(assertedSequence(assertedSequence(step).getSteps().get(0)).getSteps().get(0)).getSteps().get(0);
Step thenSequence = assertedSequence(((Call) _if.getThenStep()).getStep()).getSteps().get(1);
Execution call = (Execution) assertedSequence(thenSequence).getSteps().get(0);
assertNotSame(_operationCall, call.getStatement());
assertSame(_o1, ((FeatureCall) call.getStatement()).getFeature());
}
use of org.yakindu.sct.model.stext.test.util.StextTestFactory._createReactionTrigger in project statecharts by Yakindu.
the class ModelSequencertDeclarationsTest method testTriggerEventDeclarationIntegrity.
/**
* The event refs used in the trigger condition must refer to the event
* declarations in the flow model and not the sc source model.
*/
@Test
public void testTriggerEventDeclarationIntegrity() {
Statechart sc = _createStatechart("test");
InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
EventDefinition e1 = _createEventDefinition("e1", s_scope);
Region r = _createRegion("main", sc);
State s1 = _createState("S1", r);
State s2 = _createState("S2", r);
Transition t = _createTransition(s1, s2);
ReactionTrigger tr1 = _createReactionTrigger(t);
_createRegularEventSpec(e1, tr1);
ExecutionFlow flow = sequencer.transform(sc);
EventDefinition _e1 = (EventDefinition) flow.getScopes().get(0).getDeclarations().get(0);
assertNotSame(e1, _e1);
assertEquals(e1.getName(), _e1.getName());
assertEquals(2, flow.getStates().size());
assertEquals(s1.getName(), flow.getStates().get(0).getSimpleName());
Step step = flow.getStates().get(0).getReactSequence().getSteps().get(0);
If _if = (If) assertedSequence(assertedSequence(assertedSequence(step).getSteps().get(0)).getSteps().get(0)).getSteps().get(0);
ElementReferenceExpression _ere = (ElementReferenceExpression) _if.getCheck().getCondition();
assertSame(_e1, _ere.getReference());
}
Aggregations