Search in sources :

Example 21 with CompilationException

use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.

the class TestExternalGrammars method testAntlr4.

@Test
public void testAntlr4() {
    if (!toCheck("antlr4"))
        return;
    Subject s = subjects.get("antlr4");
    // Exam
    ToolCustomizer tc = t -> t.genPackage = "org.antlr.parser.antlr4";
    Set<File> files = s.g4.stream().filter(v -> v.getName().matches("" + "(ANTLRv4" + "(Lexer|Parser)|LexBasic).g4")).collect(Collectors.toSet());
    Assertions.assertTrue(files.size() > 0);
    GenericParser gp = null;
    try {
        gp = new GenericParser(tc, files.toArray(new File[files.size()]));
    } catch (FileNotFoundException e) {
        Assertions.assertTrue(false);
    }
    DefaultTreeListener dt = new DefaultTreeListener();
    gp.setListener(dt);
    try {
        File util = new File("src/test/resources/grammars-v4/antlr4/src/main/java" + "/org" + "/antlr/parser/antlr4/LexerAdaptor.java");
        gp.addUtilityJavaFiles(util);
    } catch (FileNotFoundException e) {
        Assertions.assertFalse(true);
    }
    boolean compile;
    try {
        gp.compile();
        compile = true;
    } catch (CompilationException e) {
        compile = false;
    }
    s.examples.removeIf(f -> f.getName().contains("three.g4"));
    Assertions.assertTrue(compile);
    verify(gp, s.examples, s.nexamples, s.entrypoint);
}
Also used : java.util(java.util) FileUtils(org.snt.inmemantlr.utils.FileUtils) LoggerFactory(org.slf4j.LoggerFactory) ParsingException(org.snt.inmemantlr.exceptions.ParsingException) IllegalWorkflowException(org.snt.inmemantlr.exceptions.IllegalWorkflowException) CompilationException(org.snt.inmemantlr.exceptions.CompilationException) Document(org.w3c.dom.Document) ToolCustomizer(org.snt.inmemantlr.tool.ToolCustomizer) ParseTree(org.snt.inmemantlr.tree.ParseTree) CasedStreamProvider(org.snt.inmemantlr.stream.CasedStreamProvider) GenericParser(org.snt.inmemantlr.GenericParser) Logger(org.slf4j.Logger) NodeList(org.w3c.dom.NodeList) IOException(java.io.IOException) Collectors(java.util.stream.Collectors) File(java.io.File) FileNotFoundException(java.io.FileNotFoundException) Test(org.junit.jupiter.api.Test) RecognitionException(org.antlr.v4.runtime.RecognitionException) ParserConfigurationException(javax.xml.parsers.ParserConfigurationException) SAXException(org.xml.sax.SAXException) Assertions(org.junit.jupiter.api.Assertions) DocumentBuilderFactory(javax.xml.parsers.DocumentBuilderFactory) ParserRuleContext(org.antlr.v4.runtime.ParserRuleContext) DefaultTreeListener(org.snt.inmemantlr.listener.DefaultTreeListener) FilenameUtils(org.apache.commons.io.FilenameUtils) CompilationException(org.snt.inmemantlr.exceptions.CompilationException) FileNotFoundException(java.io.FileNotFoundException) ToolCustomizer(org.snt.inmemantlr.tool.ToolCustomizer) File(java.io.File) DefaultTreeListener(org.snt.inmemantlr.listener.DefaultTreeListener) GenericParser(org.snt.inmemantlr.GenericParser) Test(org.junit.jupiter.api.Test)

Example 22 with CompilationException

use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.

the class TestExternalGrammars method testEcma.

@Test
public void testEcma() {
    if (!toCheck("ecmascript"))
        return;
    Subject s = subjects.get("ecmascript");
    GenericParser gp = null;
    try {
        gp = new GenericParser(s.g4.toArray(new File[s.g4.size()]));
    } catch (FileNotFoundException e) {
        Assertions.assertTrue(false);
    }
    boolean compile;
    try {
        gp.compile();
        compile = true;
    } catch (CompilationException e) {
        compile = false;
    }
    Assertions.assertTrue(compile);
    verify(gp, s.examples, s.nexamples, s.entrypoint);
}
Also used : CompilationException(org.snt.inmemantlr.exceptions.CompilationException) FileNotFoundException(java.io.FileNotFoundException) GenericParser(org.snt.inmemantlr.GenericParser) Test(org.junit.jupiter.api.Test)

