尝试在Allure报告中添加新标签

时间:2015-08-13 09:29:02

标签: allure

我正在尝试为Allure创建一个插件,它会添加一个名为Browsers的新标签,它会在所有浏览器中显示TC状态,但我在第一步就停留了 - 添加浏览器选中报告本身。我正在使用allure-report-plugin-api和来自这个问题的说明 - Allure: How do I customize the test report to write "Browsers" instead of "Xunit"?以及来自allure-report-plugin-api的git repo的示例。 但我没有运气,尽管代码很简单,但没有添加标签。请问,请指出我犯错误的地方,并告诉我这是怎样的正确方法?非常感谢提前!

以下是我尝试添加新标签的示例

这是项目结构

package allure;

import ru.yandex.qatools.allure.Allure;
import ru.yandex.qatools.allure.data.AllureAttachment;
import ru.yandex.qatools.allure.data.AllureStep;
import ru.yandex.qatools.allure.data.AllureTestCase;
import ru.yandex.qatools.allure.data.plugins.DefaultTabPlugin;
import ru.yandex.qatools.allure.data.plugins.Plugin;
import ru.yandex.qatools.allure.model.Label;

import java.util.ArrayList;
import java.util.List;

@Plugin.Name("browserList")
public class BrowserInfo extends DefaultTabPlugin {

    @Override
    public void process(AllureTestCase data) {

    }

}

这是BrowserInfo类

{
  "browserList": {
    "TITLE": "Browsers",
    "TITLE_FULL": "List of browsers"
  }
}

这里是en.json

/*global angular*/
(function() {
    "use strict";
    var module = angular.module('allure.browserList', []);
    module.config(function($stateProvider, allureTabsProvider) {
        allureTabsProvider.addTab('browserList', {title: 'browserList.TITLE'});
    });

})();

这里有script.js

package allure;

import junit.framework.Assert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.Test;

public class GoogleSearchTest {

    @Test
    public void searchBananasTest() {

        WebDriver driver = new FirefoxDriver();
        driver.get("https://www.google.com/");
        driver.findElement(By.id("lst-ib")).sendKeys("BANANAS");
        driver.findElement(By.cssSelector("[type = 'submit']")).click();
        Assert.assertTrue(driver.findElement(
                By.cssSelector("[data-async-context='query:BANANAS'] h3")
        ).getText().toLowerCase().contains("banana"));
        driver.quit();

    }

}

这里只是一个小小的考验

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="searching bananas">

    <test name="searching bananas" preserve-order="true">
        <classes>
            <class name="allure.GoogleSearchTest">
                <methods>
                    <include name = "searchBananasTest"/>
                </methods>
            </class>
        </classes>
    </test>

</suite>

这里的TestNG测试xml用于测试

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>AllurePluginTest</groupId>
  <artifactId>AllurePluginTest</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>allure</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <aspectj.version>1.8.5</aspectj.version>
    <allure.version>1.4.16</allure.version>
  </properties>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.16</version>
        <configuration>
          <suiteXmlFiles>
            <suiteXmlFile>${suitexml}</suiteXmlFile>
          </suiteXmlFiles>
          <testFailureIgnore>false</testFailureIgnore>
          <argLine>
            -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
          </argLine>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>${aspectj.version}</version>
          </dependency>
        </dependencies>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>

    <dependency>
      <groupId>ru.yandex.qatools.allure</groupId>
      <artifactId>allure-testng-adaptor</artifactId>
      <version>${allure.version}</version>
      <exclusions>
        <exclusion>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

    <dependency>
      <groupId>org.seleniumhq.selenium</groupId>
      <artifactId>selenium-java</artifactId>
      <version>2.46.0</version>
    </dependency>

    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>6.8.7</version>
    </dependency>

    <dependency>
      <groupId>ru.yandex.qatools.allure</groupId>
      <artifactId>allure-report-plugin-api</artifactId>
      <version>1.4.16</version>
    </dependency>

  </dependencies>

  <reporting>
    <excludeDefaults>true</excludeDefaults>
    <plugins>
      <plugin>
        <groupId>ru.yandex.qatools.allure</groupId>
        <artifactId>allure-maven-plugin</artifactId>
        <version>2.2</version>
      </plugin>
    </plugins>
  </reporting>

</project>

这是pom.xml文件

<tr ng-repeat="value in allValues | filter:sel1Value | filter:sel2Value"> ... </tr>

2 个答案:

答案 0 :(得分:1)

主要问题是Allure通过Java SPI加载插件。所以你需要创建文件 资源文件夹中ru.yandex.qatools.allure.data.plugins.Plugin的{​​{1}},其中包含以下内容:

META-INF/services/

然后您需要配置allure.BrowserInfo 以使用您的插件:

allure-maven-plugin

注意:该插件应安装到本地存储库。

我建议您为插件使用单独的项目,并使用maven-invoker-plugin生成预览报告。在这种情况下,您不需要运行测试(您可以将测试结果放在您需要的文件夹中),而无需安装/部署插件。

还有更多评论给你:

BrowserInfo

默认情况下,Allure希望每个插件都提供文件<reporting> <excludeDefaults>true</excludeDefaults> <plugins> <plugin> <groupId>ru.yandex.qatools.allure</groupId> <artifactId>allure-maven-plugin</artifactId> <version>2.2</version> <configuration> <plugins> <plugin> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> </plugin> </plugins> </configuration> </plugin> </plugins> </reporting> 中的一些数据。所以你需要添加一些虚拟数据。您可以像这样简单地添加字段的示例:

${pluginName}.json

另一种方式在@Plugin.Data private List<String> strings = new ArrayList<>(); (空解析部分)中配置此行为:

script.js

翻译

要向报告添加翻译,请使用以下命令:

allureTabsProvider.addTab('browserList', {title: 'browserList.TITLE', resolve: {}});

看看:Allure JavaScript API

插件模板

Allure会为每个标签插件查找allureTabsProvider.addTranslation('cats'); 。所以你需要将它添加到你的插件资源中。

我希望它有所帮助。

答案 1 :(得分:0)

添加依赖项ALlure Report Builder,然后添加以下代码

// It will generate the Allure Report folder.
new AllureReportBuilder("1.5.4", new File("target/allure-report")).unpackFace(); 
new AllureReportBuilder("1.5.4", new File("target/allure-report")).processResults(new File("target/allure-results"));