Added more test cases
[zxing.git] / core / test / src / com / google / zxing / qrcode / decoder / FormatInformationTestCase.java
1 /*
2  * Copyright 2007 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.qrcode.decoder;
18
19 import junit.framework.TestCase;
20
21 /**
22  * @author srowen@google.com (Sean Owen)
23  */
24 public final class FormatInformationTestCase extends TestCase {
25
26   public void testBitsDiffering() {
27     assertEquals(0, FormatInformation.numBitsDiffering(1, 1));
28     assertEquals(1, FormatInformation.numBitsDiffering(0, 2));
29     assertEquals(2, FormatInformation.numBitsDiffering(1, 2));
30     assertEquals(32, FormatInformation.numBitsDiffering(-1,0));       
31   }
32
33   public void testDecode() {
34     // Normal case
35     FormatInformation expected = FormatInformation.decodeFormatInformation(0x2BED ^ 0x5412);
36     assertEquals((byte) 0x07, expected.getDataMask());
37     assertEquals(ErrorCorrectionLevel.Q, expected.getErrorCorrectionLevel());
38     // where the code forgot the mask!
39     assertEquals(expected, FormatInformation.decodeFormatInformation(0x2BED));
40
41     // 1,2,3,4 bits difference
42     assertEquals(expected, FormatInformation.decodeFormatInformation(0x2BEF ^ 0x5412));
43     assertEquals(expected, FormatInformation.decodeFormatInformation(0x2BEE ^ 0x5412));
44     assertEquals(expected, FormatInformation.decodeFormatInformation(0x2BEA ^ 0x5412));
45     assertNull(FormatInformation.decodeFormatInformation(0x2BE2 ^ 0x5412));
46   }
47
48 }