blob: c3d08d02e8e435ee6eab73d700e837401eca7171 [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.tsfile.common.block;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
import org.apache.iotdb.tsfile.read.common.block.column.BinaryColumn;
import org.apache.iotdb.tsfile.read.common.block.column.ColumnEncoder;
import org.apache.iotdb.tsfile.read.common.block.column.ColumnEncoderFactory;
import org.apache.iotdb.tsfile.read.common.block.column.ColumnEncoding;
import org.apache.iotdb.tsfile.utils.Binary;
import org.junit.Assert;
import org.junit.Test;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.Optional;
import java.util.Random;
public class BinaryArrayColumnEncoderTest {
@Test
public void testBinaryColumn() {
final int positionCount = 10;
Random random = new Random();
boolean[] nullIndicators = new boolean[positionCount];
Binary[] values = new Binary[positionCount];
for (int i = 0; i < positionCount; i++) {
nullIndicators[i] = i % 2 == 0;
if (i % 2 != 0) {
int length = random.nextInt(1024) + 1;
byte[] value = new byte[length];
random.nextBytes(value);
values[i] = new Binary(value);
}
}
BinaryColumn input = new BinaryColumn(positionCount, Optional.of(nullIndicators), values);
long expectedRetainedSize = input.getRetainedSizeInBytes();
ColumnEncoder encoder = ColumnEncoderFactory.get(ColumnEncoding.BINARY_ARRAY);
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(byteArrayOutputStream);
try {
encoder.writeColumn(dos, input);
} catch (IOException e) {
e.printStackTrace();
Assert.fail();
}
ByteBuffer buffer = ByteBuffer.wrap(byteArrayOutputStream.toByteArray());
BinaryColumn output = (BinaryColumn) encoder.readColumn(buffer, TSDataType.TEXT, positionCount);
Assert.assertEquals(positionCount, output.getPositionCount());
Assert.assertTrue(output.mayHaveNull());
Assert.assertEquals(expectedRetainedSize, output.getRetainedSizeInBytes());
for (int i = 0; i < positionCount; i++) {
Assert.assertEquals(i % 2 == 0, output.isNull(i));
if (i % 2 != 0) {
Assert.assertEquals(values[i], output.getBinary(i));
}
}
}
}