TestNG 如何使用Beanshell脚本

TestNG 如何使用Beanshell脚本

TestNG支持根据相似功能或用途对测试用例进行分组。

有时,用户需要在运行时基于条件和用例选择类/方法/组。TestNG支持简单的常用情况,但不必覆盖所有情况。例如,用户可能会将多个组添加到单个测试用例中。在使用<groups><run><include>语法运行组时,TestNG运行所有作为该组一部分的测试用例。它的作用类似于OR语句。例如,如果一个测试用例有2个组,只有1个组在<include>标签中提到,那么它将运行该测试用例。

但是,当用户只希望在所有组都提到时才运行测试用例,即AND语句。TestNG不直接支持组中的AND语句。例如:@Test(groups = {“unit”, “integration”})

如果用户只想在组被指定为unit和integration而不是unit或integration时运行此测试用例。

这个功能可以通过Beanshell实现。它为用户提供了脚本化的能力,可以根据需要在testng.xml中放置自定义条件的脚本。用户可以添加任何条件脚本来获取所需的测试用例/方法/类/组或其他任何内容。

在本教程中,我们将说明如何在testng.xml中实现Beanshell以实现自定义条件。示例采用了多组条件。

步骤

  • 步骤1:创建一个TestNG类 – NewTestngClass

  • 步骤2:在所有类中编写3个带有2个单独组和一个带有2个组的@Test方法。

  • 步骤3:现在根据以下给定的Beanshell脚本创建testNG.xml。

  • 步骤4:如果您只运行testng.xml(而不是使用maven),请确保下载并正确配置Beanshell jar文件。

  • 步骤5:如果您将testng.xml作为maven构建的一部分运行,请在pom.xml中添加beanshell依赖。

  • 步骤6:现在,直接运行testNG.xml或使用mvn命令运行。

示例

以下代码展示如何基于自定义条件仅运行测试组:

src/NewTestngClass.java

import org.testng.annotations.Test;

public class NewTestngClass {

    @Test(groups = { "unit", "integration" })
    public void testCase1() {
        System.out.println("in test case 1 of NewTestngClass");
    }
    @Test(groups = { "integration" })
    public void testCase2() {
        System.out.println("in test case 2 of NewTestngClass");
    }
    @Test(groups = { "unit" })
    public void testCase3() {
        System.out.println("in test case 3 of NewTestngClass");

    }
}

testng.xml

这是一个用于组织和运行TestNG测试用例的配置文件。

当需要执行有限的测试而不是整个套件时,它非常方便。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="suite" parallel="none" verbose="5">
    <test name="test">
        <method-selectors>
            <method-selector>
                <script language="beanshell"><
![CDATA[

       return groups.containsKey("unit") && groups.containsKey("integration");
     ]]></script>
            </method-selector>
        </method-selectors>
        <classes>
            <class name="NewTestngClass"/>
        </classes>
    </test>
</suite>

pom.xml

这是一个用于组织依赖项、插件和运行TestNG测试用例的Maven配置文件。

当只需要执行少量测试而不是整个套件时,它非常方便。

<?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">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.sample</groupId>
    <artifactId>TestNGProjectct</artifactId>
    <version>1.0-SNAPSHOT</version>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.0.0-M5</version>
                <configuration>
                                        <suiteXmlFiles>
                                            <suiteXmlFile>src/main/java/testng.xml</suiteXmlFile>
                                        </suiteXmlFiles>

                </configuration>

            </plugin>
        </plugins>
    </build>
    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>

    </properties>
    <dependencies>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>7.3.0</version>
        </dependency>

        <dependency>
            <groupId>org.apache-extras.beanshell</groupId>
            <artifactId>bsh</artifactId>
            <version>2.0b6</version>
        </dependency>


    </dependencies>
</project>

输出

[INFO] ---------------------< com.sample:TestNGProjectct >---------------------
[INFO] Building TestNGProjectct 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ TestNGProjectct ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 1 resource
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ TestNGProjectct ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ TestNGProjectct ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 1 resource
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ TestNGProjectct ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
[INFO] Compiling 3 source files to C:\Users\anandas\IdeaProjects\TestNGProjectct\target\test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ TestNGProjectct ---
[INFO] 
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running TestSuite
...
... TestNG 7.3.0 by Cédric Beust (cedric@beust.com)
...

in test case 1 of NewTestngClass
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.625 s - in TestSuite
[INFO] 
[INFO] Results:
[INFO] 
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO] 
[INFO] --------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] --------------------------------------------------------
[INFO] Total time:  3.222 s
[INFO] Finished at: 2022-02-16T11:27:08+05:30
[INFO] --------------------------------------------------------

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程