0

我正在使用 C#、Xamarin 6.1.3.、iOS 10.2、iPhone 6s Plus、Xcode 8.2、OS X El Capitan 10.11.6 编写移动自动测试。我正在尝试使用以下命令在模拟器上启动测试:

IApp iApp = ConfigureApp.iOS.AppBundle(path_to_app/Application.app).StartApp();

我有以下错误:

Calabash.XDB.Core.Exceptions.DeviceAgentException : Failed to install app /Volumes/Win7 Ultim/Framework/Atom.app

ExitCode: 1



       app: /Volumes/Win7 Ultim/Framework/Atom.app/PlugIns/AtomTests.xctest
  identity: #<CodesignIdentity: - : AdHoc>
/usr/bin/xcrun codesign -d --entitlements :- /Volumes/Win7 Ultim/Framework/Atom.app/PlugIns/AtomTests.xctest
/usr/bin/xcrun codesign --verbose=4 --verify /Volumes/Win7 Ultim/Framework/Atom.app/Atom
/Volumes/Win7 Ultim/Framework/Atom.app
/Volumes/Win7 Ultim/Framework/Atom.app/PlugIns/AtomTests.xctest
device UDID: 9E44D0FE-A3F9-4FC1-8635-20FB8AD20BA4
Device UDID: 9E44D0FE-A3F9-4FC1-8635-20FB8AD20BA4
ERROR: Error Domain=sh.calaba.iOSDeviceManger Code=5 "Code signing failed" UserInfo={NSLocalizedDescription=Code signing failed, NSLocalizedFailureReason=There was a problem code signing. Please check the logs.}
Path to bundle: /Volumes/Win7 Ultim/Framework/Atom.app
Could not extract entitlements from app:
with command:
    -a,--app-bundle <path/to/app-bundle.app>    Path .app bundle (for .ipas, unzip and look inside of 'Payload')
    -c,--codesign-identity  <codesign-identity> [OPTIONAL]  Identity used to codesign app bundle [device only]  DEFAULT=
    -d,--device-id  <device-identifier> iOS Simulator GUIDs
    -u,--update-app <true-or-false> [OPTIONAL]  When true, will reinstall the app if the device contains an older version than the bundle specified DEFAULT=1
install
/Volumes/Win7 Ultim/Framework/Atom.app/Atom: code object is not signed at all
/Volumes/Win7 Ultim/Framework/Atom.app/PlugIns/AtomTests.xctest: code object is not signed at all
=== STDERR ===
=== STDERR ===
Could not find any Provisioning Profiles suitable for resigning
Could not resign app bundle at path:
Error resigning sim bundle
In architecture: x86_64
with command:

所以我没有应用程序源代码,但我需要登录我拥有的 .app 或 .ipa 文件,以便在应用程序上运行测试。可能吗?

4

1 回答 1

1

@Kent.Green对此答案的解决方案也可以解决您的问题:

使用 Xamarin 测试记录器重新签署 IPA

您可以使用的一种选择是使用 Xamarin 测试记录器注入 Calabash 并重新签署您的 IPA:https ://developer.xamarin.com/guides/testcloud/testrecorder/

将 IPA 加载到测试记录器后,它将在与原始 IPA 相同的位置创建一个新的、重新签名的 IPA,其名称前面带有“xtr-”,如下所示:

  • myAwesomeApp.ipa(原国际音标)
  • xtr-myAwesomeApp.ipa(IPA,重新签名,注入葫芦)

需要注意的事项

  • IPA 重新签名- 进行重新签名的 mac 需要在其钥匙串中安装有效的签名身份和配置文件,包括应用程序使用的任何权利。

  • 任何包含 Calabash 的 IPA 都将被 iOS 应用商店拒绝- 无论使用何种方法将 Calabash 添加到 IPA 都是如此,但记住这一点很重要。在上面的示例中,您将使用应用商店进行测试xtr-myAwesomeApp.ipa并将其提交myAwesomeApp.ipa给应用商店。

于 2017-01-13T07:07:54.320 回答