blob: ecabfd4a45f8bce04cdb25b9c8cd428bf277dd03 [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.carbondata.core.reader;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import org.apache.carbondata.core.cache.dictionary.DictionaryColumnUniqueIdentifier;
import org.apache.carbondata.core.metadata.AbsoluteTableIdentifier;
import org.apache.carbondata.core.metadata.CarbonTableIdentifier;
import org.apache.carbondata.core.metadata.ColumnIdentifier;
import org.apache.carbondata.core.service.CarbonCommonFactory;
import mockit.Mock;
import mockit.MockUp;
import org.apache.thrift.TBase;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
public class CarbonDictionaryReaderImplTest {
private static AbsoluteTableIdentifier absoluteTableIdentifier = null;
private static ColumnIdentifier columnIdentifier = null;
private static CarbonDictionaryReaderImpl carbonDictionaryReaderImpl = null;
@BeforeClass public static void setUp() throws Exception {
columnIdentifier = new ColumnIdentifier("1", null, null);
absoluteTableIdentifier =
AbsoluteTableIdentifier.from("tablePath",
new CarbonTableIdentifier("dbName", "tableName", UUID.randomUUID().toString()));
DictionaryColumnUniqueIdentifier dictionaryColumnUniqueIdentifier =
new DictionaryColumnUniqueIdentifier(absoluteTableIdentifier, columnIdentifier,
columnIdentifier.getDataType());
carbonDictionaryReaderImpl =
new CarbonDictionaryReaderImpl(dictionaryColumnUniqueIdentifier);
}
@Test public void testRead() throws Exception {
new MockUp<CarbonDictionaryMetadataReaderImpl>() {
@Mock public List<CarbonDictionaryColumnMetaChunk> read() throws IOException {
CarbonDictionaryColumnMetaChunk carbonDictionaryColumnMetaChunks =
new CarbonDictionaryColumnMetaChunk(1, 8, 60L, 120L, 20);
List<CarbonDictionaryColumnMetaChunk> carbonDictionaryColumnMetaChunksList =
new ArrayList<CarbonDictionaryColumnMetaChunk>();
carbonDictionaryColumnMetaChunksList.add(carbonDictionaryColumnMetaChunks);
return carbonDictionaryColumnMetaChunksList;
}
};
new MockUp<ThriftReader>() {
@Mock public void setReadOffset(long bytesToSkip) throws IOException {
}
};
new MockUp<ThriftReader>() {
@Mock public void open() throws IOException {
}
};
new MockUp<ThriftReader>() {
@Mock public boolean hasNext() throws IOException {
return true;
}
};
new MockUp<CarbonDictionaryColumnMetaChunk>() {
@Mock public long getStart_offset() {
return 0L;
}
};
new MockUp<ThriftReader>() {
@Mock public TBase read() throws IOException {
List<ByteBuffer> byteBufferList = new ArrayList<ByteBuffer>();
ByteBuffer buf = ByteBuffer.allocate(2);
byteBufferList.add(buf);
return new org.apache.carbondata.format.ColumnDictionaryChunk(byteBufferList);
}
};
int expectedResult = 20;
int actualResult = carbonDictionaryReaderImpl.read().size();
assertTrue(actualResult == expectedResult);
}
}