blob: 4c78d904e5118f9d57eedc56a32e15b8d119119e [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.utils.ReadWriteIOUtils;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.ThreadLocalRandom;
public class LZMA2Test {
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 {
ICompressor compressor = new ICompressor.LZMA2Compressor();
IUnCompressor unCompressor = new IUnCompressor.LZMA2UnCompressor();
int n = 500000;
String input = randomString(n);
byte[] uncom = input.getBytes(StandardCharsets.UTF_8);
byte[] compressed = compressor.compress(uncom);
byte[] uncompressed = unCompressor.uncompress(compressed);
Assert.assertArrayEquals(uncom, uncompressed);
}
@Test
public void testBytes2() throws IOException {
String input = randomString(2000000);
byte[] uncom = input.getBytes(StandardCharsets.UTF_8);
long time = System.currentTimeMillis();
ICompressor compressor = new ICompressor.LZMA2Compressor();
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 IUnCompressor.LZMA2UnCompressor();
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 testBytes3() throws IOException {
for (int i = 0; i < 500; i += 1) {
String input = randomString(i);
ByteBuffer source = ByteBuffer.allocateDirect(input.getBytes().length);
source.put(input.getBytes());
source.flip();
ICompressor compressor = new ICompressor.LZMA2Compressor();
ByteBuffer compressed =
ByteBuffer.allocateDirect(compressor.getMaxBytesForCompression(input.getBytes().length));
compressor.compress(source, compressed);
IUnCompressor unCompressor = new IUnCompressor.LZMA2UnCompressor();
ByteBuffer uncompressedByteBuffer = ByteBuffer.allocateDirect(input.getBytes().length);
compressed.flip();
unCompressor.uncompress(compressed, uncompressedByteBuffer);
uncompressedByteBuffer.flip();
String afterDecode = ReadWriteIOUtils.readStringFromDirectByteBuffer(uncompressedByteBuffer);
Assert.assertEquals(afterDecode, input);
}
}
}