blob: fce850f4fc266217e014f52a21935437320059ef [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.hadoop.hive.ql.exec;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;
import java.util.Comparator;
import java.util.Objects;
import org.apache.hadoop.hive.ql.metadata.HiveException;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.junit.Test;
/**
* Unit test of TopNKeyFilter.
*/
public class TestTopNKeyFilter {
public static final Comparator<TestKeyWrapper> TEST_KEY_WRAPPER_COMPARATOR = Comparator.comparingInt(o -> o.keyValue);
@Test
public void testNothingCanBeForwardedIfTopNIs0() {
TopNKeyFilter<TestKeyWrapper> topNKeyFilter = new TopNKeyFilter<>(0, TEST_KEY_WRAPPER_COMPARATOR);
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(1)), is(false));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(-1)), is(false));
}
@Test
public void testFirstTopNKeysCanBeForwarded() {
TopNKeyFilter<TestKeyWrapper> topNKeyFilter = new TopNKeyFilter<>(3, TEST_KEY_WRAPPER_COMPARATOR);
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(1)), is(true));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(5)), is(true));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(10)), is(true));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(11)), is(false));
}
@Test
public void testKeyCanNotBeForwardedIfItIsDroppedOutFromTopNKeys() {
TopNKeyFilter<TestKeyWrapper> topNKeyFilter = new TopNKeyFilter<>(2, TEST_KEY_WRAPPER_COMPARATOR);
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(1)), is(true));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(3)), is(true));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(2)), is(true));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(3)), is(false));
}
@Test
public void testMembersOfTopNKeysStillCanBeForwardedAfterNonTopNKeysTried() {
TopNKeyFilter<TestKeyWrapper> topNKeyFilter = new TopNKeyFilter<>(2, TEST_KEY_WRAPPER_COMPARATOR);
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(1)), is(true));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(3)), is(true));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(5)), is(false));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(3)), is(true));
assertThat(topNKeyFilter.canForward(new TestKeyWrapper(1)), is(true));
}
/**
* Test implementation of KeyWrapper.
*/
private static class TestKeyWrapper extends KeyWrapper {
private final int keyValue;
TestKeyWrapper(int keyValue) {
this.keyValue = keyValue;
}
@Override
public void getNewKey(Object row, ObjectInspector rowInspector) throws HiveException {
}
@Override
public void setHashKey() {
}
@Override
public KeyWrapper copyKey() {
return new TestKeyWrapper(this.keyValue);
}
@Override
public void copyKey(KeyWrapper oldWrapper) {
}
@Override
public Object[] getKeyArray() {
return new Object[0];
}
@Override
public boolean isCopy() {
return false;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TestKeyWrapper that = (TestKeyWrapper) o;
return keyValue == that.keyValue;
}
@Override
public int hashCode() {
return Objects.hash(keyValue);
}
}
}