3

我们在 MAC OSX 10.7.3 上使用 sikuli 工具进行移动自动化我已经编写了一个 shell 脚本来打开模拟器并在模拟器上运行脚本:

SikuliScript.sh 
/Users/ezprintsqa/Downloads/FoneMonkey/bin/iphonesim launch /Users/ezprintsqa/Documents/Xcode/DerivedData/SnapCards-btmjdowsgmixpvdyfxfvhxtoihab/Build/Products/Debug-iphonesimulator/SnapCardsFoneMonkey.app&

/Users/ezprintsqa/Downloads/Sikuli-IDE.app/sikuli-ide.sh -r /Users/ezprintsqa/Downloads/SikuliWorkSpace/SnapcardsTestSuite1.sikuli

当我从命令行执行时,我可以看到模拟器打开并且脚本在模拟器上执行。但是当我从 Jenkins 运行时,我收到以下错误:

[JavaAppLauncher Error] CFBundleCopyResourceURL() failed loading MRJApp.properties file
[DEBUG] Could not start simulator session: Error Domain=DTiPhoneSimulatorErrorDomain     Code=5 "Operation failed with underlying error 4294956486." UserInfo=0x100305c70    {NSLocalizedDescription=Operation failed with underlying error 4294956486.,    NSUnderlyingError=0x100300610 "The operation couldn’t be completed. (OSStatus error     -10810.)"}
[LaunchRunner Error] No main class specified
[JavaAppLauncher Error] CallStaticVoidMethod() threw an exception
Exception in thread "main" java.lang.NullPointerException
at apple.launcher.LaunchRunner.run(LaunchRunner.java:113)
at apple.launcher.LaunchRunner.callMain(LaunchRunner.java:51)
at apple.launcher.JavaApplicationLauncher.main(JavaApplicationLauncher.java:61)

任何建议都会非常有帮助

4

1 回答 1

2

它绝对看起来像一个权限问题。Mac 的官方 Jenkins 安装程序将 Jenkins 设置为作为用户“daemon”或用户“jenkins”运行。您需要使 Jenkins 所需的工具对该用户可读和可执行。此外,它们需要位于该用户可读和可执行的目录中。

但是,即使您修复了权限,您的测试运行也可能会遇到更多问题。Mac 的官方 Jenkins 安装程序将 Jenkins 设置为作为启动守护程序运行。它们在系统上下文中运行,它们无法访问任何桌面或 GUI 会话,这意味着无法在屏幕上绘制窗口 => 任何显示窗口的工具,如 iPhone Simulator 或 Sikuli 都会失败。

你可以试试我的非官方 Jenkins.app,它应该可以解决你的问题。它可在https://github.com/stisti/jenkins-app获得(在“下载”选项卡下下载。)

于 2012-07-06T22:41:56.810 回答