blob: 42bee4f846ef474bef1e300ba8e690d39eda4f76 [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.compress;
import org.apache.iotdb.tsfile.compress.ICompressor.IOTDBLZ4Compressor;
import org.apache.iotdb.tsfile.compress.IUnCompressor.LZ4UnCompressor;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.ThreadLocalRandom;
public class LZ4Test {
private String randomString(int length) {
StringBuilder builder = new StringBuilder(length);
for (int i = 0; i < length; i++) {
builder.append((char) (ThreadLocalRandom.current().nextInt(33, 128)));
}
return builder.toString();
}
@Before
public void setUp() {}
@After
public void tearDown() {}
@Test
public void testBytes1() throws IOException {
String input = randomString(2000000);
byte[] uncom = input.getBytes(StandardCharsets.UTF_8);
long time = System.currentTimeMillis();
ICompressor compressor = new IOTDBLZ4Compressor();
byte[] compressed = compressor.compress(uncom);
System.out.println("compression time cost:" + (System.currentTimeMillis() - time));
time = System.currentTimeMillis();
System.out.println("ratio: " + (double) compressed.length / uncom.length);
IUnCompressor unCompressor = new LZ4UnCompressor();
byte[] uncompressed = new byte[uncom.length];
unCompressor.uncompress(compressed, 0, compressed.length, uncompressed, 0);
System.out.println("decompression time cost:" + (System.currentTimeMillis() - time));
Assert.assertArrayEquals(uncom, uncompressed);
}
@Test
public void testBytes2() throws IOException {
ICompressor.IOTDBLZ4Compressor compressor = new ICompressor.IOTDBLZ4Compressor();
IUnCompressor.LZ4UnCompressor unCompressor = new IUnCompressor.LZ4UnCompressor();
int n = 500000;
String input = randomString(n);
byte[] uncom = input.getBytes(StandardCharsets.UTF_8);
byte[] compressed = compressor.compress(uncom, 0, uncom.length);
// length should be same
Assert.assertEquals(compressor.compress(uncom).length, compressed.length);
byte[] uncompressed = unCompressor.uncompress(compressed);
Assert.assertArrayEquals(uncom, uncompressed);
}
@Test
public void testBytes3() throws IOException {
ICompressor.IOTDBLZ4Compressor compressor = new ICompressor.IOTDBLZ4Compressor();
IUnCompressor.LZ4UnCompressor unCompressor = new IUnCompressor.LZ4UnCompressor();
int n = 500000;
int offset = 100;
String input = randomString(n);
byte[] origin = input.getBytes(StandardCharsets.UTF_8);
byte[] compressed = new byte[origin.length * 2];
int compressedLength = compressor.compress(origin, 0, origin.length, compressed);
System.arraycopy(compressed, 0, compressed, offset, compressedLength);
for (int i = 0; i < offset; i++) {
compressed[i] = 0;
}
byte[] uncompressed = new byte[origin.length];
unCompressor.uncompress(compressed, offset, compressedLength, uncompressed, 0);
Assert.assertArrayEquals(origin, uncompressed);
}
}