如何从Maven命令行运行testng.xml

时间:2017-03-17 01:35:41

标签: java maven selenium cmd testng

我的pom.xml中有以下条目,配置中定义了套件文件。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.19.1</version>
    <configuration>
        <suiteXmlFiles>
            <suiteXmlFile>testng.xml</suiteXmlFile>
        </suiteXmlFiles>
    </configuration>
</plugin>

使用maven在cmd中运行此命令的正确方法是什么?我可以使用下面的命令运行测试,但是当它已经在pom中定义时,在命令中再次指示testng.xml是没有意义的。

 mvn clean test -DsuiteXmlFile=testng.xml

4 个答案:

答案 0 :(得分:4)

如果您有一个固定的testng xml,那么您只需要执行mvn clean test。 默认情况下,在maven的测试阶段会执行surefire插件,并且会拾取xml硬编码。

答案 1 :(得分:3)

最简单的解决方案是,在surefire插件中添加以下行。

<suiteXmlFiles>
    <!-- pass testng.xml files as argument from command line -->
    <suiteXmlFile>${suiteXmlFile}</suiteXmlFile>
</suiteXmlFiles>

运行xml文件,如下所示

mvn clean test -Dsurefire.suiteXmlFiles=/path/to/testng.xml

答案 2 :(得分:2)

首先,请在pom.xml中添加改进...需要添加执行部分:

<executions>
<execution>
    <phase>test</phase>
    <goals>
        <goal>test</goal>
    </goals>
</execution>
</executions>

第二,您可以在pom.xml中使用变量创建节。然后,从cmd调用它。

<properties>
<defaultSuiteFiles>
        ./Sets/Suits/CMS_Administration_SiteBackup_029.xml,
    </defaultSuiteFiles>
    <suiteFile>${defaultSuiteFiles}</suiteFile>
</defaultSuiteFiles>
</properties>
...
...
<suiteXmlFiles>
    <suiteXmlFile>${suiteFile}</suiteXmlFile>
</suiteXmlFiles>

那么,原型pom.xml的结果

<?xml version="1.0" encoding="UTF-8"?>
<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">
.....
.....


<properties>        
    <defaultSuiteFiles>
        ./Sets/Suits/CMS_Administration_SiteBackup_029.xml,
    </defaultSuiteFiles>
    <suiteFile>${defaultSuiteFiles}</suiteFile>


    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<profiles>
    <profile>
        <id>Base configuration</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <build>
            <defaultGoal>install</defaultGoal>
            <plugins>                    
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.19.1</version>
                    <inherited>true</inherited>
                    <executions>
                        <execution>
                            <phase>test</phase>
                            <goals>
                                <goal>test</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <suiteXmlFiles>
                            <suiteXmlFile>${suiteFile}</suiteXmlFile>
                        </suiteXmlFiles>                            
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>
<dependencies>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>3.3.1</version>
    </dependency>
</dependencies>
</project>

并使用此,cmd:mvn test -DdefaultSuiteFiles="./YOUR_DIRECTORY/YOUR_SUITE.xml,"

的示例

说明:在pom.xml中,您将xmls设置为默认值并放置到变量。并且,如果您将在cmd中使用变量,则将重写值。

答案 3 :(得分:0)

需要在suiteXmlFiles标签之间传递来自testng.xml文件内容根的路径

例如对于我的项目代替 testng.xml 我使用文件名作为 AllTests.xml,它位于文件夹 TestSuites 下

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.0.0-M5</version>
                <configuration>
                    <suiteXmlFiles>
                        <suiteXmlFile>src/test/resources/TestSuites/AllTests.xml</suiteXmlFile>
                    </suiteXmlFiles>
                </configuration>
 </plugin>

现在运行mvn clean test, 它将从 pom.xml 中选择测试套件文件并运行该套件中提到的所有测试类。

注意:

  1. 我们需要提到 testng.xml 文件的完整路径的原因是, 因为默认maven会在项目级别直接搜索这个文件

  2. 如果您使用 IntelliJ,您可以从内容根目录为 testng.xml 文件找到路径,方法是右键单击该文件 -> 复制路径 -> 来自内容根目录的路径