/* * 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.Test; import java.util.Random; /** * @author Sean Owen */ public final class ReedSolomonDecoderQRCodeTestCase extends AbstractReedSolomonTestCase { /** See ISO 18004, Appendix I, from which this example is taken. */ private static final int[] QR_CODE_TEST = { 0x10, 0x20, 0x0C, 0x56, 0x61, 0x80, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11 }; private static final int[] QR_CODE_TEST_WITH_EC = { 0x10, 0x20, 0x0C, 0x56, 0x61, 0x80, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xA5, 0x24, 0xD4, 0xC1, 0xED, 0x36, 0xC7, 0x87, 0x2C, 0x55 }; private static final int QR_CODE_ECC_BYTES = QR_CODE_TEST_WITH_EC.length - QR_CODE_TEST.length; private static final int QR_CODE_CORRECTABLE = QR_CODE_ECC_BYTES / 2; private final ReedSolomonDecoder qrRSDecoder = new ReedSolomonDecoder(GenericGF.QR_CODE_FIELD_256); @Test public void testNoError() throws ReedSolomonException { int[] received = new int[QR_CODE_TEST_WITH_EC.length]; System.arraycopy(QR_CODE_TEST_WITH_EC, 0, received, 0, received.length); // no errors checkQRRSDecode(received); } @Test public void testOneError() throws ReedSolomonException { int[] received = new int[QR_CODE_TEST_WITH_EC.length]; Random random = getRandom(); for (int i = 0; i < received.length; i++) { System.arraycopy(QR_CODE_TEST_WITH_EC, 0, received, 0, received.length); received[i] = random.nextInt(256); checkQRRSDecode(received); } } @Test public void testMaxErrors() throws ReedSolomonException { int[] received = new int[QR_CODE_TEST_WITH_EC.length]; Random random = getRandom(); for (int test : QR_CODE_TEST) { // # iterations is kind of arbitrary System.arraycopy(QR_CODE_TEST_WITH_EC, 0, received, 0, received.length); corrupt(received, QR_CODE_CORRECTABLE, random); checkQRRSDecode(received); } } @Test public void testTooManyErrors() { int[] received = new int[QR_CODE_TEST_WITH_EC.length]; System.arraycopy(QR_CODE_TEST_WITH_EC, 0, received, 0, received.length); Random random = getRandom(); corrupt(received, QR_CODE_CORRECTABLE + 1, random); try { checkQRRSDecode(received); fail("Should not have decoded"); } catch (ReedSolomonException rse) { // good } } private void checkQRRSDecode(int[] received) throws ReedSolomonException { qrRSDecoder.decode(received, QR_CODE_ECC_BYTES); for (int i = 0; i < QR_CODE_TEST.length; i++) { assertEquals(received[i], QR_CODE_TEST[i]); } } }