当前位置:网站首页>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, 当检测到有这个注解的时候,跳过测试执行
边栏推荐
- Unification of east-west and north-south communications
- Golang Chapter 1: Getting Started
- Flink--Join以及Flink函数
- 384. Shuffle an Array
- Conditional Statements for Shell Programming
- CAS:1260586-88-6_生物素-C5-叠氮_Biotin-C5-Azide
- Internet user account information management regulations come into effect today: must crack down on account trading and gray products
- noip初赛
- 藏宝计划TreasureProject(TPC)系统模式开发技术原理
- CAS:1260586-88-6_Biotin-C5-Azide_Biotin-C5-Azide
猜你喜欢
随机推荐
【刷题篇】二叉树的右视图
382. Linked List Random Node
图的基础概念
VIM操作
Nine ways to teach you to read the file path in the resources directory
UVa 1025 - A Spy in the Metro(白书)
[b01lers2020]Life on Mars
Makefile
【day6】类与对象、封装、构造方法
CAS:1260586-88-6_Biotin-C5-Azide_Biotin-C5-Azide
授人以渔 - 如何自行查询任意 SAP UI5 控件属性的文档和技术实现细节试读版
CAS:908007-17-0_Biotin-azide _生物素叠氮化物
FVCOM三维水动力、水交换、溢油物质扩散及输运数值模拟丨FVCOM模型流域、海洋水环境数值模拟方法
376. Wiggle Subsequence
21天打卡挑战学习MySQL——《MySQL工具的使用》第一周 第二篇
Optimize the query (work in progress)
Embedded systems: overview
win10系统下yolov5-V6.1版本的tensorrt部署细节教程及bug修改
L2-041 插松枝
Adobe是什么?









![[N1CTF 2018]eating_cms](/img/09/3599d889d9007eb45c6eab3043f0c4.png)