gpt4 book ai didi

java - 如何在 TestNG 中禁用整个测试(包括继承的方法)

转载 作者:行者123 更新时间:2023-11-30 02:37:28 26 4
gpt4 key购买 nike

我正在使用 TestNG 框架,许多测试类扩展了 Base 抽象 Test,提供了一些附加信息。

我要设置@Test(enabled = false)在整个测试类上,这在 TestNG 中是有问题的 @Test方法上的注释将覆盖第一个。这意味着,即使禁用了类,所有方法仍然会运行。

我在拉取请求中找到了框架作者提供的解决方法 #816 - 添加监听器,修改 @Test方法上的注释(如果定义的类具有 @Test(enabled = false)) :

public class TestClassDisabler implements IAnnotationTransformer {

@Override
public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor,
Method testMethod) {
if (testMethod != null) {
Test test = testMethod.getDeclaringClass().getAnnotation(Test.class);
if (test != null && !test.enabled()) {
annotation.setEnabled(false);
}
}
}
}

它就像一个魅力,但仅适用于不使用继承的测试。对于这种情况,testMethod.getDeclaringClass() from 监听器返回声明方法的原始类,而不是启动方法的对象实例的类。

@Test(enabled = false)
class SpecificTest extends BaseTest {

@Test
public void testSomething() {}
}

abstract class BaseTest {

@Test
public void veryGenericTest() {}
}

对于此示例,仅 testSomething已禁用,veryGenericTest仍在运行。

最佳答案

IAnnotationTransformer 在这里不是一个好的选择。没有简单的方法来获取调用方法的原始实例,仅基于 Method 接口(interface)。我们只能获取声明了方法的基类。

其他解决方案与IMethodInterceptor配合使用,它允许在测试套件启动之前过滤掉方法并提供对测试类实例的访问。

public class TestMethodsDisabler implements IMethodInterceptor {

@Override
public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) {
List<IMethodInstance> testsToRun = new ArrayList<>();

for (IMethodInstance method : methods) {
Test testClass = method.getInstance()
.getClass()
.getAnnotation(Test.class);

if (testClass == null || testClass.enabled()) {
testsToRun.add(method);
}
}

return testsToRun;
}
}

这样,当我们在类上设置 @Test(enabled = false) 注解时,标准方法和继承方法都会被禁用。

需要使用此拦截器在 testng.xml 中创建测试套件:

<suite name="ListenersSuite" parallel="false">
<listeners>
<listener class-name="your.package.support.TestMethodsDisabler"/>
</listeners>

<test name="all-test" preserve-order="true" verbose="2">
<packages>
<package name="your.package.tests.*"/>
</packages>
</test>
</suite>

引用

关于java - 如何在 TestNG 中禁用整个测试(包括继承的方法),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42682545/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com