blob: 4425d867ad7e44f47478564e5969a4bacc3a031a [file] [log] [blame] [edit]
/*
* Copyright 2012 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.
*/
#import "ZXFormatInformationTestCase.h"
const int MASKED_TEST_FORMAT_INFO = 0x2BED;
const int UNMASKED_TEST_FORMAT_INFO = MASKED_TEST_FORMAT_INFO ^ 0x5412;
@implementation ZXFormatInformationTestCase
- (void)testBitsDiffering {
STAssertEquals([ZXFormatInformation numBitsDiffering:1 b:1], 0, @"Expected numBitsDiffering 1, 1 to equal 0");
STAssertEquals([ZXFormatInformation numBitsDiffering:0 b:2], 1, @"Expected numBitsDiffering 0, 2 to equal 1");
STAssertEquals([ZXFormatInformation numBitsDiffering:1 b:2], 2, @"Expected numBitsDiffering 1, 2 to equal 2");
STAssertEquals([ZXFormatInformation numBitsDiffering:-1 b:0], 32, @"Expected numBitsDiffering -1, 0 to equal 32");
}
- (void)testDecode {
// Normal case
ZXFormatInformation *expected =
[ZXFormatInformation decodeFormatInformation:MASKED_TEST_FORMAT_INFO maskedFormatInfo2:MASKED_TEST_FORMAT_INFO];
STAssertNotNil(expected, @"Expected expected to be non-nil");
STAssertEquals(expected.dataMask, (char) 0x07, @"Expected data mask to equal 0x07");
STAssertEqualObjects(expected.errorCorrectionLevel, [ZXErrorCorrectionLevel errorCorrectionLevelQ],
@"Expected error correction level to be Q");
// where the code forgot the mask!
STAssertEqualObjects([ZXFormatInformation decodeFormatInformation:UNMASKED_TEST_FORMAT_INFO maskedFormatInfo2:MASKED_TEST_FORMAT_INFO], expected, @"Expected decode to be %@", expected);
}
- (void)testDecodeWithBitDifference {
ZXFormatInformation *expected =
[ZXFormatInformation decodeFormatInformation:MASKED_TEST_FORMAT_INFO maskedFormatInfo2:MASKED_TEST_FORMAT_INFO];
// 1,2,3,4 bits difference
STAssertEqualObjects([ZXFormatInformation decodeFormatInformation:MASKED_TEST_FORMAT_INFO ^ 0x01 maskedFormatInfo2:MASKED_TEST_FORMAT_INFO ^ 0x01], expected, @"Expected decode to be %@", expected);
STAssertEqualObjects([ZXFormatInformation decodeFormatInformation:MASKED_TEST_FORMAT_INFO ^ 0x03 maskedFormatInfo2:MASKED_TEST_FORMAT_INFO ^ 0x03], expected, @"Expected decode to be %@", expected);
STAssertEqualObjects([ZXFormatInformation decodeFormatInformation:MASKED_TEST_FORMAT_INFO ^ 0x07 maskedFormatInfo2:MASKED_TEST_FORMAT_INFO ^ 0x07], expected, @"Expected decode to be %@", expected);
STAssertNil([ZXFormatInformation decodeFormatInformation:MASKED_TEST_FORMAT_INFO ^ 0x0F maskedFormatInfo2:MASKED_TEST_FORMAT_INFO ^ 0x0F], @"Expected decode to be nil");
}
- (void)testDecodeWithMisread {
ZXFormatInformation *expected =
[ZXFormatInformation decodeFormatInformation:MASKED_TEST_FORMAT_INFO maskedFormatInfo2:MASKED_TEST_FORMAT_INFO];
STAssertEqualObjects([ZXFormatInformation decodeFormatInformation:MASKED_TEST_FORMAT_INFO ^ 0x03 maskedFormatInfo2:MASKED_TEST_FORMAT_INFO ^ 0x0F], expected, @"Expected decode to be %@", expected);
}
@end