blob: 319e3969bd2e4f61c0b961f4d3a14e6b20327f01 [file] [log] [blame]
/*
* 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 "AnyAIDecoderTest.h"
static NSString *header = @".....";
@implementation AnyAIDecoderTest
- (void)testAnyAIDecoder_1 {
NSString *data = [NSString stringWithFormat:@"%@%@%@%@%@%@%@", header, numeric_10, numeric_12, numeric2alpha, alpha_A,
alpha2numeric, numeric_12];
NSString *expected = @"(10)12A12";
[self assertCorrectBinaryString:data expectedNumber:expected error:nil];
}
- (void)testAnyAIDecoder_2 {
NSString *data = [NSString stringWithFormat:@"%@%@%@%@%@%@%@", header, numeric_10, numeric_12, numeric2alpha, alpha_A,
alpha2isoiec646, i646_B];
NSString *expected = @"(10)12AB";
[self assertCorrectBinaryString:data expectedNumber:expected error:nil];
}
- (void)testAnyAIDecoder_3 {
NSString *data = [NSString stringWithFormat:@"%@%@%@%@%@%@%@%@%@%@", header, numeric_10, numeric2alpha, alpha2isoiec646, i646_B,
i646_C, isoiec646_2alpha, alpha_A, alpha2numeric, numeric_10];
NSString *expected = @"(10)BCA10";
[self assertCorrectBinaryString:data expectedNumber:expected error:nil];
}
- (void)testAnyAIDecoder_numericFNC1_secondDigit {
NSString *data = [NSString stringWithFormat:@"%@%@%@", header, numeric_10, numeric_1FNC1];
NSString *expected = @"(10)1";
[self assertCorrectBinaryString:data expectedNumber:expected error:nil];
}
- (void)testAnyAIDecoder_alphaFNC1 {
NSString *data = [NSString stringWithFormat:@"%@%@%@%@%@", header, numeric_10, numeric2alpha, alpha_A, alpha_FNC1];
NSString *expected = @"(10)A";
[self assertCorrectBinaryString:data expectedNumber:expected error:nil];
}
- (void)testAnyAIDecoder_646FNC1 {
NSString *data = [NSString stringWithFormat:@"%@%@%@%@%@%@%@", header, numeric_10, numeric2alpha, alpha_A, isoiec646_2alpha,
i646_B, i646_FNC1];
NSString *expected = @"(10)AB";
[self assertCorrectBinaryString:data expectedNumber:expected error:nil];
}
@end