TestNG中的方法拦截器(重新排序测试方法)

2024-04-16 22:04

本文主要是介绍TestNG中的方法拦截器(重新排序测试方法),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在本文中,我们将讨论如何在TestNG中使用方法拦截器。TestNG按照方法名称的字母顺序运行我们的测试用例。如果TestNG已经决定了调用测试方法的顺序,那么我们可以将其分为两组:

  • 方法以特定的顺序运行因此,依赖方法将在依赖方法之前运行。
  • 该方法的运行顺序不特别为了给予更多的控制权,TestNG为我们提供了方法拦截器。
public interface IMethodInterceptor extends ITestNGListener {List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context);
}

“intercept”方法是做什么的?它将在其参数中接受可以以任何顺序运行的方法列表,并返回类似的方法列表。
“intercept”方法返回什么?它将返回在其参数中传递的方法的类似列表,并且返回的列表可以是-

  • 我们在参数中接收到相同的列表,但顺序不同。
  • IMethodInstance方法的较小列表。
  • IMethodInstance方法的列表比参数中接收的方法的列表大。

让我们先拿一个测试类的例子,在这个类中我们将尝试使用方法拦截器来改变测试方法的顺序。

CodekruTest.java

package Test;import org.testng.Assert;
import org.testng.annotations.Test;public class CodekruTest {@Testpublic void gammaMethod() {System.out.println("Executing gammaMethod in CodekruTest class");Assert.assertTrue(true);}@Testpublic void alphaMethod() {System.out.println("Executing alphaMethod in CodekruTest class");Assert.assertTrue(true);}@Testpublic void betaMethod() {System.out.println("Executing betaMethod in CodekruTest class");Assert.assertTrue(true);}@Testpublic void deltaMethod() {System.out.println("Executing deltaMethod in CodekruTest class");Assert.assertTrue(true);}}

xml文件

<suite name="codekru"><test name="codekruTest"><classes><class name="Test.CodekruTest"></class></classes></test>
</suite>

运行结果:

Executing alphaMethod in CodekruTest class
Executing betaMethod in CodekruTest class
Executing deltaMethod in CodekruTest class
Executing gammaMethod in CodekruTest class

 

我们应该怎么做才能让一个特定的方法(比如说,本例中的deltaMethod)总是先运行?

因为我们想先运行一个特定的方法。我们可以通过多种方式来实现-

  • 通过为该方法分配优先级,使其始终首先运行。这很容易做到,但是这个类可能包含更多的测试方法,并且其他一些测试方法可能也需要一些优先级。如果我们将优先级作为一个非常负的值(比如-12345)传递,那么使用优先级执行方法是一个很好的方法。此值
  • 第二种方法是使用方法拦截器。方法拦截器提供了一个很好的接口来按照我们想要的顺序运行我们的测试。

下面是实现IMethodInterceptor接口并首先执行deltaMethod的类。

package Test;import java.util.ArrayList;
import java.util.List;import org.testng.IMethodInstance;
import org.testng.IMethodInterceptor;
import org.testng.ITestContext;public class CodekruMethodInterceptor implements IMethodInterceptor {public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) {List<IMethodInstance> result = new ArrayList<IMethodInstance>();for (IMethodInstance m : methods) {if (m.getMethod().getMethodName().equalsIgnoreCase("deltaMethod")) {result.add(0, m);} else {result.add(m);}}return result;}}

现在,我们必须将上面的类作为侦听器添加到XML文件中,如下所示。

<suite name="codekru"><listeners><listener class-name="Test.CodekruMethodInterceptor" /></listeners><test name="codekruTest"><classes><class name="Test.CodekruTest"></class></classes></test>
</suite>

运行XML结果:

Executing deltaMethod in CodekruTest classExecuting alphaMethod in CodekruTest classExecuting betaMethod in CodekruTest class Executing gammaMethod in CodekruTest class

让我们尝试在以特定顺序运行的方法上使用它(方法依赖于其他方法)。下面是我们的CodekruTest类,但我们已经修改了它,以按照特定的顺序运行方法。

package Test;import org.testng.Assert;
import org.testng.annotations.Test;public class CodekruTest {@Test(dependsOnMethods = {"betaMethod"})public void gammaMethod() {System.out.println("Executing gammaMethod in CodekruTest class");Assert.assertTrue(true);}@Testpublic void alphaMethod() {System.out.println("Executing alphaMethod in CodekruTest class");Assert.assertTrue(true);}@Test(dependsOnMethods = {"alphaMethod"})public void betaMethod() {System.out.println("Executing betaMethod in CodekruTest class");Assert.assertTrue(true);}@Test(dependsOnMethods = {"gammaMethod"})public void deltaMethod() {System.out.println("Executing deltaMethod in CodekruTest class");Assert.assertTrue(true);}}

现在,再次使用相同的XML文件。

<suite name="codekru"><listeners><listener class-name="Test.CodekruMethodInterceptor" /></listeners><test name="codekruTest"><classes><class name="Test.CodekruTest"></class></classes></test>
</suite>

运行XML文件后的输出-

Executing alphaMethod in CodekruTest class
Executing betaMethod in CodekruTest class
Executing gammaMethod in CodekruTest class
Executing deltaMethod in CodekruTest class

我们可以看到,deltaMethod是在最后执行的,因为它依赖于另一个方法,而另一个方法又依赖于另一个方法。因此,在执行案件时遵循了这一命令。

如果我们想先运行一个特定的组呢?

我们将从TestNG文档中挑选代码,但在撰写本文时,TestNG文档中的代码中有一个小问题。所以,我们将在这里编写一个功能齐全的代码。

让我们再次使用CodekruTest类

