Java tutorial
/* * Copyright (C) 2014 JSQLParser. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301 USA */ package net.sf.jsqlparser.test.select; import java.io.File; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; import net.sf.jsqlparser.JSQLParserException; import net.sf.jsqlparser.parser.CCJSqlParserUtil; import static net.sf.jsqlparser.test.TestUtils.*; import org.apache.commons.io.FileUtils; import static org.junit.Assert.assertTrue; import org.junit.Test; /** * Tries to parse and deparse all statments in * net.sf.jsqlparser.test.oracle-tests. * * As a matter of fact there are a lot of files that can still not processed. * Here a step by step improvement is the way to go. * * The test ensures, that the successfull parsed file count does not decrease. * * @author toben */ public class SpecialOracleTest { private static final File SQLS_DIR = new File("target/test-classes/net/sf/jsqlparser/test/oracle-tests"); private static final Logger LOG = Logger.getLogger(SpecialOracleTest.class.getName()); @Test public void testAllSqlsParseDeparse() throws IOException { int count = 0; int success = 0; File[] sqlTestFiles = SQLS_DIR.listFiles(); for (File file : sqlTestFiles) { if (file.isFile()) { count++; LOG.log(Level.INFO, "testing {0}", file.getName()); String sql = FileUtils.readFileToString(file); try { assertSqlCanBeParsedAndDeparsed(sql, true); success++; LOG.info(" -> SUCCESS"); } catch (JSQLParserException ex) { //LOG.log(Level.SEVERE, null, ex); LOG.log(Level.INFO, " -> PROBLEM {0}", ex.toString()); } catch (Exception ex) { LOG.log(Level.INFO, " -> PROBLEM {0}", ex.toString()); } } } LOG.log(Level.INFO, "tested {0} files. got {1} correct parse results", new Object[] { count, success }); assertTrue(success >= 129); } @Test public void testAllSqlsOnlyParse() throws IOException { File[] sqlTestFiles = new File(SQLS_DIR, "only-parse-test").listFiles(); for (File file : sqlTestFiles) { LOG.log(Level.INFO, "testing {0}", file.getName()); String sql = FileUtils.readFileToString(file); try { CCJSqlParserUtil.parse(sql); LOG.info(" -> SUCCESS"); } catch (JSQLParserException ex) { LOG.log(Level.SEVERE, null, ex); } } } }