blob: a861ca5d6e4b04f50f384119c6ca5d37bd45c510 [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.utils.datastructure;
import org.apache.iotdb.tsfile.utils.BitMap;
import org.apache.commons.lang3.ArrayUtils;
import org.junit.Assert;
import org.junit.Test;
import java.util.ArrayList;
import java.util.List;
public class FloatTVListTest {
public static float delta = 0.001f;
@Test
public void testFloatTVList1() {
FloatTVList tvList = FloatTVList.newList();
for (int i = 0; i < 1000; i++) {
tvList.putFloat(i, (float) i);
}
tvList.sort();
for (int i = 0; i < tvList.rowCount; i++) {
Assert.assertEquals((float) i, tvList.getFloat(i), delta);
Assert.assertEquals(i, tvList.getTime(i));
}
}
@Test
public void testFloatTVList2() {
FloatTVList tvList = FloatTVList.newList();
for (int i = 1000; i >= 0; i--) {
tvList.putFloat(i, (float) i);
}
tvList.sort();
for (int i = 0; i < tvList.rowCount; i++) {
Assert.assertEquals((float) i, tvList.getFloat(i), delta);
Assert.assertEquals(i, tvList.getTime(i));
}
}
@Test
public void testPutFloatsWithoutBitMap() {
FloatTVList tvList = FloatTVList.newList();
List<Float> floatList = new ArrayList<>();
List<Long> timeList = new ArrayList<>();
for (long i = 1000; i >= 0; i--) {
timeList.add(i);
floatList.add((float) i);
}
tvList.putFloats(
ArrayUtils.toPrimitive(timeList.toArray(new Long[0])),
ArrayUtils.toPrimitive(floatList.toArray(new Float[0]), 0.0F),
null,
0,
1000);
for (long i = 0; i < tvList.rowCount; i++) {
Assert.assertEquals((float) tvList.rowCount - i, tvList.getFloat((int) i), delta);
Assert.assertEquals(tvList.rowCount - i, tvList.getTime((int) i));
}
}
@Test
public void testPutFloatsWithBitMap() {
FloatTVList tvList = FloatTVList.newList();
List<Float> floatList = new ArrayList<>();
List<Long> timeList = new ArrayList<>();
BitMap bitMap = new BitMap(1001);
for (long i = 1000; i >= 0; i--) {
timeList.add(i);
floatList.add((float) i);
if (i % 100 == 0) {
bitMap.mark((int) i);
}
}
tvList.putFloats(
ArrayUtils.toPrimitive(timeList.toArray(new Long[0])),
ArrayUtils.toPrimitive(floatList.toArray(new Float[0]), 0.0F),
bitMap,
0,
1000);
tvList.sort();
int nullCnt = 0;
for (long i = 1; i < floatList.size(); i++) {
if (i % 100 == 0) {
nullCnt++;
continue;
}
Assert.assertEquals(i, tvList.getFloat((int) i - nullCnt - 1), delta);
Assert.assertEquals(i, tvList.getTime((int) i - nullCnt - 1));
}
}
@Test
public void testClone() {
FloatTVList tvList = FloatTVList.newList();
List<Float> floatList = new ArrayList<>();
List<Long> timeList = new ArrayList<>();
BitMap bitMap = new BitMap(1001);
for (long i = 1000; i >= 0; i--) {
timeList.add(i);
floatList.add((float) i);
if (i % 100 == 0) {
bitMap.mark((int) i);
}
}
tvList.putFloats(
ArrayUtils.toPrimitive(timeList.toArray(new Long[0])),
ArrayUtils.toPrimitive(floatList.toArray(new Float[0]), 0.0F),
bitMap,
0,
1000);
tvList.sort();
FloatTVList clonedTvList = tvList.clone();
for (long i = 0; i < tvList.rowCount; i++) {
Assert.assertEquals(tvList.getFloat((int) i), clonedTvList.getFloat((int) i), delta);
Assert.assertEquals(tvList.getTime((int) i), clonedTvList.getTime((int) i));
}
}
}