当前位置:网站首页>Testng监听器
Testng监听器
2022-08-03 22:18:00 【qq_492448446】
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="API" parallel="none">
<listeners>
<listener class-name="com.welab.automation.framework.listener.RetryListener"></listener>
</listeners>
<test verbose="2" preserve-order="true" name="channel">
<classes>
<class name="com.welab.automation.projects.channel.runners.MobileTestRunner_iOS">
<methods>
<include name="runScenario"/>
</methods>
</class>
</classes>
</test>
</suite>
import com.welab.automation.framework.uils.PropertiesReader;
import org.testng.ITestResult;
import org.testng.util.RetryAnalyzerCount;
public class TestRetryAnalyzer extends RetryAnalyzerCount {
private static int count =1;
public TestRetryAnalyzer() {
super.setCount(count);
}
@Override
public boolean retryMethod(ITestResult result) {
return true;
}
public void reSetCount() {
super.setCount(count);
}
}
import com.welab.automation.framework.utils.entity.api.JsonEntity;
import com.welab.automation.framework.utils.entity.api.TestCaseUtils;
import org.testng.*;
import org.testng.annotations.ITestAnnotation;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
public class RetryListener extends TestListenerAdapter implements IAnnotationTransformer,IHookable {
public void transform(
ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) {
IRetryAnalyzer iRetryAnalyzer = annotation.getRetryAnalyzer();
if (iRetryAnalyzer == null) {
annotation.setRetryAnalyzer(TestRetryAnalyzer.class);
}
}
@Override
public void onFinish(ITestContext testContext) {
Iterator<ITestResult> listOfSkippedTests =
testContext.getSkippedTests().getAllResults().iterator();
while (listOfSkippedTests.hasNext()) {
ITestResult skippedTest = listOfSkippedTests.next();
ITestNGMethod method = skippedTest.getMethod();
if (testContext.getFailedTests().getResults(method).size() > 0
|| testContext.getPassedTests().getResults(method).size() > 0) {
skippedTest.setStatus(0);
listOfSkippedTests.remove();
}
}
}
//iHookable重写方法run
@Override
public void run(IHookCallBack iHookCallBack, ITestResult iTestResult) {
JsonEntity jsonEntity = getJsonEntity(iTestResult);
Map<String, List<String>> sqlExpression = null;
//replace parameter
if (jsonEntity != null) {
jsonEntity.setJsonObject(TestCaseUtils.replaceParameter(jsonEntity.getJsonObject()));
jsonEntity.updateHeader();
}
//execute test case
iHookCallBack.runTestMethod(iTestResult);
}
public JsonEntity getJsonEntity(ITestResult testResult) {
JsonEntity jsonEntity = null;
Object[] parameters = testResult.getParameters();
if (parameters.length > 0) {
for (Object parameter : parameters) {
if (parameter instanceof JsonEntity) {
jsonEntity = (JsonEntity) parameter;
}
}
}
return jsonEntity;
}
@Override
public void onTestFailure(ITestResult result) {
TestRetryAnalyzer testRetryAnalyzer = (TestRetryAnalyzer) result.getMethod().getRetryAnalyzer();
testRetryAnalyzer.reSetCount();
}
}
IHookable 监听器提供一种类似于AOP的方式,对测试method进行环绕编程。主要的应用场景:
1. 动态重写测试method (替换测试方法为空运行)
2. 动态决定是否跳过测试method (例如鉴权)
3. 自定义注解,例如@ignore, 当检测到有这个注解的时候,跳过测试执行
边栏推荐
- CAS:1260586-88-6_Biotin-C5-Azide_Biotin-C5-Azide
- E-commerce data warehouse ODS layer-----log data loading
- Lift, Splat, Shoot: Encoding Images from Arbitrary Camera Rigs by Implicitly Unprojecting to 3D 论文笔记
- CAS:153162-70-0_N-BOC-6-Biotinamidohexylamine
- 数据一致性:双删为什么要延时?
- 2019年10月SQL注入的两倍
- 21天打卡挑战学习MySQL——《MySQL工具的使用》第一周 第二篇
- 嵌入式开发:嵌入式基础——代码和数据空间揭秘
- noip初赛
- Adobe是什么?
猜你喜欢

授人以渔 - 如何自行查询任意 SAP UI5 控件属性的文档和技术实现细节试读版

2022-08-02 mysql/stonedb slow SQL-Q18 - memory usage surge analysis

Cisco ike2 IPSec配置

Diazo Biotin-PEG3-DBCO | Diazo Compound Modified Biotin-Tripolyethylene Glycol-Dibenzocyclooctyne

【刷题篇】二叉树的右视图

Lift, Splat, Shoot: Encoding Images from Arbitrary Camera Rigs by Implicitly Unprojecting to 3D 论文笔记

【bug】汇总Elipse项目中代码中文乱码解决方法!

21天打卡挑战学习MySQL——《Window下安装MySql》第一周 第三篇

Adobe是什么?

113. 授人以渔 - 如何自行查询任意 SAP UI5 控件属性的文档和技术实现细节
随机推荐
UVa 1025 - A Spy in the Metro(白书)
On the Qixi Festival of 2022, I will offer 7 exquisite confession codes, and at the same time teach you to quickly change the source code for your own use
Kubernetes入门到精通-Operator 模式
VIM操作
CAS:1797415-74-7_TAMRA-Azide-PEG-Biotin
21天打卡挑战学习MySQL——《Window下安装MySql》第一周 第三篇
With 4 years of work experience, the 5 communication methods between multi-threads can't be said, can you believe it?
Teach a Man How to Fish - How to Query the Properties of Any SAP UI5 Control by Yourself Documentation and Technical Implementation Details Demo
投资性大于游戏性 NFT游戏到底是不是门好生意
电商数仓ODS层-----日志数据装载
HCIP第十五天
LitJson报错记录
【day6】类与对象、封装、构造方法
Bytebase database schema change management tool
如何设计 DAO 的 PoW 评判标准 并平衡不可能三角
东西向和南北向通信的统一
for loop exercises
全球观之地理部分
Android build error: Plugin with id 'kotlin-android' not found.
Go开发工具GoLand V2022.2 来了——Go 工作区重大升级