由于某些奇怪的未知原因,此测试在 xctool (0.1.16) 中运行时失败,但在我通过 XCode 运行时通过。
- (void)testGetAppleIdfa
{
NSString *sample_uuid = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];
// For regex pattern matching to verify if it's of UUID
NSString *pattern = @"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}";
NSRange searchRange = NSMakeRange(0, [sample_uuid length]);
NSError *error = NULL;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:pattern options:0 error:&error];
NSArray *matches = [regex matchesInString:sample_uuid options:0 range:searchRange];
NSLog(@"UUID generated: %@", sample_uuid);
XCTAssertEqual([matches count], 1, @"UUID generated doesn't match the UUID RFC");
}
奇怪的原因是因为我使用完全相同的代码,但是sample_uuid
用[[NSUUID UUID] UUIDString]
.
这是 xctool 在控制台中吐出的内容:
2014-06-19 05:50:25.677 xctest[11190:303] LaunchServices: failed to get advertiserID
Unknown File:0: *** -[NSRegularExpression enumerateMatchesInString:options:range:usingBlock:]: nil argument
(
0 CoreFoundation 0x00b331e4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x007a68e5 objc_exception_throw + 44
2 CoreFoundation 0x00b32fbb +[NSException raise:format:] + 139
3 Foundation 0x00079086 -[NSRegularExpression(NSMatching) enumerateMatchesInString:options:range:usingBlock:] + 215
4 Foundation 0x00042735 -[NSRegularExpression(NSMatching) matchesInString:options:range:] + 143
5 SnowplowTests 0x02f09462 -[TestUtils testGetAppleIdfa] + 338
6 CoreFoundation 0x00b2791d __invoking___ + 29
7 CoreFoundation 0x00b2782a -[NSInvocation invoke] + 362
8 XCTest 0x20103c6c -[XCTestCase invokeTest] + 221
9 XCTest 0x20103d7b -[XCTestCase performTest:] + 111
10 otest-shim-ios.dylib 0x00008cc7 XCPerformTestWithSuppressedExpectedAssertionFailures + 172
11 otest-shim-ios.dylib 0x00008c15 XCTestCase_performTest + 31
12 XCTest 0x20104c48 -[XCTest run] + 82
13 XCTest 0x201033e8 -[XCTestSuite performTest:] + 139
14 XCTest 0x20104c48 -[XCTest run] + 82
15 XCTest 0x201033e8 -[XCTestSuite performTest:] + 139
16 XCTest 0x20104c48 -[XCTest run] + 82
17 XCTest 0x201033e8 -[XCTestSuite performTest:] + 139
18 XCTest 0x20104c48 -[XCTest run] + 82
19 XCTest 0x201066ba +[XCTestProbe runTests:] + 183
20 libobjc.A.dylib 0x007b8743 +[NSObject performSelector:withObject:] + 70
21 xctest 0x0000233e xctest + 4926
22 xctest 0x00002590 xctest + 5520
23 xctest 0x00002671 xctest + 5745
24 xctest 0x00002007 xctest + 4103
25 libdyld.dylib 0x01687701 start + 1
):
通过反复试验,我发现测试在NSArray *matches = [regex matchesInString:sample_uuid options:0 range:searchRange];
调用enumerateMatchesInString:options:range:usingBlock:
. 同样,它通过提供完全相同格式的不同 UUID 生成器传递。
旁注:这不应该匹配类型 4 UUID,这就是正则表达式保持原样的原因。
编辑:当我使用从终端运行 xctools 时,出现xctool -workspace MyApp.xcworkspace -scheme MyApp -sdk iphonesimulator7.1 build test
上述错误。但是,当我通过 XCode 运行测试时,我在 NSLog 中获得了我的 UUID 并且它通过了。