TestMarker.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.common.predicate;
import com.facebook.airlift.json.JsonObjectMapperProvider;
import com.facebook.presto.common.block.Block;
import com.facebook.presto.common.block.TestingBlockEncodingSerde;
import com.facebook.presto.common.block.TestingBlockJsonSerde;
import com.facebook.presto.common.type.TestingTypeDeserializer;
import com.facebook.presto.common.type.TestingTypeManager;
import com.facebook.presto.common.type.Type;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.module.SimpleModule;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Ordering;
import org.testng.annotations.Test;
import java.util.Map;
import static com.facebook.presto.common.type.BigintType.BIGINT;
import static com.facebook.presto.common.type.BooleanType.BOOLEAN;
import static com.facebook.presto.common.type.DoubleType.DOUBLE;
import static com.facebook.presto.common.type.VarcharType.VARCHAR;
import static io.airlift.slice.Slices.utf8Slice;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertFalse;
import static org.testng.Assert.assertNotEquals;
import static org.testng.Assert.assertThrows;
import static org.testng.Assert.assertTrue;
public class TestMarker
{
private final ObjectMapper mapper;
public TestMarker()
{
TestingTypeManager typeManager = new TestingTypeManager();
TestingBlockEncodingSerde blockEncodingSerde = new TestingBlockEncodingSerde();
this.mapper = new JsonObjectMapperProvider().get()
.registerModule(new SimpleModule()
.addDeserializer(Type.class, new TestingTypeDeserializer(typeManager))
.addSerializer(Block.class, new TestingBlockJsonSerde.Serializer(blockEncodingSerde))
.addDeserializer(Block.class, new TestingBlockJsonSerde.Deserializer(blockEncodingSerde)));
}
@Test
public void testTypes()
{
assertEquals(Marker.lowerUnbounded(BIGINT).getType(), BIGINT);
assertEquals(Marker.below(BIGINT, 1L).getType(), BIGINT);
assertEquals(Marker.exactly(BIGINT, 1L).getType(), BIGINT);
assertEquals(Marker.above(BIGINT, 1L).getType(), BIGINT);
assertEquals(Marker.upperUnbounded(BIGINT).getType(), BIGINT);
}
@Test
public void testUnbounded()
{
assertTrue(Marker.lowerUnbounded(BIGINT).isLowerUnbounded());
assertFalse(Marker.lowerUnbounded(BIGINT).isUpperUnbounded());
assertTrue(Marker.upperUnbounded(BIGINT).isUpperUnbounded());
assertFalse(Marker.upperUnbounded(BIGINT).isLowerUnbounded());
assertFalse(Marker.below(BIGINT, 1L).isLowerUnbounded());
assertFalse(Marker.below(BIGINT, 1L).isUpperUnbounded());
assertFalse(Marker.exactly(BIGINT, 1L).isLowerUnbounded());
assertFalse(Marker.exactly(BIGINT, 1L).isUpperUnbounded());
assertFalse(Marker.above(BIGINT, 1L).isLowerUnbounded());
assertFalse(Marker.above(BIGINT, 1L).isUpperUnbounded());
}
@Test
public void testComparisons()
{
ImmutableList<Marker> markers = ImmutableList.of(
Marker.lowerUnbounded(BIGINT),
Marker.above(BIGINT, 0L),
Marker.below(BIGINT, 1L),
Marker.exactly(BIGINT, 1L),
Marker.above(BIGINT, 1L),
Marker.below(BIGINT, 2L),
Marker.upperUnbounded(BIGINT));
assertTrue(Ordering.natural().isStrictlyOrdered(markers));
// Compare every marker with every other marker
// Since the markers are strictly ordered, the value of the comparisons should be equivalent to the comparisons
// of their indexes.
for (int i = 0; i < markers.size(); i++) {
for (int j = 0; j < markers.size(); j++) {
assertEquals(markers.get(i).compareTo(markers.get(j)), Integer.compare(i, j));
}
}
}
@Test
public void testAdjacency()
{
ImmutableMap<Marker, Integer> markers = ImmutableMap.<Marker, Integer>builder()
.put(Marker.lowerUnbounded(BIGINT), -1000)
.put(Marker.above(BIGINT, 0L), -100)
.put(Marker.below(BIGINT, 1L), -1)
.put(Marker.exactly(BIGINT, 1L), 0)
.put(Marker.above(BIGINT, 1L), 1)
.put(Marker.below(BIGINT, 2L), 100)
.put(Marker.upperUnbounded(BIGINT), 1000)
.build();
// Compare every marker with every other marker
// Map values of distance 1 indicate expected adjacency
for (Map.Entry<Marker, Integer> entry1 : markers.entrySet()) {
for (Map.Entry<Marker, Integer> entry2 : markers.entrySet()) {
boolean adjacent = entry1.getKey().isAdjacent(entry2.getKey());
boolean distanceIsOne = Math.abs(entry1.getValue() - entry2.getValue()) == 1;
assertEquals(adjacent, distanceIsOne);
}
}
assertEquals(Marker.below(BIGINT, 1L).greaterAdjacent(), Marker.exactly(BIGINT, 1L));
assertEquals(Marker.exactly(BIGINT, 1L).greaterAdjacent(), Marker.above(BIGINT, 1L));
assertEquals(Marker.above(BIGINT, 1L).lesserAdjacent(), Marker.exactly(BIGINT, 1L));
assertEquals(Marker.exactly(BIGINT, 1L).lesserAdjacent(), Marker.below(BIGINT, 1L));
assertThrows(IllegalStateException.class, () -> Marker.below(BIGINT, 1L).lesserAdjacent());
assertThrows(IllegalStateException.class, () -> Marker.above(BIGINT, 1L).greaterAdjacent());
assertThrows(IllegalStateException.class, () -> Marker.lowerUnbounded(BIGINT).lesserAdjacent());
assertThrows(IllegalStateException.class, () -> Marker.lowerUnbounded(BIGINT).greaterAdjacent());
assertThrows(IllegalStateException.class, () -> Marker.upperUnbounded(BIGINT).lesserAdjacent());
assertThrows(IllegalStateException.class, () -> Marker.upperUnbounded(BIGINT).greaterAdjacent());
}
@Test
public void testJsonSerialization()
throws Exception
{
Marker marker = Marker.above(BIGINT, 0L);
assertEquals(marker, mapper.readValue(mapper.writeValueAsString(marker), Marker.class));
marker = Marker.exactly(VARCHAR, utf8Slice("abc"));
assertEquals(marker, mapper.readValue(mapper.writeValueAsString(marker), Marker.class));
marker = Marker.below(DOUBLE, 0.123);
assertEquals(marker, mapper.readValue(mapper.writeValueAsString(marker), Marker.class));
marker = Marker.exactly(BOOLEAN, true);
assertEquals(marker, mapper.readValue(mapper.writeValueAsString(marker), Marker.class));
marker = Marker.upperUnbounded(BIGINT);
assertEquals(marker, mapper.readValue(mapper.writeValueAsString(marker), Marker.class));
marker = Marker.lowerUnbounded(BIGINT);
assertEquals(marker, mapper.readValue(mapper.writeValueAsString(marker), Marker.class));
}
@Test
public void testCanonicalize()
throws Exception
{
assertSameMarker(Marker.above(BIGINT, 0L), Marker.above(BIGINT, 0L), false);
assertSameMarker(Marker.above(VARCHAR, utf8Slice("abc")), Marker.above(VARCHAR, utf8Slice("abc")), false);
assertSameMarker(Marker.upperUnbounded(BIGINT), Marker.upperUnbounded(BIGINT), false);
assertDifferentMarker(Marker.above(BIGINT, 0L), Marker.above(BIGINT, 5L), false);
assertDifferentMarker(Marker.above(VARCHAR, utf8Slice("abc")), Marker.above(VARCHAR, utf8Slice("abcd")), false);
assertDifferentMarker(Marker.upperUnbounded(BIGINT), Marker.upperUnbounded(VARCHAR), false);
assertDifferentMarker(Marker.above(BIGINT, 0L), Marker.below(BIGINT, 0L), false);
assertDifferentMarker(Marker.below(BIGINT, 0L), Marker.exactly(BIGINT, 0L), false);
assertDifferentMarker(Marker.upperUnbounded(BIGINT), Marker.lowerUnbounded(BIGINT), false);
assertSameMarker(Marker.above(BIGINT, 0L), Marker.above(BIGINT, 5L), true);
assertSameMarker(Marker.below(BIGINT, 0L), Marker.below(BIGINT, 5L), true);
assertSameMarker(Marker.exactly(BIGINT, 0L), Marker.exactly(BIGINT, 5L), true);
assertSameMarker(Marker.above(VARCHAR, utf8Slice("abc")), Marker.above(VARCHAR, utf8Slice("abcd")), true);
assertDifferentMarker(Marker.above(BIGINT, 0L), Marker.below(BIGINT, 0L), true);
assertDifferentMarker(Marker.below(BIGINT, 0L), Marker.exactly(BIGINT, 0L), true);
assertDifferentMarker(Marker.upperUnbounded(BIGINT), Marker.lowerUnbounded(BIGINT), true);
}
@Test
public void testGetValue()
{
assertTrue(Marker.exactly(BIGINT, 1L).getObjectValue().isPresent());
assertTrue(Marker.above(BIGINT, 1L).getObjectValue().isPresent());
assertTrue(Marker.below(BIGINT, 1L).getObjectValue().isPresent());
assertFalse(Marker.upperUnbounded(BIGINT).getObjectValue().isPresent());
assertFalse(Marker.lowerUnbounded(BIGINT).getObjectValue().isPresent());
}
private void assertSameMarker(Marker marker1, Marker marker2, boolean removeConstants)
throws Exception
{
assertEquals(mapper.writeValueAsString(marker1.canonicalize(removeConstants)), mapper.writeValueAsString(marker2.canonicalize(removeConstants)));
}
private void assertDifferentMarker(Marker marker1, Marker marker2, boolean removeConstants)
throws Exception
{
assertNotEquals(mapper.writeValueAsString(marker1.canonicalize(removeConstants)), mapper.writeValueAsString(marker2.canonicalize(removeConstants)));
}
}