3

上周我一直在这个问题上绞尽脑汁,无处可去。目前,每当我在 Instruments 中运行测试时,通过/失败日志记录功能几乎总是会报告:

问题:脚本结束时没有明确关闭此测试

注意——是的,拼写错误是正确的

但是我的记录方法是正确的。有时当我对测试进行更改时,可能只是添加一个额外的空格或注释,然后保存并再次运行,通过/失败功能实际上会工作一次!

但是,如果相同的代码在没有任何更改的情况下立即再次运行,Issue: Script ended without explicting closing this test问题就会再次出现。

真让人抓狂!

这是我的测试代码的一个精简示例:

var target = UIATarget.localTarget();
var app = UIATarget.localTarget().frontMostApp();

var testName = "LoginCreateEntry";

//Start test logging
UIALogger.logStart(testName);

//**Do UI automation stuff here generated by Instruments/record**
//The automation creates a list entry in my application
//The flow goes, run the automation that creates the entry, then verify that the entry
//got created as expected and is visible to the user in the iPhone interface.

 var window = app.mainWindow();
 var tableView = window.tableViews()[0];
 var tableGroup = tableView.groups()[0];
 var entryName = "My Dogs!";
 var myEntry = tableView.cells()[0].name(); 

//Do a bunch of UI automation here to create my entry, which results in the entry
//appearing in the mainWindow with the label: My Dogs!

//Get the value held in myEntry to print to the log so that I know
//the variable has a value in it to evaluate
UIALogger.logMessage("My Story Title: " + myEntry);

//If myEntry evaluates to true, then call this test a pass.

if (myEntry === entryName) {    
UIALogger.logMessage("My entry was created!");

    //Mark the test as a PASS
    UIALogger.logPass(testName);
}
else {

    UIALogger.logMessage("My entry was not created!");

    //Mark the test as a FAIL
    UIALogger.logFail(testName); 
    }

//End test

如前所述,运行此代码时,我得到:

问题:脚本结束时没有说明关闭此测试

但是如果我添加第二种logMessage()方法,或对脚本进行任何更改——甚至添加注释,并保存这些更改然后再次运行——一次运行通过/失败的可能性为 80%。但是如果代码立即再次运行而没有任何变化,那么令人愤怒的“ Issue: Script ended...”行为再次发生。

我在这里束手无策。任何帮助或反馈将不胜感激!

此外,其他人也遇到过同样的问题,如下所述:Instruments Automation Tool: Script Ended without Explicitly Closing This Test

- - - - - - - - - - -更新 - - - - - - - - - - - - - -
我现在已经在运行 Xcode 4.6 的单独 MacBook Pro 上复制了这个问题。我也做了各种努力故意让我的测试失败——只是为了得到一个反应,但仍然得到Issue: Script ended without expliciting closing this test日志消息,它告诉我条件可能甚至没有被读取。然而,再一次,如果我对脚本进行任何微小的更改,然后保存这些更改并再次运行,那么通过/失败功能很有可能会在一次运行中起作用,然后开始出现“问题:脚本结束.. ." 即使没有脚本更改,下一次运行也会再次出现这种行为。

---------------------更新 x 2-------------- -
这是似乎没有触发的 IF 语句,我什至不能使用断点来确定这一点。但我只是运行了一个这样的简单测试:

UIALogger.logStart();

if (5 < 10) 
{        
        //Mark the test as a PASS
        UIALogger.logPass();    
}
    else 
{
        //Mark the test as a FAIL
        UIALogger.logFail();         
}

仍然得到Issue: Script ended without explicating closing this test

----------更新 x 3-------------- --

因此,我刚刚在 Instruments 中创建了一个全新的单独脚本,仅使用下面的代码,现在无论我如何更改IF语句中的相对值,通过/失败始终有效。哇,现在这变得越来越陌生了。

var target = UIATarget.localTarget();

UIALogger.logStart();

if (5 > 10) 
{        
        //Mark the test as a PASS
        UIALogger.logPass();    
}
    else 
{
        //Mark the test as a FAIL
        UIALogger.logFail();         
}
4

2 回答 2

1

好的,这个问题是真实存在的,并且可能只影响 Xcode 4.6。该问题在多台机器上和多个跟踪脚本上重复出现。这是解决方案:

在 if 语句中添加等待,如下所示:

UIALogger.logStart( testName );

//Do automation stuff here

        if (5 < 10) {
        UIALogger.logMessage("We passed!");
            //Wait a moment
        target.delay(1);
            UIALogger.logPass( testName );
        } else {
        UIALogger.logMessage("We Failed!");
            UIALogger.logFail( testName );
            UIALogger.logFail( testName );
        }

另外,这听起来可能很愚蠢——但这对我有用,请注意,IF 语句的 logFail() 部分没有延迟,但是有两个 logFail() 语句(有时需要 3 个 logFail() 语句)。如果您在 IF 语句的失败部分使用延迟,您将收到 ISSUE 消息而不是干净的 FAIL 消息。不,我不是在开玩笑。是的,这很愚蠢。

于 2013-03-12T21:14:52.480 回答
0

我尝试了 Wulf 的答案和其他几个答案,但没有一个总是有效,但我发现在 logFail/logPass 之后添加延迟几乎总是会导致正确关闭测试。

像这样:

UIALogger.logPass(testName);
target.delay(1);

失败也一样。请注意,它也不会在日志中为您提供多次失败:

UIALogger.logFail(testName);
target.delay(1);

我知道这个话题很老了,但我希望这对某人有所帮助。

于 2016-04-21T09:11:07.233 回答