OCUnit 不支持安全框架?
当尝试使用以下方法将安全条目添加到钥匙串中时:
SecItemUpdate((CFDictionaryRef)queryKeychain, (CFDictionaryRef)updateAttributes);
我收到返回的 errSecNotAvailable 错误,但仅在运行我的单元测试目标时。 单元测试期间钥匙串不可用吗?
When attempting to add secure entries into the keychain using:
SecItemUpdate((CFDictionaryRef)queryKeychain, (CFDictionaryRef)updateAttributes);
I'm getting an errSecNotAvailable error returned but only when running my unit test target.
Is the keychain not available during unit testing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
安全框架是否包含在 OCUint 目标中?
我刚刚测试过,没有错误,我可以在 OCUint 测试中添加一个项目并更改 Keychain 中的一个项目。
我的 OCUnit 设置可能有所不同,我正在针对应用程序进行测试,而不是将应用程序文件包含到我的单元测试中。
Is the security framework included in the OCUint target?
I just tested and I have no errors, I can add an item and change an item in the Keychain in an OCUint test.
I may have my OCUnit setup differently, I am testing against the app, not including the apps files into my unit test.