5

如何在测试用例的运行时获取当前正在运行的套件名称?我正在使用下面显示的代码来获取当前套件名称。

监听类:

public class SuiteListener implements ISuiteListener{

private static ThreadLocal<ISuite> ACCESS = new ThreadLocal<ISuite>();

public static ISuite getAccess() {
         return ACCESS.get();
    }

@Override
public void onFinish(ISuite suite) {
    ACCESS.set(null);
}

@Override
public void onStart(ISuite arg0) {
    ACCESS.set(arg0);
}

 }

测试类:

    @Listeners({ SuiteListener.class })
public class Practise {

    @DataProvider(name = "getXlsPath")
    public Object[][] createData() throws Exception {
        String [][] testCasesPaths=null;
        ISuite suiteListner = SuiteListener.getAccess();
        String runningSuite=suiteListner.getName();
        System.out.println(runningSuite);
        testCasesPaths[0][0]="1.xls";
        testCasesPaths[1][0]="2.xls";
        return testCasesPaths;
    }

    @Test(dataProvider="getXlsPath")
    public void test2(String xlsPath){
        System.out.println(xlsPath);
    }
}

测试xml:

<suite name="tables" >
<test name="vendor" >
    <classes>
        <class name="Practise" ></class>
    </classes>
</test>

代码完美运行,直到我parallel="tests"在套件中指定属性:

<suite name="tables" parallel="tests" >

在这种情况下,我无法获得套件名称——它没有执行。有人可以帮助我获得套件名称吗?

4

5 回答 5

14

您可以从 中访问 Xml 文件和当前 Xml 测试ITestContext,它们可以注入测试方法中:

@Test
public void f(ITestContext ctx) {
  String suiteName = ctx.getCurrentXmlTest().getXmlSuite().getName();
于 2012-08-30T16:11:41.960 回答
1

您可以从 ITestContext 读取它

public static String getSuiteName(ITestContext context){
    return context.getCurrentXmlTest().getSuite().getName();
}
于 2016-06-17T06:19:17.513 回答
0

在 onStart() 中,您可以获取当前运行套件的套件名称,您可以使用 loggers 或 sysouts 进行打印。

public void onStart(ISuite suite) {
    suite.getName();
}
于 2013-03-28T07:38:24.733 回答
0

这也可以用于获取带有测试方法名称的测试类名称。

public static String generateFileName (ITestResult result, ITestContext ctx)
{
    String[] suiteName = result.getMethod().toString().split("\\[");

    String filename = "Script_" + suiteName[0] + "_" + dateFormat.format(new Date());
    return filename;
}
于 2018-08-24T02:36:01.710 回答
-1
public static String generateFileName (ITestResult result, ITestContext ctx)
{
    String suiteName = result.getTestClass().getName();
    //String suiteName = ctx.getCurrentXmlTest().getClasses().get(0).getName(); this is removed since the index after class was not getting updated to hold current test name
    String filename = "Script_" + suiteName + "_" + dateFormat.format(new Date());
    return filename;
}

当有多个测试 ng 执行时,这将为您提供当前的类名。ctx.getCurrentXmlTest().getClasses().get(0).getName()不会给你当前的类名,因为索引必须更新。

于 2018-08-24T02:21:23.683 回答