/* * Licensed 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 voldemort.store.compress.lzf; import static org.junit.Assert.assertArrayEquals; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import com.ning.compress.lzf.LZFDecoder; import com.ning.compress.lzf.LZFEncoder; import junit.framework.TestCase; public class TestLZF extends TestCase { /** * Semi-automatic unit test: will use all files on current working directory * (and its subdirs) for testing that LZF encode+decode will correctly * round-trip content. */ public void testWithFiles() throws Exception { File currDir = new File("").getAbsoluteFile(); int count = _handleFiles(currDir); System.out.println("OK: tested with " + count + " files."); } private int _handleFiles(File dir) throws IOException { System.out.println("Testing files from dir '" + dir.getAbsolutePath() + "'..."); int count = 0; for(File f: dir.listFiles()) { if(f.isDirectory()) { count += _handleFiles(f); } else { byte[] data = _readData(f); byte[] enc = LZFEncoder.encode(data); byte[] dec = LZFDecoder.decode(enc); assertArrayEquals("File '" + f.getAbsolutePath() + "'", data, dec); ++count; } } return count; } private static byte[] _readData(File in) throws IOException { int len = (int) in.length(); byte[] result = new byte[len]; int offset = 0; FileInputStream fis = new FileInputStream(in); while(len > 0) { int count = fis.read(result, offset, len); if(count < 0) break; len -= count; offset += count; } fis.close(); return result; } }