Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.facebook.presto.sql.testing;
import com.facebook.presto.sql.parser.ParsingException;
import com.facebook.presto.sql.parser.ParsingOptions;
import com.facebook.presto.sql.parser.SqlParser;
import com.facebook.presto.sql.tree.DefaultTraversalVisitor;
import com.facebook.presto.sql.tree.Node;
import com.facebook.presto.sql.tree.Statement;
import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableList;
import javax.annotation.Nullable;
import java.util.List;
import java.util.Optional;
import static com.facebook.presto.sql.SqlFormatter.formatSql;
import static com.facebook.presto.sql.parser.ParsingOptions.DecimalLiteralTreatment.AS_DOUBLE;
import static java.lang.String.format;
public final class TreeAssertions
{
private TreeAssertions() {}
public static void assertFormattedSql(SqlParser sqlParser, Node expected)
{
ParsingOptions parsingOptions = new ParsingOptions(AS_DOUBLE /* anything */);
assertFormattedSql(sqlParser, parsingOptions, expected);
}
public static void assertFormattedSql(SqlParser sqlParser, ParsingOptions parsingOptions, Node expected)
{
String formatted = formatSql(expected, Optional.empty());
// verify round-trip of formatting already-formatted SQL
Statement actual = parseFormatted(sqlParser, parsingOptions, formatted, expected);
assertEquals(formatSql(actual, Optional.empty()), formatted);
// compare parsed tree with parsed tree of formatted SQL
if (!actual.equals(expected)) {
// simplify finding the non-equal part of the tree
assertListEquals(linearizeTree(actual), linearizeTree(expected));
}
assertEquals(actual, expected);
}
private static Statement parseFormatted(SqlParser sqlParser, ParsingOptions parsingOptions, String sql, Node tree)
{
try {
return sqlParser.createStatement(sql, parsingOptions);
}
catch (ParsingException e) {
throw new AssertionError(format(
"failed to parse formatted SQL: %s\nerror: %s\ntree: %s",
sql, e.getMessage(), tree));
}
}
private static List linearizeTree(Node tree)
{
ImmutableList.Builder nodes = ImmutableList.builder();
new DefaultTraversalVisitor()
{
@Override
public Node process(Node node, @Nullable Void context)
{
Node result = super.process(node, context);
nodes.add(node);
return result;
}
}.process(tree, null);
return nodes.build();
}
private static void assertListEquals(List actual, List expected)
{
if (actual.size() != expected.size()) {
throw new AssertionError(format("Lists not equal in size%n%s", formatLists(actual, expected)));
}
if (!actual.equals(expected)) {
throw new AssertionError(format("Lists not equal at index %s%n%s",
differingIndex(actual, expected), formatLists(actual, expected)));
}
}
private static String formatLists(List actual, List expected)
{
Joiner joiner = Joiner.on("\n ");
return format("Actual [%s]:%n %s%nExpected [%s]:%n %s%n",
actual.size(), joiner.join(actual),
expected.size(), joiner.join(expected));
}
private static int differingIndex(List actual, List expected)
{
for (int i = 0; i < actual.size(); i++) {
if (!actual.get(i).equals(expected.get(i))) {
return i;
}
}
return actual.size();
}
private static void assertEquals(T actual, T expected)
{
if (!actual.equals(expected)) {
throw new AssertionError(format("expected [%s] but found [%s]", expected, actual));
}
}
}