TestRuleTester.java
/*
* 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.planner.iterative.rule.test;
import com.facebook.presto.matching.Captures;
import com.facebook.presto.matching.Pattern;
import com.facebook.presto.spi.plan.Assignments;
import com.facebook.presto.spi.plan.PlanNode;
import com.facebook.presto.sql.planner.iterative.Rule;
import com.google.common.collect.ImmutableList;
import org.testng.annotations.Test;
import static com.facebook.presto.common.type.BigintType.BIGINT;
import static com.facebook.presto.sql.planner.assertions.PlanMatchPattern.values;
import static com.facebook.presto.sql.planner.iterative.rule.test.PlanBuilder.constantExpressions;
import static com.facebook.presto.sql.relational.Expressions.variable;
import static com.google.common.collect.ImmutableList.toImmutableList;
public class TestRuleTester
{
@Test(expectedExceptions = AssertionError.class, expectedExceptionsMessageRegExp = "Plan does not match, expected .* but found .*")
public void testReportWrongMatch()
{
try (RuleTester tester = new RuleTester()) {
tester.assertThat(new DummyReplaceNodeRule())
.on(p ->
p.project(
Assignments.of(p.variable("y"), variable("x", BIGINT)),
p.values(
ImmutableList.of(p.variable("x")),
ImmutableList.of(constantExpressions(BIGINT, 1L)))))
.matches(
values(ImmutableList.of("different"), ImmutableList.of()));
}
}
private static class DummyReplaceNodeRule
implements Rule<PlanNode>
{
@Override
public Pattern<PlanNode> getPattern()
{
return Pattern.typeOf(PlanNode.class);
}
@Override
public Result apply(PlanNode node, Captures captures, Context context)
{
return Result.ofPlanNode(node.replaceChildren(node.getSources().stream()
.map(context.getLookup()::resolve)
.collect(toImmutableList())));
}
}
}