UIAutomation:无法授权状态为-60007的权限

时间:2012-07-06 20:46:55

标签: iphone objective-c xcode ui-automation

所以我在

的命令行上运行UIAutomation
$ instruments -t /Developer/Platforms/iPhoneOS.platform/Developer/Library/Instruments/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate 
<path-to-your-app>/<appname>.app/ -e UIASCRIPT <path-to-your-js-test-file> -e 
UIARESULTSPATH <path-to-results-folder>

这很好用,模拟器打开了,应用程序运行,但是遇到了这个错误。

Failed to authorize rights (0x2) with status: -60007

我认为它与权限有关。

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:7)

这是我在Instruments via command line - jenkins

发布的答案

这里甚至还有关于Xcode command line authorization prompt error

的博文

我将在这里再次解释:

我做的是以下内容:

  • Mark jenkins用户作为管理员(不幸的是,似乎没有其他方式atm)
  • 转到 / etc / authorization
  • 搜索关键 system.privilige.taskport
  • 将allow-root的值更改为true

    <key>system.privilege.taskport</key>
    <dict>
        <key>allow-root</key>
        <false/> // change to -> <true>
        <key>class</key>
        <string>user</string>
        <key>comment</key>
        <string>Used by task_for_pid(...).
        ...
    </dict>
    

现在我可以使用jenkins通过命令行脚本运行我的UIAutomation-Tests

编辑

为了让jenkins认识到成功的构建,我没有一个完美的解决方案,但以下解决方法:

...
echo "Run instruments simulator"

instruments -t "$ORDER_AUTOMATION_TEST_TEMPLATE_PATH" "$FILE_DEBUG_APP" -e UIASCRIPT "$ORDER_AUTOMATION_TESTSCRIPT_PATH" -e UIARESULTSPATH "$DIRECTORY_INSTRUMENTS_RESULT"

returnCode=0

if test -a "Run 1/Assertion failed.png"; then
echo "failed"
returnCode=1
else
echo "passed"
returnCode=0
fi

rm -fR "Run 1"

rm -fR "instrumentscli0.trace"

echo "Removing app dir"

echo "$FILE_APPLICATIONS"

rm -fR "$FILE_APPLICATIONS"

echo $returnCode

exit $returnCode

编辑2 检查自动化测试是否成功运行的更好方法是:

# cleanup the tracefiles produced from instruments
rm -rf *.trace

##kill simulator afterwards
killall "iPhone Simulator"

##check if failures occured
# fail script if any failures have been generated
if [ `grep "<string>Error</string>" "$WORKSPACE/Automation Results/Run 1/Automation Results.plist" | wc -l` -gt 0 ]; then
    echo 'Build Failed'
    exit -1
else
    echo 'Build Passed'
    exit 0
fi

答案 1 :(得分:2)

这可以帮助小牛队和优胜美地队:(基于亚历山大的答案)

$ security authorizationdb write system.privilege.taskport allow