gpt4 book ai didi

java - Junit 5 无法解析方法的参数

转载 作者:行者123 更新时间:2023-11-30 05:37:18 34 4
gpt4 key购买 nike

我对 Web 端点进行了一个简单的测试,并且正在使用restAssured 测试 json 架构。我不断得到:

org.junit.jupiter.api.extension.ParameterResolutionException: No ParameterResolver registered for parameter [java.lang.String arg0] in method [void People.init(java.lang.String,java.lang.String)].

我读过 JUnit 5 手册,我真的不明白这个错误。据我所知,init 方法的输入字符串没有任何问题。我真的不明白这个错误。有人可以向我解释一下导致此错误的原因以及如何在这种情况下解决它吗?

import Utils;
import org.junit.jupiter.api.*;
import org.springframework.test.context.TestPropertySource;
import static io.restassured.RestAssured.get;
import static io.restassured.module.jsv.JsonSchemaValidator.matchesJsonSchemaInClasspath;

@DisplayName(value = "Tests endpoint")
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
@TestPropertySource(locations = "classpath:resources")

class People {

private String PEOPLE_QUERY = "PeopleQStar.json";
private String host = "http://dev-dev/";
private String endPoint = "people";

Utils utils = new Utils();

@BeforeAll
void init(String host, String endPoint)
{
utils.setHostAndPath(host, endPoint);
utils.setCommonSettings();
}

@AfterAll
void cleanUp()
{
utils.tearDown();
}

@Order(1)
@DisplayName("Check if endpoint is up")
@Test
void initialComCheck()
{
get().then().statusCode(200);
}

@Order(2)
@Test
public void givenUrl_whenJsonResponseConformsToSchema_thenCorrect() {

get("?q=*").then().assertThat()
.body(matchesJsonSchemaInClasspath(PEOPLE_QUERY));
}
}

最佳答案

考虑对您的代码进行以下更改:

import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.api.extension.ExtensionContext;
import org.junit.jupiter.api.extension.ParameterContext;
import org.junit.jupiter.api.extension.ParameterResolutionException;
import org.junit.jupiter.api.extension.ParameterResolver;
//... other imports and annotations
@ExtendWith(CustomParameterResolver.class) // your custom parameter resolver, see below
class People {

//...

@BeforeAll
void init(Server server) // custom stub for storage of your params
{
utils.setHostAndPath(server.getHost(), server.getEndpoint());
utils.setCommonSettings();
}

// other methods as it is
}

static class Server {
private String host = "http://dev-dev/";
private String endpoint = "people";

public String getHost() {
return host;
}

public String getEndpoint() {
return endpoint;
}
}

static class CustomParameterResolver implements ParameterResolver {

@Override
public boolean supportsParameter(ParameterContext parameterContext,
ExtensionContext extensionContext) throws ParameterResolutionException {
return (parameterContext.getParameter().getType() == Server.class);
}

@Override
public Object resolveParameter(ParameterContext parameterContext,
ExtensionContext extensionContext) throws ParameterResolutionException {
return new Server();
}
}

这应该有助于解决您的问题。您的情况的主要问题是 @BeforeAll 方法默认签名(没有参数)。这就是为什么您会收到异常(因为它不知道您尝试传递的任何自定义参数)。为了解决这个问题,JUnit 5 API 允许您定义自定义 ParameterResolver 并随后使用 @ExtendsWith 来应用它

为了简化,我引入了 stub 对象,但我确信有一个选项可以使用 2 个 String 参数来解决这个问题

关于java - Junit 5 无法解析方法的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56333345/

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