如何编写可以获取正在执行测试方法名称的 TestNG Listener?
一个 TestNG 类可以包含不同的测试,例如 test1、test2、test3 等,并且这些测试可以根据不同的组进行分组,例如单元测试、集成测试或两者兼而有之,或者任何错误编号。用户可能希望根据组运行 @Test 方法。并且,了解哪个测试方法属于哪个组始终很方便,以便可以将这些详细信息包含到报告中。
TestNG 支持多种方法在运行时获取测试名称,例如注入依赖项和 Listener,其中 Listener 最受欢迎。即使在 Listener 中,也可以使用 ITestListener 或 IInvokedMethodListener 来实现。
在本文中,让我们分析如何使用 IInvokedMethodListener 获取组名称。
解决此问题的方法/算法
步骤 1:导入 org.testng.annotations.Test 用于 TestNG。
步骤 2:在 NewTest 类中编写一个注释作为 @test
步骤 3:为 @Test 注释创建一个方法,例如 test1,并添加不同的组名称,如程序部分所示
步骤 4:对 test2 和 test3 重复这些步骤以获取多个组名称。
步骤 5:现在,创建一个使用 IInvokedMethodListener 在 beforeInvocation 和 afterInvocation 方法中获取测试名称的 ListenerClass。
以下代码应该会获取 @Test 方法的所有组名称
method.getTestMethod().getMethodName()
步骤 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 test name- " + Arrays.toString(method.getTestMethod().getMethodName())); } }
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 test name- testCase1 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 test name- testCase2 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 test name- testCase3 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 ===============================================