0

我有一个 Jersey 3 Web 应用程序(在 Tomcat10、JDK15 和 JUnit5 上运行),我想在其中对我的端点进行单元测试。

虽然,我在设置这些时遇到了麻烦。我的理解是,我需要使用 GrizzlyWebTestContainer 才能获得正确的环境设置。另外,我认为我需要以某种方式将我的 web.xml 传递给 ServletcContainer。但是我该怎么做呢?

当我运行测试时,我得到:

java.lang.NullPointerException: Cannot invoke "org.glassfish.jersey.test.spi.TestContainer.getBaseUri()" because the return value of "org.glassfish.jersey.test.JerseyTest.getTestContainer()" is null

所以我还需要在某个地方配置一个 baseUri - 但是在哪里?不幸的是,我只找到了 Grizzly Test ContainerFactory 而不是 GrizzlyWebTestC 的示例和文档......有人可以解释一下我错过了什么吗?

非常感谢任何输入!

这是我的单元测试:

public class SimpleTest extends JerseyTest {

    @Override
    public TestContainerFactory getTestContainerFactory() {
        return new GrizzlyWebTestContainerFactory();
    }


    @Override
    public DeploymentContext configureDeployment() {
        return ServletDeploymentContext
                .forServlet(new ServletContainer()) //how to pass web.xml here?
                .build();
    }

    @Override
    protected Application configure() {
        return new ResourceConfig(DatasetController.class);
    }

    @Test
    public void test() {
        Response response = target("/data/180").request().get(); //--> NPE is thrown here
        assertEquals(200, response.getStatus());
    }
}

这是我的端点,我想测试:

@Path("/data")
public class DataController {

    @Context ServletContext context;

    private DataSource ds;

    @PostConstruct
    public void init() { ds = (DataSource) context.getAttribute(DATASOURCE_CONTEXT_NAME); }

    @GET
    @Path("/{dataId}")
    @Produces(MediaType.APPLICATION_JSON)
    @RolesAllowed({"1","2"})
    public Response getDataById(@PathParam("id") Long id) throws SQLException {
        logger.debug("Fetching dataset with id " + id);
        DSLContext create = DSL.using(ds.getConnection());

            //some JOOQ code

            return Response.ok(dto).build();
        }
}

这是我的 pom.xml 中最重要的部分

<dependencies>
        <!-- Testing -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>5.6.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>5.6.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.vintage</groupId>
            <artifactId>junit-vintage-engine</artifactId>
            <version>5.6.0</version>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.test-framework.providers</groupId>
            <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
            <version>3.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.test-framework</groupId>
            <artifactId>jersey-test-framework-core</artifactId>
            <version>3.0.1</version>
            <scope>test</scope>
        </dependency>
4

1 回答 1

0

之所以会出现此问题,是因为在 org.glassfish.jersey.test.JerseyTest 类中,您可以找到带有与 junit4 相关的 @Before 注释的方法

@Before
public void setUp() throws Exception {
..
}

当您将 junit4 替换为 junit5 时,此注释不执行任何操作,并且不会调用方法。

解决方案:

public class YourJerseyTest extends JerseyTest {

@BeforeEach
void init() throws Exception {
    super.setUp();
}
..
}
于 2021-08-23T15:02:04.550 回答