Example 23 with CompilationException

use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.

the class TestExternalGrammars method testR.

@Test
public void testR() {
    if (!toCheck("r"))
        return;
    Subject s = subjects.get("r");
    GenericParser gp = getParserForSubject(s, null);
    boolean compile;
    try {
        gp.compile();
        compile = true;
    } catch (CompilationException e) {
        compile = false;
    }
    Assertions.assertTrue(compile);
    gp.setParserName("RParser");
    verify(gp, s.examples, s.nexamples, s.entrypoint);
}
Also used : CompilationException(org.snt.inmemantlr.exceptions.CompilationException) GenericParser(org.snt.inmemantlr.GenericParser) Test(org.junit.jupiter.api.Test)

Example 24 with CompilationException

use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.

the class TestExternalGrammars method testSwift2.

@Test
public void testSwift2() {
    if (!toCheck("swift2"))
        return;
    Subject s = subjects.get("swift2");
    GenericParser gp = null;
    try {
        gp = new GenericParser(s.g4.toArray(new File[s.g4.size()]));
    } catch (FileNotFoundException e) {
        Assertions.assertTrue(false);
    }
    try {
        File util = new File("src/test/resources/grammars-v4/swift2/src/main/java" + "/SwiftSupport.java");
        gp.addUtilityJavaFiles(util);
    } catch (FileNotFoundException e) {
        Assertions.assertFalse(true);
    }
    boolean compile;
    try {
        gp.compile();
        compile = true;
    } catch (CompilationException e) {
        compile = false;
    }
    Assertions.assertTrue(compile);
    verify(gp, s.examples, s.nexamples, s.entrypoint);
}
Also used : CompilationException(org.snt.inmemantlr.exceptions.CompilationException) FileNotFoundException(java.io.FileNotFoundException) File(java.io.File) GenericParser(org.snt.inmemantlr.GenericParser) Test(org.junit.jupiter.api.Test)

Example 25 with CompilationException

use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.

the class TestExternalGrammars method testSwift3.

@Test
public void testSwift3() {
    if (!toCheck("swift3"))
        return;
    Subject s = subjects.get("swift3");
    GenericParser gp = null;
    try {
        gp = new GenericParser(s.g4.toArray(new File[s.g4.size()]));
    } catch (FileNotFoundException e) {
        Assertions.assertTrue(false);
    }
    try {
        File util = new File("src/test/resources/grammars-v4/swift3/src/main/java" + "/SwiftSupport.java");
        gp.addUtilityJavaFiles(util);
    } catch (FileNotFoundException e) {
        Assertions.assertFalse(true);
    }
    boolean compile;
    try {
        gp.compile();
        compile = true;
    } catch (CompilationException e) {
        compile = false;
    }
    Assertions.assertTrue(compile);
    verify(gp, s.examples, s.nexamples, s.entrypoint);
}
Also used : CompilationException(org.snt.inmemantlr.exceptions.CompilationException) FileNotFoundException(java.io.FileNotFoundException) File(java.io.File) GenericParser(org.snt.inmemantlr.GenericParser) Test(org.junit.jupiter.api.Test)

Aggregations

GenericParser (org.snt.inmemantlr.GenericParser)31 CompilationException (org.snt.inmemantlr.exceptions.CompilationException)31 Test (org.junit.jupiter.api.Test)29 DefaultTreeListener (org.snt.inmemantlr.listener.DefaultTreeListener)23 IllegalWorkflowException (org.snt.inmemantlr.exceptions.IllegalWorkflowException)19 ParsingException (org.snt.inmemantlr.exceptions.ParsingException)19 FileNotFoundException (java.io.FileNotFoundException)17 File (java.io.File)16 ParseTree (org.snt.inmemantlr.tree.ParseTree)16 InputStream (java.io.InputStream)8 IOException (java.io.IOException)7 ParserRuleContext (org.antlr.v4.runtime.ParserRuleContext)7 Assertions (org.junit.jupiter.api.Assertions)7 Logger (org.slf4j.Logger)7 LoggerFactory (org.slf4j.LoggerFactory)7 CasedStreamProvider (org.snt.inmemantlr.stream.CasedStreamProvider)7 ToolCustomizer (org.snt.inmemantlr.tool.ToolCustomizer)7 FileUtils (org.snt.inmemantlr.utils.FileUtils)7 java.util (java.util)6 Collectors (java.util.stream.Collectors)6