Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.aadlbin-gen/
/instances/
18 changes: 18 additions & 0 deletions emv2/org.osate.aadl2.errormodel.tests/models/issue2817/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>issue2817</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.xtext.ui.shared.xtextBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.osate.core.aadlnature</nature>
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
</natures>
</projectDescription>
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package Issue2817
public
annex EMV2 {**
error behavior Machine
states
state1: initial state;
state2: state;
end behavior;
**};

system S
annex EMV2 {**
use types ErrorLibrary;
use behavior Issue2817::Machine;
component error behavior
events
typed: error event {CommonErrors};
untyped: error event;
recovery: recover event;
repair1: repair event;
transitions
typed_event: state1 -[typed {ServiceError} and typed {noerror}]-> state2;
untyped_event: state1 -[untyped {noerror}]-> state2;
recover_event: state1 -[recovery {noerror}]-> state2;
repair_event: state1 -[repair1 {noerror}]-> state2;
end component;
**};
end S;
end Issue2817;
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package MachineEvents
public
annex EMV2 {**
error behavior Machine
use types ErrorLibrary;
events
typed: error event {CommonErrors};
states
state1: initial state;
state2: state;
transitions
state1 -[typed {noerror}]-> state2;
end behavior;
**};
end MachineEvents;
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
package ValidConditions
public
annex EMV2 {**
error behavior Machine
states
state1: initial state;
state2: state;
end behavior;
**};

system S
features
f1: in feature;
f2: in feature;
annex EMV2 {**
use types ErrorLibrary;
use behavior ValidConditions::Machine;
error propagations
f1: in propagation {CommonErrors};
f2: in propagation {CommonErrors};
end propagations;
component error behavior
events
typed: error event {CommonErrors};
untyped: error event;
recovery: recover event;
repair1: repair event;
transitions
incoming: state1 -[f1 {ServiceError} and f2 {noerror}]-> state2;
typed_event: state1 -[typed {ServiceError}]-> state2;
unconstrained_event: state1 -[typed]-> state2;
untyped_event: state1 -[untyped]-> state2;
recover_event: state1 -[recovery]-> state2;
repair_event: state1 -[repair1]-> state2;
end component;
**};
end S;

system implementation S.i
subcomponents
child: system Child;
annex EMV2 {**
component error behavior
transitions
outgoing: state1 -[child.f {noerror}]-> state2;
end component;
**};
end S.i;

system Child
features
f: out feature;
annex EMV2 {**
use types ErrorLibrary;
error propagations
f: out propagation {CommonErrors};
end propagations;
**};
end Child;
end ValidConditions;
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
/**
* Copyright (c) 2004-2026 Carnegie Mellon University and others. (see Contributors file).
* All Rights Reserved.
*
* NO WARRANTY. ALL MATERIAL IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE
* OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT
* MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
* SPDX-License-Identifier: EPL-2.0
*
* Created, in part, with funding and support from the United States Government. (see Acknowledgments file).
*
* This program includes and/or can make use of certain third party source code, object code, documentation and other
* files ("Third Party Software"). The Third Party Software that is used by this program is dependent upon your system
* configuration. By using this program, You agree to comply with any and all relevant Third Party Software terms and
* conditions contained in any such Third Party Software or separate license file distributed with such Third Party
* Software. The parties who own the Third Party Software ("Third Party Licensors") are intended third party benefici-
* aries to this license with respect to the terms applicable to their Third Party Software. Third Party Software li-
* censes only apply to the Third Party Software and not any other portion of this program or this program as a whole.
*/
package org.osate.aadl2.errormodel.tests.issues;

import static org.junit.Assert.assertEquals;

import java.util.ArrayList;

