0

我正在使用一个包含多个套件的套件testng.xml文件,如下所示:

<suite-files>
        <suite-file path="suite1"></suite-file>
        <suite-file path="suite2"></suite-file>
</suite-files>

我正在初始化ExtentReportBeforeSuite

private static void initializeExtentReport(Configuration config) {
        if (extent == null) {
            extent = new ExtentReports();
            htmlReporter = new ExtentHtmlReporter("reportLocation");
            ClassLoader classLoader = ExtentReportService.class.getClassLoader();
            File extentConfigFile = new File(classLoader.getResource("extent-config.xml").getFile());
            htmlReporter.loadXMLConfig(extentConfigFile);
            extent.attachReporter(htmlReporter);
            extent.setSystemInfo("Environment", config.getAutomationServer());
        }
    }

AfterSuite,我在打电话flush()

所以基本上问题是,当为第二个套件调用之前的套件时,检查 ( extent==null) 是错误的。我也经历了JavaDocsfor ExtentReports,我在那里找到了一种方法detachReporter()。但我无法通过我的 IDE 访问。尝试了许多变化,但没有结果。

编辑:

现在真正发生的是,我正在为报告使用自定义名称,因此没有两个报告名称是相同的。而且,当我使用相同的名称时,结果将被覆盖在套件的同一文件中。

4

1 回答 1

1

这里更好的方法是像这样使用单例:

public class Extent 
    implements Serializable {

    private static final long serialVersionUID = 1L;

    private static class ExtentReportsLoader {

        private static final ExtentReports INSTANCE = new ExtentReports();

        static {
        }
    }

    public static synchronized ExtentReports getInstance() {
        return ExtentReportsLoader.INSTANCE;
    }

    @SuppressWarnings("unused")
    private ExtentReports readResolve() {
        return ExtentReportsLoader.INSTANCE;
    }

}

用法:

ExtentReports extent = Extent.getInstance();

所以你的代码变成:

private static void initializeExtentReport(Configuration config) {
    extent = Extent.getInstance();
    if (extent.getStartedReporters().isEmpty()) {
        htmlReporter = new ExtentHtmlReporter("reportLocation");
        ClassLoader classLoader = ExtentReportService.class.getClassLoader();
        File extentConfigFile = new File(classLoader.getResource("extent-config.xml").getFile());
        htmlReporter.loadXMLConfig(extentConfigFile);
        extent.attachReporter(htmlReporter);
        extent.setSystemInfo("Environment", config.getAutomationServer());
    }
}

我会进一步建议摆脱extent / htmlReporter的所有共享变量并直接使用Singleton

于 2018-08-29T01:11:55.893 回答