- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试以测试驱动的方式编写基于 JAX-RS 的 Restful 应用程序。我不想使用 spring-boot,只想使用 JavaEE 规范及其(主要基于 Wildfly)实现。
我编写了 JAX-RS 应用程序的一个非常小的实现,并试图对它按照我期望的方式失败的部分进行自动化测试(因为资源返回 null
在 create
调用上。
我想创建一个设置,在其中我的测试启动一个基本容器 Jetty,该容器使用 Resteasy 作为 JAX-RS 实现为我的应用程序提供服务。然后我想对我的应用程序的资源运行一些测试,之后我想拆除服务器。
到目前为止,一切都很好,没什么特别的。但是,我无法让它工作。我尝试了多种方法,但 Resteasy 似乎不会自动获取我的 JAX-RS 注释的应用程序和资源,尽管它应该能够这样做。
如果我明确告诉 Resteasy 我的应用程序是什么,这似乎至少有效,但当然,我的资源不会被获取。
我的应用程序类:
@ApplicationPath("/service")
public class AssurancetourixRestApplication extends Application
{
private static final Logger log = LoggerFactory.getLogger(AssurancetourixRestApplication.class);
public AssurancetourixRestApplication()
{
log.info("Application created");
}
@Override
public Set<Class< ? >> getClasses()
{
log.info("getClasses called");
return super.getClasses();
}
@Override
public Set<Object> getSingletons()
{
log.info("getSingletons called");
return super.getSingletons();
}
}
我的资源界面:
@Path("insurance")
@Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
@Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
public interface InsuranceResource
{
@GET
public Response getAll();
@POST
public Response create(Insurance insurance);
}
资源的实现:
public class InsuranceResourceImpl implements InsuranceResource
{
private static final Logger log = LoggerFactory.getLogger(InsuranceResourceImpl.class);
public InsuranceResourceImpl()
{
log.info("resource created");
}
@Override
public Response create(Insurance insurance)
{
log.info("create called");
return null;
}
@Override
public Response getAll()
{
log.info("getAll called");
return null;
}
}
Web.xml
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<display-name>assurancetourix-rest</display-name>
<context-param>
<param-name>resteasy.scan</param-name>
<param-value>true</param-value>
</context-param>
</web-app>
Pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>nl.crashdata.assurancetourix</groupId>
<artifactId>assurancetourix</artifactId>
<version>0.1-SNAPSHOT</version>
</parent>
<artifactId>assurancetourix-rest</artifactId>
<packaging>war</packaging>
<name>Assurancetourix rest services</name>
<dependencies>
<dependency>
<groupId>org.jboss.spec.javax.ws.rs</groupId>
<artifactId>jboss-jaxrs-api_2.1_spec</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.3_spec</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson-provider</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-servlet-initializer</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
依赖关系在父 pom 中管理。 Resteasy是版本3.8.1.Final,jetty是版本9.4.19.v20190610
测试类
@TestInstance(Lifecycle.PER_CLASS)
public class InsuranceResourceTest
{
private ResteasyClient resteasyClient = new ResteasyClientBuilder().build();
private Server server;
@Test
public void createInsurance()
{
Insurance insurance = new Insurance();
insurance.setName("Test insurance");
insurance.setPolicyNumber(123456789L);
Response response = post(insurance);
assertEquals(Status.CREATED, response.getStatusInfo());
}
private Response post(Insurance insurance)
{
return resteasyClient.target(server.getURI())
.proxy(InsuranceResource.class)
.path("/service")
.create(insurance);
}
@BeforeAll
protected void setUp()
{
this.server = new Server(0);
ServletContextHandler context =
new ServletContextHandler(ServletContextHandler.SESSIONS);
context.setContextPath("/");
context.setBaseResource(getWebAppRoot());
ServletHolder holder = new ServletHolder("default", HttpServlet30Dispatcher.class);
context.addServlet(holder, "/*");
server.setHandler(context);
try
{
server.start();
}
catch (Exception e)
{
throw new RuntimeException(e);
}
}
@AfterAll
protected void tearDown()
{
try
{
server.stop();
}
catch (Exception e)
{
throw new RuntimeException(e);
}
}
protected Resource getWebAppRoot()
{
try
{
return Resource
.newResource(new File(new File(".").getAbsolutePath() + "/src/main/webapp"));
}
catch (Exception e)
{
throw new RuntimeException();
}
}
我希望在日志中看到 NPE 以及我添加的调试日志语句,但我看到的只是:
19:06:49.157 [qtp707635461-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - RESTEASY002305: Failed executing POST /service/insurance javax.ws.rs.NotFoundException: RESTEASY003210: Could not find resource for full path: http://127.0.1.1:34977/service/insurance
值得注意的是,我没有看到我的类中的日志语句。
通过 TRACE 上的 Resteasy 日志记录,我没有得到任何包含我的应用程序或资源名称的有用信息,但我确实得到了:
19:06:49.150 [qtp707635461-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - RESTEASY002315: PathInfo: /service/insurance 19:06:49.157 [qtp707635461-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - RESTEASY002305: Failed executing POST /service/insurance javax.ws.rs.NotFoundException: RESTEASY003210: Could not find resource for full path: http://127.0.1.1:34977/service/insurance at org.jboss.resteasy.core.registry.ClassNode.match(ClassNode.java:61) ~[resteasy-jaxrs-3.8.1.Final.jar:3.8.1.Final] at SNIP 19:06:49.176 [qtp707635461-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - MessageBodyWriter: org.jboss.resteasy.spi.ResteasyProviderFactory$SortedKey 19:06:49.176 [qtp707635461-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - MessageBodyWriter: org.jboss.resteasy.plugins.providers.StringTextStar 19:06:49.176 [qtp707635461-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - MessageBodyWriter: org.jboss.resteasy.plugins.providers.StringTextStar 19:06:49.177 [qtp707635461-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - Interceptor Context: org.jboss.resteasy.core.interception.ServerWriterInterceptorContext, Method : proceed 19:06:49.177 [qtp707635461-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - MessageBodyWriter: org.jboss.resteasy.spi.ResteasyProviderFactory$SortedKey 19:06:49.178 [qtp707635461-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - MessageBodyWriter: org.jboss.resteasy.plugins.providers.StringTextStar
如果我将测试类的 setUp 方法更改为:
this.server = new Server(0);
ServletContextHandler context =
new ServletContextHandler(ServletContextHandler.SESSIONS);
context.setContextPath("/");
// // this should not be necessary
ServletHolder holder = new ServletHolder("default", HttpServletDispatcher.class);
holder.setName("defaultservlet");
holder.setInitParameter("javax.ws.rs.Application",
"nl.crashdata.assurancetourix.rest.AssurancetourixRestApplication");
context.addServlet(holder, "/*");
server.setHandler(context);
try
{
server.start();
}
catch (Exception e)
{
throw new RuntimeException(e);
}
即,我硬编码了 jax-rs 应用程序的完整路径,该应用程序至少已构建,但资源似乎并未构建:
19:13:17.768 [qtp515520300-24] INFO nl.crashdata.assurancetourix.rest.AssurancetourixRestApplication - Application created 19:13:17.770 [qtp515520300-24] INFO org.jboss.resteasy.resteasy_jaxrs.i18n - RESTEASY002225: Deploying javax.ws.rs.core.Application: class nl.crashdata.assurancetourix.rest.AssurancetourixRestApplication 19:13:17.770 [qtp515520300-24] INFO nl.crashdata.assurancetourix.rest.AssurancetourixRestApplication - getClasses called 19:13:19.759 [qtp515520300-24] INFO nl.crashdata.assurancetourix.rest.AssurancetourixRestApplication - getSingletons called
然后就没有什么有趣的事情了,直到:
19:13:19.789 [qtp515520300-24] DEBUG org.jboss.resteasy.resteasy_jaxrs.i18n - RESTEASY002305: Failed executing POST /service/insurance javax.ws.rs.NotFoundException: RESTEASY003210: Could not find resource for full path: http://127.0.1.1:39075/service/insurance
我希望我做的是一些基本错误的事情。据我从 https://docs.jboss.org/resteasy/docs/3.8.1.Final/userguide/html_single/index.html 第 3.3.1 段中了解到,我不必对应用程序类名或任何内容进行硬编码,它应该自动选取。
RESTEasy uses the ServletContainerInitializer integration interface in Servlet 3.0 containers to initialize an application, automatically scanning for resources and providers. To enable automatic scanning, you must also include the resteasy-servlet-initializer artifact in your WAR file as well
希望我遗漏了一些非常容易修复的东西,并希望有人可以告诉我那是什么。 :D
最佳答案
如果你不需要使用jetty,那么resteasy提供了MockDispatcherFactory,这使得Rest-Tests的编写变得非常容易。
看看:Example of Resourcetest using restassured inherently using MockDispatcherFactory或Test by using MockDispatcherFactory directly
关于java - 如何使用 JUnit、Resteasy 和 Jetty 测试 JAX-RS 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57614397/
我获得了一些源代码示例,我想测试一些功能。不幸的是,我在执行程序时遇到问题: 11:41:31 [linqus@ottsrvafq1 example]$ javac -g test/test.jav
我想测试ggplot生成的两个图是否相同。一种选择是在绘图对象上使用all.equal,但我宁愿进行更艰巨的测试以确保它们相同,这似乎是identical()为我提供的东西。 但是,当我测试使用相同d
我确实使用 JUnit5 执行我的 Maven 测试,其中所有测试类都有 @ExtendWith({ProcessExtension.class}) 注释。如果是这种情况,此扩展必须根据特殊逻辑使测试
在开始使用 Node.js 开发有用的东西之前,您的流程是什么?您是否在 VowJS、Expresso 上创建测试?你使用 Selenium 测试吗?什么时候? 我有兴趣获得一个很好的工作流程来开发我
这个问题已经有答案了: What is a NullPointerException, and how do I fix it? (12 个回答) 已关闭 3 年前。 基于示例here ,我尝试为我的
我正在考虑测试一些 Vue.js 组件,作为 Laravel 应用程序的一部分。所以,我有一个在 Blade 模板中使用并生成 GET 的组件。在 mounted 期间请求生命周期钩子(Hook)。假
考虑以下程序: #include struct Test { int a; }; int main() { Test t=Test(); std::cout<
我目前的立场是:如果我使用 web 测试(在我的例子中可能是通过 VS.NET'08 测试工具和 WatiN)以及代码覆盖率和广泛的数据来彻底测试我的 ASP.NET 应用程序,我应该不需要编写单独的
我正在使用 C#、.NET 4.7 我有 3 个字符串,即。 [test.1, test.10, test.2] 我需要对它们进行排序以获得: test.1 test.2 test.10 我可能会得到
我有一个 ID 为“rv_list”的 RecyclerView。单击任何 RecyclerView 项目时,每个项目内都有一个可见的 id 为“star”的 View 。 我想用 expresso
我正在使用 Jest 和模拟器测试 Firebase 函数,尽管这些测试可能来自竞争条件。所谓 flakey,我的意思是有时它们会通过,有时不会,即使在同一台机器上也是如此。 测试和函数是用 Type
我在测试我与 typeahead.js ( https://github.com/angular-ui/bootstrap/blob/master/src/typeahead/typeahead.js
我正在尝试使用 Teamcity 自动运行测试,但似乎当代理编译项目时,它没有正确完成,因为当我运行运行测试之类的命令时,我收到以下错误: fatal error: 'Pushwoosh/PushNo
这是我第一次玩 cucumber ,还创建了一个测试和 API 的套件。我的问题是在测试 API 时是否需要运行它? 例如我脑子里有这个, 启动 express 服务器作为后台任务 然后当它启动时(我
我有我的主要应用程序项目,然后是我的测试的第二个项目。将所有类型的测试存储在该测试项目中是一种好的做法,还是应该将一些测试驻留在主应用程序项目中? 我应该在我的主项目中保留 POJO JUnit(测试
我正在努力弄清楚如何实现这个计数。模型是用户、测试、等级 用户 has_many 测试,测试 has_many 成绩。 每个等级都有一个计算分数(strong_pass、pass、fail、stron
我正在尝试测试一些涉及 OkHttp3 的下载代码,但不幸失败了。目标:测试 下载图像文件并验证其是否有效。平台:安卓。此代码可在生产环境中运行,但测试代码没有任何意义。 产品代码 class Fil
当我想为 iOS 运行 UI 测试时,我收到以下消息: SetUp : System.Exception : Unable to determine simulator version for X 堆
我正在使用 Firebase Remote Config 在 iOS 上设置 A/B 测试。 一切都已设置完毕,我正在 iOS 应用程序中读取服务器端默认值。 但是在多个模拟器上尝试,它们都读取了默认
[已编辑]:我已经用 promise 方式更改了我的代码。 我正在写 React with this starter 由 facebook 创建,我是测试方面的新手。 现在我有一个关于图像的组件,它有
我是一名优秀的程序员,十分优秀!