use of org.abs_models.frontend.analyser.SemanticConditionList in project abstools by abstools.
the class DeltaTrieTest method trieStructure2.
@Test
public void trieStructure2() {
Model model = assertParse("module Test;" + "delta D1;" + "delta D2;" + "delta D3;" + "productline PL;" + "features A,B,C;" + "delta D1 when A;" + "delta D2 after D1 when B;" + "delta D3 after D2 when C;" + "root FM {" + " group [0 .. *] { A, B, C }" + "}");
ProductLine pl = model.getProductLine();
DeltaTrie pfgt = ProductLineAnalysisHelper.buildPFGT(pl, new SemanticConditionList());
assertTrue(pfgt.getRoot().isValidProduct());
assertEquals(3, pfgt.getRoot().getChildren().size());
assertTrue(pfgt.getRoot().getChildren().get("D1").isValidProduct());
assertTrue(pfgt.getRoot().getChildren().get("D2").isValidProduct());
assertTrue(pfgt.getRoot().getChildren().get("D3").isValidProduct());
assertEquals(2, pfgt.getRoot().getChildren().get("D1").getChildren().size());
assertEquals(1, pfgt.getRoot().getChildren().get("D2").getChildren().size());
assertEquals(0, pfgt.getRoot().getChildren().get("D3").getChildren().size());
assertTrue(pfgt.getRoot().getChildren().get("D1").getChildren().get("D2").isValidProduct());
assertTrue(pfgt.getRoot().getChildren().get("D1").getChildren().get("D3").isValidProduct());
assertTrue(pfgt.getRoot().getChildren().get("D2").getChildren().get("D3").isValidProduct());
}
use of org.abs_models.frontend.analyser.SemanticConditionList in project abstools by abstools.
the class DeltaTrieTest method trieStructure1.
@Test
public void trieStructure1() {
Model model = assertParse("module Test;" + "delta D1;" + "delta D2;" + "productline PL;" + "features A,B;" + "delta D1 after D2 when A;" + "delta D2 when B;" + "root FM {" + " group [0 .. *] { A, B }" + "}");
ProductLine pl = model.getProductLine();
DeltaTrie pfgt = ProductLineAnalysisHelper.buildPFGT(pl, new SemanticConditionList());
// System.out.println(pfgt.toString());
assertTrue(pfgt.getRoot().isValidProduct());
assertEquals(2, pfgt.getRoot().getChildren().size());
assertTrue(pfgt.getRoot().getChildren().get("D1").isValidProduct());
assertTrue(pfgt.getRoot().getChildren().get("D2").isValidProduct());
assertEquals(0, pfgt.getRoot().getChildren().get("D1").getChildren().size());
assertEquals(1, pfgt.getRoot().getChildren().get("D2").getChildren().size());
assertTrue(pfgt.getRoot().getChildren().get("D2").getChildren().get("D1").isValidProduct());
}
use of org.abs_models.frontend.analyser.SemanticConditionList in project abstools by abstools.
the class DeltaTrieTest method trieContent.
@Test
public void trieContent() {
// TODO
Model model = assertParse("module Test;" + "class Ccore{}" + "delta D1; uses Test; adds class C1 {Int f1 = 0; Unit m1() {}}" + "delta D2; uses Test; adds class C2 {Int f2 = 0; Unit m2() {}}" + "delta D3;" + // + " modifies class Test.C2 { adds Int f2a = 1; modifies Unit m2() {} adds Unit m2a() {} }"
"" + "" + "" + "" + "productline PL;" + "features A,B;" + "delta D1 when A;" + "delta D2 after D1 when B;" + "delta D3 after D1,D2 when A && B;" + "root FM {" + " group [1 .. *] { A, B }" + "}");
ProductLine pl = model.getProductLine();
DeltaTrie pfgt = ProductLineAnalysisHelper.buildPFGT(pl, new SemanticConditionList());
// TODO: tests
}
use of org.abs_models.frontend.analyser.SemanticConditionList in project abstools by abstools.
the class TypeCheckerTest method test_Movecogto1.
@Test
public void test_Movecogto1() {
Model m = assertParse("class C { Unit do() { movecogto 1; }}");
SemanticConditionList errs = m.typeCheck();
assertTrue(m.hasTypeErrors());
Assert.assertEquals(ErrorMessage.EXPECTED_DC, errs.getFirstError().msg);
}
use of org.abs_models.frontend.analyser.SemanticConditionList in project abstools by abstools.
the class NullCheckerTests method assertTypeErrors.
@Override
protected SemanticCondition assertTypeErrors(String absCode, Config... config) {
Model m = assertParse(absCode, config);
String msg = "";
m.registerTypeSystemExtension(new NullCheckerExtension(m));
SemanticConditionList l = m.typeCheck();
if (l.containsErrors()) {
msg = l.getFirstError().getMsgWithHint(absCode);
} else if (l.containsWarnings() && isSet(EXPECT_WARNING, config)) {
msg = l.getFirstWarning().getMsgWithHint(absCode);
}
assertEquals(msg, isSet(EXPECT_TYPE_ERROR, config), l.containsErrors());
if (isSet(EXPECT_WARNING, config)) {
assertEquals(msg, isSet(EXPECT_WARNING, config), l.containsWarnings());
}
return l.containsErrors() ? l.getFirstError() : null;
}
Aggregations