/* * Copyright 2008 ZXing authors * * 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 ntu.com.google.zxing.common.reedsolomon; import org.junit.Assert; import java.util.BitSet; import java.util.Random; /** * @author Sean Owen */ abstract class AbstractReedSolomonTestCase extends Assert { static void corrupt(int[] received, int howMany, Random random) { BitSet corrupted = new BitSet(received.length); for (int j = 0; j < howMany; j++) { int location = random.nextInt(received.length); if (corrupted.get(location)) { j--; } else { corrupted.set(location); received[location] = (received[location] + 1 + random.nextInt(255)) & 0xFF; } } } static void doTestQRCodeEncoding(int[] dataBytes, int[] expectedECBytes) { int[] toEncode = new int[dataBytes.length + expectedECBytes.length]; System.arraycopy(dataBytes, 0, toEncode, 0, dataBytes.length); new ReedSolomonEncoder(GenericGF.QR_CODE_FIELD_256).encode(toEncode, expectedECBytes.length); assertArraysEqual(dataBytes, 0, toEncode, 0, dataBytes.length); assertArraysEqual(expectedECBytes, 0, toEncode, dataBytes.length, expectedECBytes.length); } static Random getRandom() { return new Random(0xDEADBEEF); } static void assertArraysEqual(int[] expected, int expectedOffset, int[] actual, int actualOffset, int length) { for (int i = 0; i < length; i++) { assertEquals(expected[expectedOffset + i], actual[actualOffset + i]); } } }