由于某些奇怪的未知原因,此测试在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:
时,测试会在xctool -workspace MyApp.xcworkspace -scheme MyApp -sdk iphonesimulator7.1 build test
崩溃。同样,它传递了一个不同的UUID生成器,它提供完全相同的格式。
附注:这不应该匹配类型4 UUID,这就是正则表达式原样的原因。
编辑:当我使用{{1}}从终端运行xctools时出现上述错误。但是,当我通过XCode运行测试时,我在NSLog中获取了我的UUID并且它通过了。
答案 0 :(得分:0)
您应该确保xctool
正在启动与Xcode
相同的模拟器。
请注意,您未在命令中指定任何模拟器
xctool -workspace MyApp.xcworkspace -scheme MyApp -sdk iphonesimulator7.1 build test
因为-sdk
命令仅在构建时使用,但在启动模拟器时被忽略。
您应该添加类似
的内容-destination 'name=iPhone Retina (4-inch 64-bit),OS=7.1'
答案 1 :(得分:0)
来自Github上的ExtremeMan:
我能够重现你提到的问题。问题是 Xcode现在仍然运行所有测试作为应用程序测试和xctool 区分逻辑和应用测试。
当测试包关联时,我能够让你的测试通过 应用程序因此被视为应用程序测试。
您可以在此处找到更多详细信息: What is this vendorID error message associated with "Cannot Connect to iTunes" for in-app purchase?