import org.eclipse.xtext.testing.InjectWith;
import org.eclipse.xtext.testing.XtextRunner;
import org.eclipse.xtext.testing.validation.ValidationTestHelper;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.osate.aadl2.AadlPackage;
import org.osate.aadl2.DefaultAnnexLibrary;
import org.osate.aadl2.DefaultAnnexSubclause;
import org.osate.aadl2.SystemType;
import org.osate.aadl2.errormodel.tests.ErrorModelInjectorProvider;
import org.osate.testsupport.AssertHelper;
import org.osate.testsupport.TestHelper;
import org.osate.xtext.aadl2.errormodel.errorModel.AndExpression;
import org.osate.xtext.aadl2.errormodel.errorModel.ErrorModelLibrary;
import org.osate.xtext.aadl2.errormodel.errorModel.ErrorModelSubclause;

import com.google.inject.Inject;
import com.itemis.xtext.testing.FluentIssueCollection;
import com.itemis.xtext.testing.XtextTest;

@RunWith(XtextRunner.class)
@InjectWith(ErrorModelInjectorProvider.class)
public class Issue2817Test extends XtextTest {
private static final String PATH = "org.osate.aadl2.errormodel.tests/models/issue2817/";
private static final String MESSAGE = "The noerror constraint is not permitted on an event.";

@Inject
private TestHelper<AadlPackage> testHelper;

@Inject
private ValidationTestHelper validationHelper;

@Test
public void rejectsNoerrorOnComponentEvents() throws Exception {
var result = issues = testHelper.testFile(PATH + "Issue2817.aadl");
var expected = new FluentIssueCollection(result.getResource(), new ArrayList<>(), new ArrayList<>());
var pkg = (AadlPackage) result.getResource().getContents().getFirst();
var system = (SystemType) pkg.getPublicSection().getOwnedClassifiers().getFirst();
var annex = (ErrorModelSubclause) ((DefaultAnnexSubclause) system.getOwnedAnnexSubclauses().getFirst())
.getParsedAnnexSubclause();
var conjunction = (AndExpression) annex.getTransitions().get(0).getCondition();
AssertHelper.assertError(conjunction.getOperands().get(1), result.getIssues(), expected, MESSAGE);
for (int i = 1; i < 4; i++) {
AssertHelper.assertError(annex.getTransitions().get(i).getCondition(), result.getIssues(), expected, MESSAGE);
}
assertEquals(4, result.getIssues().size());
expected.sizeIs(4);
assertConstraints(expected);
}

@Test
public void rejectsNoerrorOnBehaviorMachineEvents() throws Exception {
var result = issues = testHelper.testFile(PATH + "MachineEvents.aadl");
var expected = new FluentIssueCollection(result.getResource(), new ArrayList<>(), new ArrayList<>());
var pkg = (AadlPackage) result.getResource().getContents().getFirst();
var library = (ErrorModelLibrary) ((DefaultAnnexLibrary) pkg.getPublicSection().getOwnedAnnexLibraries()
.getFirst()).getParsedAnnexLibrary();
var condition = library.getBehaviors().getFirst().getTransitions().getFirst().getCondition();
AssertHelper.assertError(condition, result.getIssues(), expected, MESSAGE);
assertEquals(1, result.getIssues().size());
expected.sizeIs(1);
assertConstraints(expected);
}

@Test
public void acceptsEventTypeConstraintsAndNoerrorOnPropagations() throws Exception {
var pkg = testHelper.parseFile(PATH + "ValidConditions.aadl");
validationHelper.assertNoIssues(pkg);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,9 @@ private void checkConditionElementType(ConditionElement conditionElement) {
if (condTS == null) {
return;
}
if (triggerTS == null && condTS != null) {
if (ep instanceof ErrorBehaviorEvent && EMV2TypeSetUtil.isNoError(condTS)) {
error(conditionElement, "The noerror constraint is not permitted on an event.");
} else if (triggerTS == null && condTS != null) {
// it is ok for a state not to have a type set.
error(conditionElement, "Condition has type constraint but referenced " + triggerName + " does not.");
} else if (!EMV2TypeSetUtil.isNoError(condTS) && !EMV2TypeSetUtil.contains(triggerTS, condTS)) {
Expand Down