如何编写一个可以列出测试方法所有分组的 TestNG Listener?


一个 TestNG 类可以包含不同的测试,例如 test1、test2、test3 等,这些测试可以根据不同的分组进行分组,例如单元测试、集成测试或两者兼而有之,或者任何 bug 编号。用户可能希望根据分组运行 @Test 方法。并且,了解哪个测试方法属于哪个分组总是很方便,以便可以将这些详细信息包含到报告中。

TestNG 支持多种方法在运行时获取分组名称,例如注入依赖项和 Listener,其中 Listener 最受欢迎。即使在 Listener 中,也可以使用 ITestListener 或 IInvokedMethodListener 来实现。

在本文中,让我们分析如何使用 IInvokedMethodListener 获取分组名称。

解决此问题的方法/算法

  • 步骤 1:导入 org.testng.annotations.Test 用于 TestNG。

  • 步骤 2:在 NewTest 类中编写一个注解,如 @test。

  • 步骤 3:为 @Test 注解创建一个方法,如 test1,并添加不同的分组名称,如程序部分所示。

  • 步骤 4:对 test2 和 test3 重复这些步骤以获取多个分组名称。

  • 步骤 5:现在,创建一个 ListenerClass,它使用 IInvokedMethodListener 在 beforeInvocation 和 afterInvocation 方法中获取分组名称。

    以下代码应该可以获取 @Test 方法的所有分组名称

    method.getTestMethod().getGroups()

  • 步骤 6:现在创建 testNG.xml 并添加 Listener 类。

  • 步骤 7:现在,运行 testNG.xml 或直接在 IDE 中运行 TestNG 类,或者使用命令行编译并运行它。

示例

以下代码用于创建 TestNG 类并显示 Listener 功能

src/NewTest.java

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

    }
}

src/ListenerClass.java

import org.testng.IInvokedMethod;
import org.testng.IInvokedMethodListener;
import org.testng.ITestResult;

import java.util.Arrays;

public class ListenerClass implements IInvokedMethodListener {

    @Override
    public void afterInvocation(IInvokedMethod method, ITestResult result) {
        System.out.println("This method is invoked after every config method - " + method.getTestMethod().getMethodName());
        System.out.println("This method is invoked after every config method to get groups name- " + Arrays.toString(method.getTestMethod().getGroups()));

    }

    @Override
    public void beforeInvocation(IInvokedMethod method, ITestResult result) {
        System.out.println("This method is invoked before every config method to get groups name- " + Arrays.toString(method.getTestMethod().getGroups()));

    }
}

testng.xml

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

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

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Parent_Suite">
    <listeners>
        <listener class-name="ListenerClass"/>
    </listeners>
    <test name="group test">
        <classes>
            <class name="NewTest" />
        </classes>
    </test>
</suite>

输出

This method is invoked before every config method to get groups name- [unit, integration]
in test case 1 of NewTest
This method is invoked after every config method - testCase1
This method is invoked after every config method to get groups name- [unit, integration]
This method is invoked before every config method to get groups name- [integration]
in test case 2 of NewTest
This method is invoked after every config method - testCase2
This method is invoked after every config method to get groups name- [integration]
This method is invoked before every config method to get groups name- [unit]
in test case 3 of NewTest
This method is invoked after every config method - testCase3
This method is invoked after every config method to get groups name- [unit]

===============================================
Parent_Suite
Total tests run: 3, Passes: 3, Failures: 0, Skips: 0
===============================================

更新于: 2023-08-18

159 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告