blob: 4274ecc564aa3a0090808742dc8f015a6b6e2442 [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.iotdb.db.storageengine.dataregion.read.reader.chunk;
import org.apache.iotdb.tsfile.file.metadata.ChunkMetadata;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
import org.apache.iotdb.tsfile.file.metadata.statistics.Statistics;
import org.apache.iotdb.tsfile.read.common.block.TsBlock;
import org.apache.iotdb.tsfile.read.common.block.TsBlockBuilder;
import org.apache.iotdb.tsfile.read.filter.factory.TimeFilterApi;
import org.apache.iotdb.tsfile.read.filter.factory.ValueFilterApi;
import org.apache.iotdb.tsfile.read.reader.IPageReader;
import org.apache.iotdb.tsfile.read.reader.series.PaginationController;
import org.junit.Assert;
import org.junit.Test;
import org.mockito.Mockito;
import java.io.IOException;
import java.util.Collections;
import java.util.Optional;
public class MemPageReaderTest {
private static final TsBlock tsBlock;
private static final ChunkMetadata chunkMetadata = Mockito.mock(ChunkMetadata.class);
static {
TsBlockBuilder tsBlockBuilder = new TsBlockBuilder(Collections.singletonList(TSDataType.INT32));
Statistics statistics = Statistics.getStatsByType(TSDataType.INT32);
for (int i = 0; i < 100; i++) {
tsBlockBuilder.getTimeColumnBuilder().writeLong(i);
tsBlockBuilder.getValueColumnBuilders()[0].writeInt(i);
tsBlockBuilder.declarePosition();
statistics.update(i, i);
}
tsBlock = tsBlockBuilder.build();
Mockito.when(chunkMetadata.getTimeStatistics()).thenReturn(statistics);
Mockito.when(chunkMetadata.getMeasurementStatistics(0)).thenReturn(Optional.of(statistics));
Mockito.when(chunkMetadata.getDataType()).thenReturn(TSDataType.INT32);
}
private MemPageReader generatePageReader() {
return new MemPageReader(tsBlock, chunkMetadata, null);
}
@Test
public void testNullFilter() throws IOException {
IPageReader pageReader = generatePageReader();
TsBlock tsBlock = pageReader.getAllSatisfiedData();
Assert.assertEquals(100, tsBlock.getPositionCount());
}
@Test
public void testNullFilterAndLimitOffset() throws IOException {
IPageReader pageReader = generatePageReader();
pageReader.setLimitOffset(new PaginationController(10, 10));
TsBlock tsBlock = pageReader.getAllSatisfiedData();
Assert.assertEquals(10, tsBlock.getPositionCount());
Assert.assertEquals(10, tsBlock.getTimeByIndex(0));
Assert.assertEquals(19, tsBlock.getTimeByIndex(9));
}
@Test
public void testFilterAllSatisfy() throws IOException {
IPageReader pageReader = generatePageReader();
pageReader.addRecordFilter(TimeFilterApi.gtEq(0));
TsBlock tsBlock = pageReader.getAllSatisfiedData();
Assert.assertEquals(100, tsBlock.getPositionCount());
}
@Test
public void testFilterAllSatisfyAndLimitOffset() throws IOException {
IPageReader pageReader = generatePageReader();
pageReader.addRecordFilter(TimeFilterApi.gtEq(0));
pageReader.setLimitOffset(new PaginationController(10, 10));
TsBlock tsBlock = pageReader.getAllSatisfiedData();
Assert.assertEquals(10, tsBlock.getPositionCount());
Assert.assertEquals(10, tsBlock.getTimeByIndex(0));
Assert.assertEquals(19, tsBlock.getTimeByIndex(9));
}
@Test
public void testFilter() throws IOException {
IPageReader pageReader = generatePageReader();
pageReader.addRecordFilter(TimeFilterApi.gtEq(50));
pageReader.addRecordFilter(ValueFilterApi.lt(80));
TsBlock tsBlock = pageReader.getAllSatisfiedData();
Assert.assertEquals(30, tsBlock.getPositionCount());
}
@Test
public void testFilterAndLimitOffset() throws IOException {
IPageReader pageReader = generatePageReader();
pageReader.addRecordFilter(TimeFilterApi.gtEq(50));
pageReader.addRecordFilter(ValueFilterApi.lt(80));
pageReader.setLimitOffset(new PaginationController(10, 10));
TsBlock tsBlock = pageReader.getAllSatisfiedData();
Assert.assertEquals(10, tsBlock.getPositionCount());
Assert.assertEquals(60, tsBlock.getTimeByIndex(0));
Assert.assertEquals(69, tsBlock.getTimeByIndex(9));
}
}