package com.sap.furcas.parser.tcs.scenario; import static org.junit.Assert.assertEquals; import java.io.File; import java.util.Collection; import org.junit.BeforeClass; import org.junit.Test; import com.sap.furcas.parsergenerator.TCSSyntaxContainerBean; import com.sap.furcas.runtime.parser.ParserFacade; import com.sap.furcas.runtime.parser.testbase.GeneratedParserBasedTest; import com.sap.furcas.runtime.parser.testbase.GeneratedParserTestConfiguration; import com.sap.furcas.runtime.parser.testbase.stubs.StubModelAdapter; import com.sap.furcas.runtime.parser.testbase.stubs.StubModelElement; import com.sap.furcas.runtime.parser.testbase.stubs.StubParsingHelper; import com.sap.furcas.test.fixture.ScenarioFixtureData; /** * Simple Test for the custom Expression language */ public class TestExpression extends GeneratedParserBasedTest { private static final String LANGUAGE = "Expression"; private static final File TCS = ScenarioFixtureData.EXPRESSION_TCS; private static final File[] METAMODELS = { ScenarioFixtureData.EXPRESSION_METAMODEL }; private static final String DSLSAMPLEDIR = "./scenarioTestSample/"; private static StubParsingHelper parsingHelper; @BeforeClass public static void setupParser() throws Exception { GeneratedParserTestConfiguration testConfig = new GeneratedParserTestConfiguration(LANGUAGE, TCS, METAMODELS); TCSSyntaxContainerBean syntaxBean = parseSyntax(testConfig); ParserFacade facade = generateParserForLanguage(syntaxBean, testConfig, new ClassLookupImpl()); parsingHelper = new StubParsingHelper(facade); } @Test public void testSample1() throws Exception { StubModelAdapter stubModelHandler = parsingHelper.parseFile("ExpressionSample01.sam", DSLSAMPLEDIR, 0); Collection<StubModelElement> values = stubModelHandler.getElementsOfType("expression::ExpressionList"); assertEquals(1, values.size()); values = stubModelHandler.getElementsOfType("expression::BinaryExpression"); assertEquals(6, values.size()); values = stubModelHandler.getElementsOfType("expression::ValueExpression"); assertEquals(9, values.size()); } @Test public void testSample2() throws Exception { parsingHelper.parseFile("ExpressionSample02.sam", DSLSAMPLEDIR, 1); } /** * test syntax errors cause parsing errors * * @throws Exception */ @Test public void testSampleDirect() throws Exception { parsingHelper.parseString("1+1+2", 0); parsingHelper.parseString("1+1+", 1); parsingHelper.parseString("1+1+a", 1); parsingHelper.parseString("1+1+b, 2+c", 2); } }