package Test;import org.testng.Assert;
import org.testng.annotations.Test;public class CodekruTest {@Test(groups = { "func" })public void gammaMethod() {System.out.println("Executing gammaMethod in CodekruTest class");Assert.assertTrue(true);}@Testpublic void alphaMethod() {System.out.println("Executing alphaMethod in CodekruTest class");Assert.assertTrue(true);}@Test(groups = { "func" })public void betaMethod() {System.out.println("Executing betaMethod in CodekruTest class");Assert.assertTrue(true);}@Testpublic void deltaMethod() {System.out.println("Executing deltaMethod in CodekruTest class");Assert.assertTrue(true);}}

在这里,我们希望首先运行属于“func”组的方法,其余的方法应该在之后执行。下面是我们的方法拦截器代码。

package Test;import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;import org.testng.IMethodInstance;
import org.testng.IMethodInterceptor;
import org.testng.ITestContext;
import org.testng.annotations.Test;public class CodekruMethodInterceptor implements IMethodInterceptor {public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) {List<IMethodInstance> result = new ArrayList<IMethodInstance>();for (IMethodInstance m : methods) {Test test = m.getMethod().getConstructorOrMethod().getMethod().getAnnotation(Test.class);Set<String> groups = new TreeSet<String>();for (String group : test.groups()) {groups.add(group);}// if group is "func", then put the method// at the first position in the listif (groups.contains("func")) {result.add(0, m);} else {result.add(m);}}return result;}}

下面是用于执行CodekruTest类的XML,其中属于func的测试方法将首先执行。

<suite name="codekru"><listeners><listener class-name="Test.CodekruMethodInterceptor" /></listeners><test name="codekruTest"><classes><class name="Test.CodekruTest"></class></classes></test>
</suite>

运行上述XML文件后的输出-

Executing gammaMethod in CodekruTest class
Executing betaMethod in CodekruTest class
Executing alphaMethod in CodekruTest class
Executing deltaMethod in CodekruTest class

这里我们可以看到gammaMethod和betaMethod首先被执行,因为它们属于“func”组。

这篇关于TestNG中的方法拦截器(重新排序测试方法)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/910011

相关文章

【数据结构】——原来排序算法搞懂这些就行,轻松拿捏

前言:快速排序的实现最重要的是找基准值,下面让我们来了解如何实现找基准值 基准值的注释:在快排的过程中,每一次我们要取一个元素作为枢纽值,以这个数字来将序列划分为两部分。 在此我们采用三数取中法,也就是取左端、中间、右端三个数,然后进行排序,将中间数作为枢纽值。 快速排序实现主框架: //快速排序 void QuickSort(int* arr, int left, int rig

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

浅谈主机加固,六种有效的主机加固方法

在数字化时代,数据的价值不言而喻,但随之而来的安全威胁也日益严峻。从勒索病毒到内部泄露,企业的数据安全面临着前所未有的挑战。为了应对这些挑战,一种全新的主机加固解决方案应运而生。 MCK主机加固解决方案,采用先进的安全容器中间件技术,构建起一套内核级的纵深立体防护体系。这一体系突破了传统安全防护的局限,即使在管理员权限被恶意利用的情况下,也能确保服务器的安全稳定运行。 普适主机加固措施:

webm怎么转换成mp4?这几种方法超多人在用!

webm怎么转换成mp4?WebM作为一种新兴的视频编码格式,近年来逐渐进入大众视野,其背后承载着诸多优势,但同时也伴随着不容忽视的局限性,首要挑战在于其兼容性边界,尽管WebM已广泛适应于众多网站与软件平台,但在特定应用环境或老旧设备上,其兼容难题依旧凸显,为用户体验带来不便,再者,WebM格式的非普适性也体现在编辑流程上,由于它并非行业内的通用标准,编辑过程中可能会遭遇格式不兼容的障碍,导致操

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

hdu 1285(拓扑排序)

题意: 给各个队间的胜负关系,让排名次,名词相同按从小到大排。 解析: 拓扑排序是应用于有向无回路图(Direct Acyclic Graph,简称DAG)上的一种排序方式,对一个有向无回路图进行拓扑排序后,所有的顶点形成一个序列,对所有边(u,v),满足u 在v 的前面。该序列说明了顶点表示的事件或状态发生的整体顺序。比较经典的是在工程活动上,某些工程完成后,另一些工程才能继续,此时

【北交大信息所AI-Max2】使用方法

BJTU信息所集群AI_MAX2使用方法 使用的前提是预约到相应的算力卡,拥有登录权限的账号密码,一般为导师组共用一个。 有浏览器、ssh工具就可以。 1.新建集群Terminal 浏览器登陆10.126.62.75 (如果是1集群把75改成66) 交互式开发 执行器选Terminal 密码随便设一个(需记住) 工作空间:私有数据、全部文件 加速器选GeForce_RTX_2080_Ti

【VUE】跨域问题的概念,以及解决方法。

目录 1.跨域概念 2.解决方法 2.1 配置网络请求代理 2.2 使用@CrossOrigin 注解 2.3 通过配置文件实现跨域 2.4 添加 CorsWebFilter 来解决跨域问题 1.跨域概念 跨域问题是由于浏览器实施了同源策略,该策略要求请求的域名、协议和端口必须与提供资源的服务相同。如果不相同,则需要服务器显式地允许这种跨域请求。一般在springbo

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出 在数字化时代,文本到语音(Text-to-Speech, TTS)技术已成为人机交互的关键桥梁,无论是为视障人士提供辅助阅读,还是为智能助手注入声音的灵魂,TTS 技术都扮演着至关重要的角色。从最初的拼接式方法到参数化技术,再到现今的深度学习解决方案,TTS 技术经历了一段长足的进步。这篇文章将带您穿越时