git-svn-id: http://zxing.googlecode.com/svn/trunk@6 59b500cc-1b3d-0410-9834-0bbf25fbcc57
[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 import junit.textui.TestRunner;
21
22 /**
23  * @author Sean Owen
24  */
25 public final class FormatInformationTestCase extends TestCase {
26
27   public void testBitsDiffering() {
28     assertEquals(0, FormatInformation.numBitsDiffering(1, 1));
29     assertEquals(1, FormatInformation.numBitsDiffering(0, 2));
30     assertEquals(2, FormatInformation.numBitsDiffering(1, 2));
31     assertEquals(32, FormatInformation.numBitsDiffering(-1,0));       
32   }
33
34   public void testDecode() {
35     // Normal case
36     FormatInformation expected =
37         FormatInformation.decodeFormatInformation(0x2BED ^ 0x5412);
38     assertEquals((byte) 0x07, expected.getDataMask());
39     assertEquals(ErrorCorrectionLevel.Q, expected.getErrorCorrectionLevel());
40     // where the code forgot the mask!
41     assertEquals(expected, FormatInformation.decodeFormatInformation(0x2BED));
42     // 1,2,3,4 bits difference
43     assertEquals(expected, FormatInformation.decodeFormatInformation(
44                            0x2BEF ^ 0x5412));
45     assertEquals(expected, FormatInformation.decodeFormatInformation(
46                            0x2BEE ^ 0x5412));
47     assertEquals(expected, FormatInformation.decodeFormatInformation(
48                            0x2BEA ^ 0x5412));
49     assertNull(FormatInformation.decodeFormatInformation(0x2BE2 ^ 0x5412));
50   }
51
52   public static void main(String[] args) {
53     TestRunner.run(new DataMaskTestCase());
54   }
55
56 }