- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我们有一个使用 AFHTTPClient
的类和 AFHTTPRequestOperation
是在内部。在开发中,我们使用无效的 SSL 证书连接到服务器,因此我们在返回请求操作的方法中有以下代码:
if (self.allowInvalidSSLCertificates)
{
[operation setAuthenticationChallengeBlock:^(NSURLConnection *connection, NSURLAuthenticationChallenge *challenge) {
if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) {
[challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];
}
}];
[operation setAuthenticationAgainstProtectionSpaceBlock:^BOOL(NSURLConnection *connection, NSURLProtectionSpace *protectionSpace) {
return YES;
}];
}
实际上与定义 _AFNETWORKING_ALLOW_INVALID_SSL_CERTIFICATES_
相同,但我们需要在运行时执行此操作。这在 Xcode 上完美运行,忽略无效证书,并且我们所有的功能测试都通过了。当我们使用 xcodebuild
从命令行运行它们时,问题就来了.一旦它要运行第一个测试,它就会崩溃:
Run test case <testMethodName>
Test Case '-[<TestCaseClass> <testMethodName>]' started.
/Applications/Xcode.app/Contents/Developer/Tools/RunPlatformUnitTests.include: line 415: 47744 Bus error: 10 "${THIN_TEST_RIG}" "${OTHER_TEST_FLAGS}" "${TEST_BUNDLE_PATH}"
/Applications/Xcode.app/Contents/Developer/Tools/RunPlatformUnitTests.include:451: error: Test rig '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/Developer/usr/bin/otest' exited abnormally with code 138 (it may have crashed).
如果我们删除该代码,并且不忽略无效的 SSL 证书,则测试不会通过,因为连接失败,但不会崩溃。
这是控制台中的崩溃日志:
Process: otest [35957]
Path: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/Developer/usr/bin/otest
Identifier: otest
Version: ??? (???)
Code Type: X86 (Native)
Parent Process: bash [35952]
Date/Time: 2012-05-29 15:46:37.398 -0700
OS Version: Mac OS X 10.7.4 (11E53)
Report Version: 9
Crashed Thread: 7 com.apple.NSURLConnectionLoader
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
VM Regions Near 0:
--> __PAGEZERO 0000000000000000-0000000000001000 [ 4K] ---/--- SM=NUL /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/Developer/usr/bin/otest
__TEXT 0000000000001000-0000000000003000 [ 8K] r-x/rwx SM=COW /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/Developer/usr/bin/otest
Thread 0:
0 libsystem_kernel.dylib 0x98908c22 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x989081f6 mach_msg + 70
2 CoreFoundation 0x0045e10a __CFRunLoopServiceMachPort + 186
3 CoreFoundation 0x003c1550 __CFRunLoopRun + 1312
4 CoreFoundation 0x003c0d84 CFRunLoopRunSpecific + 212
5 CoreFoundation 0x003c0c9b CFRunLoopRunInMode + 123
6 Foundation 0x0004e40f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 300
7 Foundation 0x000899e8 -[NSRunLoop(NSRunLoop) runUntilDate:] + 73
8 Functional Tests 0x052f37d5 -[<TestCaseClass> <TestMethodName>] + 1253 (<TestCaseClass>.m:564)
9 CoreFoundation 0x003f04ed __invoking___ + 29
10 CoreFoundation 0x003f0407 -[NSInvocation invoke] + 167
11 SenTestingKit 0x201039c4 -[SenTestCase invokeTest] + 184
12 SenTestingKit 0x20103868 -[SenTestCase performTest:] + 183
13 SenTestingKit 0x201034a9 -[SenTest run] + 82
14 SenTestingKit 0x20106db2 -[SenTestSuite performTest:] + 106
15 SenTestingKit 0x201034a9 -[SenTest run] + 82
16 SenTestingKit 0x20106db2 -[SenTestSuite performTest:] + 106
17 SenTestingKit 0x201034a9 -[SenTest run] + 82
18 SenTestingKit 0x20105e97 +[SenTestProbe runTests:] + 174
19 CoreFoundation 0x0048bd51 +[NSObject performSelector:withObject:] + 65
20 otest 0x0000231c 0x1000 + 4892
21 otest 0x000025be 0x1000 + 5566
22 otest 0x00002203 0x1000 + 4611
23 otest 0x00001f8d 0x1000 + 3981
24 otest 0x00001f31 0x1000 + 3889
Thread 1:
0 libsystem_kernel.dylib 0x9890b90a kevent + 10
1 libdispatch.dylib 0x01029372 _dispatch_mgr_invoke + 918
2 libdispatch.dylib 0x01027be1 _dispatch_mgr_thread + 53
Thread 2:
0 libsystem_kernel.dylib 0x9890b02e __workq_kernreturn + 10
1 libsystem_c.dylib 0x9aabcccf _pthread_wqthread + 773
2 libsystem_c.dylib 0x9aabe6fe start_wqthread + 30
Thread 3:
0 libsystem_kernel.dylib 0x9890b02e __workq_kernreturn + 10
1 libsystem_c.dylib 0x9aabcccf _pthread_wqthread + 773
2 libsystem_c.dylib 0x9aabe6fe start_wqthread + 30
Thread 4:
0 libsystem_kernel.dylib 0x9890b02e __workq_kernreturn + 10
1 libsystem_c.dylib 0x9aabcccf _pthread_wqthread + 773
2 libsystem_c.dylib 0x9aabe6fe start_wqthread + 30
Thread 5:
0 libsystem_kernel.dylib 0x9890b02e __workq_kernreturn + 10
1 libsystem_c.dylib 0x9aabcccf _pthread_wqthread + 773
2 libsystem_c.dylib 0x9aabe6fe start_wqthread + 30
Thread 6:
0 libsystem_kernel.dylib 0x98908c22 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x989081f6 mach_msg + 70
2 CoreFoundation 0x0045e10a __CFRunLoopServiceMachPort + 186
3 CoreFoundation 0x003c15d5 __CFRunLoopRun + 1445
4 CoreFoundation 0x003c0d84 CFRunLoopRunSpecific + 212
5 CoreFoundation 0x003c0c9b CFRunLoopRunInMode + 123
6 Foundation 0x0004e40f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 300
7 Foundation 0x0004e2d3 -[NSRunLoop(NSRunLoop) run] + 76
8 Functional Tests 0x054fb7f5 +[AFURLConnectionOperation networkRequestThreadEntryPoint:] + 133 (AFURLConnectionOperation.m:146)
9 Foundation 0x0001a4d6 -[NSThread main] + 76
10 Foundation 0x0001a447 __NSThread__main__ + 1258
11 libsystem_c.dylib 0x9aabaed9 _pthread_start + 335
12 libsystem_c.dylib 0x9aabe6de thread_start + 34
Thread 7 Crashed:: com.apple.NSURLConnectionLoader
0 CoreFoundation 0x0039a811 CFArrayGetCount + 17
1 Security 0x00dae356 SecTrustCopyExceptions + 35
2 CFNetwork 0x00b31764 SocketStream::securityAcceptPeerTrust_NoLock(unsigned char) + 150
3 CFNetwork 0x00b39fd4 SocketStream::setProperty(void const*, __CFString const*, void const*) + 2754
4 CFNetwork 0x00b39508 virtual thunk to SocketStream::setProperty(void const*, __CFString const*, void const*) + 43
5 CFNetwork 0x00b3abad ReadStreamCallbacks::_setProperty(__CFReadStream*, __CFString const*, void const*, void*) + 53
6 CoreFoundation 0x00429b10 CFReadStreamSetProperty + 160
7 CFNetwork 0x00b3ab60 HTTPReadFilter::streamSetProperty(__CFReadStream*, __CFString const*, void const*) + 266
8 CFNetwork 0x00bd4345 non-virtual thunk to HTTPReadFilter::streamSetProperty(__CFReadStream*, __CFString const*, void const*) + 41
9 CFNetwork 0x00b37308 CFNetworkReadStream::httpStreamSetProperty(__CFReadStream*, __CFString const*, void const*, void*) + 38
10 CoreFoundation 0x00429b10 CFReadStreamSetProperty + 160
11 CFNetwork 0x00b419f4 HTTPNetStreamInfo::streamSetProperty(__CFReadStream*, __CFString const*, void const*) + 404
12 CFNetwork 0x00b41858 non-virtual thunk to HTTPNetStreamInfo::streamSetProperty(__CFReadStream*, __CFString const*, void const*) + 41
13 CFNetwork 0x00b37308 CFNetworkReadStream::httpStreamSetProperty(__CFReadStream*, __CFString const*, void const*, void*) + 38
14 CoreFoundation 0x00429b10 CFReadStreamSetProperty + 160
15 CFNetwork 0x00be3e29 HTTPProtocol::useCredential(_CFURLCredential const*, _CFURLAuthChallenge*) + 125
16 CFNetwork 0x00bfa98f URLConnectionLoader::loaderUseCredential(_CFURLCredential const*) + 117
17 CFNetwork 0x00bfa47a URLConnectionLoader::LoaderConnectionEventQueue::processAllEventsAndConsumePayload(XConnectionEventInfo<XLoaderEvent, XLoaderEventParams>*, long) + 140
18 CFNetwork 0x00b2273b URLConnectionLoader::processEvents() + 107
19 CFNetwork 0x00bf7117 non-virtual thunk to URLConnectionInstanceData::multiplexerClientPerform() + 21
20 CFNetwork 0x00b20fbf MultiplexerSource::perform() + 259
21 CoreFoundation 0x0045e94f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
22 CoreFoundation 0x003c1b43 __CFRunLoopDoSources0 + 243
23 CoreFoundation 0x003c1424 __CFRunLoopRun + 1012
24 CoreFoundation 0x003c0d84 CFRunLoopRunSpecific + 212
25 CoreFoundation 0x003c0c9b CFRunLoopRunInMode + 123
26 Foundation 0x00108e30 +[NSURLConnection(Loader) _resourceLoadLoop:] + 398
27 Foundation 0x0001a4d6 -[NSThread main] + 76
28 Foundation 0x0001a447 __NSThread__main__ + 1258
29 libsystem_c.dylib 0x9aabaed9 _pthread_start + 335
30 libsystem_c.dylib 0x9aabe6de thread_start + 34
Thread 8:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x9890ab42 __select + 10
1 CoreFoundation 0x003f27cb __CFSocketManager + 939
2 libsystem_c.dylib 0x9aabaed9 _pthread_start + 335
3 libsystem_c.dylib 0x9aabe6de thread_start + 34
Thread 7 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0x00000002 ecx: 0x0d651da4 edx: 0x05012980
edi: 0x0039a80d esi: 0x00000000 ebp: 0xb038bbb8 esp: 0xb038bba0
ss: 0x00000023 efl: 0x00010286 eip: 0x0039a811 cs: 0x0000001b
ds: 0x00000023 es: 0x00000023 fs: 0x00000023 gs: 0x0000000f
cr2: 0x00000000
Logical CPU: 4
Binary Images:
.....
谷歌搜索那个崩溃没有显示任何类似的东西。它在内部崩溃 CFNetwork
用EXC_BAD_ACCESS
,而且我在 AFNetworking 或我的代码中看不到任何可能导致此问题的内存管理问题。此外,这不会 100% 发生(我会说大约 80%),所以我不禁认为存在某种竞争条件。也许我们正在错误的线程中使用非线程安全对象做某事?同样,在这方面没有看到任何特别的东西。
在 Mac OSX 10.7.4 上使用 Xcode 4.3.2
最佳答案
正如我在 github 上所说,我也遇到了这个崩溃(相同的堆栈跟踪),但是当 iOS 模拟器启动时它不会崩溃......
编辑:找到了一个解决方案(不是很方便,但是持续集成回来了:-)
@interface NSURLRequest()+ (void)setAllowsAnyHTTPSCertificate:(BOOL)b forHost:(NSString *)host;@end@implementation SomeTests- (void)setUp{ [NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:@"domain.com"];}...
关于ios - otest 崩溃与 -[id<NSURLAuthenticationChallengeSender> userCredential :],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10808229/
IO 设备如何知道属于它的内存中的值在memory mapped IO 中发生了变化? ? 例如,假设内存地址 0 专用于保存 VGA 设备的背景颜色。当我们更改 memory[0] 中的值时,VGA
我目前正在开发一个使用Facebook sdk登录(通过FBLoginView)的iOS应用。 一切正常,除了那些拥有较旧版本的facebook的人。 当他们按下“使用Facebook登录”按钮时,他
假设我有: this - is an - example - with some - dashesNSRange将使用`rangeOfString:@“-”拾取“-”的第一个实例,但是如果我只想要最后
Card.io SDK提供以下详细信息: 卡号,有效期,月份,年份,CVV和邮政编码。 如何从此SDK获取国家名称。 - (void)userDidProvideCreditCardInfo:(Car
iOS 应用程序如何从网络服务下载图片并在安装过程中将它们安装到用户的 iOS 设备上?可能吗? 最佳答案 您无法控制应用在用户设备上的安装,因此无法在安装过程中下载其他数据。 只需在安装后首次启动应
我曾经开发过一款企业版 iOS 产品,我们公司曾将其出售给大型企业,供他们的员工使用。 该应用程序通过 AppStore 提供,企业用户获得了公司特定的配置文件(包含应用程序配置文件)以启用他们有权使
我正在尝试将 Card.io SDK 集成到我的 iOS 应用程序中。我想为 CardIO ui 做一个简单的本地化,如更改取消按钮标题或“在此保留信用卡”提示文本。 我在 github 上找到了这个
我正在使用 CardIOView 和 CardIOViewDelegate 类,没有可以设置为 YES 的 BOOL 来扫描 collectCardholderName。我可以看到它在 CardIOP
我有一个集成了通话工具包的 voip 应用程序。每次我从我的 voip 应用程序调用时,都会在 native 电话应用程序中创建一个新的最近通话记录。我在 voip 应用程序中也有自定义联系人(电话应
iOS 应用程序如何知道应用程序打开时屏幕上是否已经有键盘?应用程序运行后,它可以接收键盘显示/隐藏通知。但是,如果应用程序在分屏模式下作为辅助应用程序打开,而主应用程序已经显示键盘,则辅助应用程序不
我在模拟器中收到以下错误: ImageIO: CGImageReadSessionGetCachedImageBlockData *** CGImageReadSessionGetCachedIm
如 Apple 文档所示,可以通过 EAAccessory Framework 与经过认证的配件(由 Apple 认证)进行通信。但是我有点困惑,因为一些帖子告诉我它也可以通过 CoreBluetoo
尽管现在的调试器已经很不错了,但有时找出应用程序中正在发生的事情的最好方法仍然是古老的 NSLog。当您连接到计算机时,这样做很容易; Xcode 会帮助弹出日志查看器面板,然后就可以了。当您不在办公
在我的 iOS 应用程序中,我定义了一些兴趣点。其中一些有一个 Kontakt.io 信标的名称,它绑定(bind)到一个特定的 PoI(我的意思是通常贴在信标标签上的名称)。现在我想在附近发现信标,
我正在为警报提示创建一个 trigger.io 插件。尝试从警报提示返回数据。这是我的代码: // Prompt + (void)show_prompt:(ForgeTask*)task{
您好,我是 Apple iOS 的新手。我阅读并搜索了很多关于推送通知的文章,但我没有发现任何关于 APNS 从 io4 到 ios 6 的新更新的信息。任何人都可以向我提供 APNS 如何在 ios
UITabBar 的高度似乎在 iOS 7 和 8/9/10/11 之间发生了变化。我发布这个问题是为了让其他人轻松找到答案。 那么:在 iPhone 和 iPad 上的 iOS 8/9/10/11
我想我可以针对不同的 iOS 版本使用不同的 Storyboard。 由于 UI 的差异,我将创建下一个 Storyboard: Main_iPhone.storyboard Main_iPad.st
我正在写一些东西,我将使用设备的 iTunes 库中的一部分音轨来覆盖 2 个视频的组合,例如: AVMutableComposition* mixComposition = [[AVMutableC
我创建了一个简单的 iOS 程序,可以顺利编译并在 iPad 模拟器上运行良好。当我告诉 XCode 4 使用我连接的 iPad 设备时,无法编译相同的程序。问题似乎是当我尝试使用附加的 iPad 时
我是一名优秀的程序员,十分优秀!