2

Spring の MockMvc テスト フレームワークを使用して REST エンドポイントをヒットする単体テストがあります。残りのエンドポイントでは、 @RequestParametersjava.util.Dateとして渡される 2 つのオブジェクトとともに、2 つの文字列パス変数を送信する必要があります。テストを実行すると、Date オブジェクトが存在しないか、文字列 JSON 表現から Date オブジェクトにシリアル化できないため、失敗します。記録として、 にリストされているエンドポイントに到達する前に実行が失敗するため、この問題はテスト対象のコードに起因するものではありません。テストから来ています。.perform()

これが私のテストです:

    @Test
    public void testGetHitsForCell() {
    String categoryName = "categoryName";

    try {

        String startDateJson = gson.toJson(new Date());
        String endDateJson = gson.toJson(new Date());
        ResultActions ra = mvc.perform(MockMvcRequestBuilders.get("/rest/tickets/" + ticketName + "/" + categoryName).requestAttr("startDate", new Date())
                .requestAttr("endDate", new Date()).with(user(user)));
        MvcResult aResult = ra.andReturn();
        MockHttpServletResponse response = aResult.getResponse();

        assertTrue(response.getContentType().equals("application/json;charset=UTF-8"));
        assertTrue(gson.fromJson(response.getContentAsString(), PaginatedResults.class) instanceof PaginatedResults);
    } catch (Exception e) {
        e.printStackTrace();
        fail(e.getMessage());
    }

エンドポイントは次のようになります。

/rest/ticket/{ticketName}/{categoryName}?startDate=2015-07-21T14%3A26%3A51.972-0400&endDate=2015-08-04T14%3A26%3A51.972-0400

これは、MockMvc がスローする例外です。

org.springframework.web.bind.MissingServletRequestParameterException: 必須の日付パラメーター 'startDate' が存在しません

テスト アプリケーションのコンテキストは次のようになります。

<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util.xsd">


    <import resource="classpath:propertiesPlaceholder.xml" />
    <import resource="classpath:cache.xml" />
    <import resource="classpath:mongo-context.xml" />
    <import resource="classpath:securityContext.xml" />
    <import resource="classpath:service-commons.xml" />

    <import resource="classpath:mockUserProviderContext.xml" />

    <!-- Enables the Spring MVC @Controller programming model -->
    <mvc:annotation-driven>
        <mvc:message-converters register-defaults="true">
            <!-- Use the Jackson mapper defined above to serialize dates appropriately -->
            <bean
                class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
                <property name="objectMapper" ref="jacksonObjectMapper" />
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>

    <mvc:default-servlet-handler/>
    <!-- Jackson Mapper -->
    <bean name="jacksonObjectMapper"
        class="org.springframework.http.converter.json.Jackson2ObjectMapperFactoryBean">
        <property name="featuresToDisable">
            <array>
                <util:constant
                    static-field="com.fasterxml.jackson.databind.SerializationFeature.WRITE_DATES_AS_TIMESTAMPS" />
                <util:constant
                    static-field="com.fasterxml.jackson.databind.SerializationFeature.FAIL_ON_EMPTY_BEANS" />
            </array>
        </property>
    </bean>


    <!-- SimpleDateFormat for Jackson to use for formatting Date objects -->
    <bean id="standardDateFormat" class="java.text.SimpleDateFormat">
        <constructor-arg index="0" value="yyyy-MM-dd'T'HH:mm:ss.SSS'Z'" />
    </bean>

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving 
        up static resources in the ${webappRoot}/resources directory -->
    <mvc:resources mapping="/resources/**" location="/resources/" />

    <context:component-scan base-package="ticketApp" />
    <context:component-scan base-package="mongodb.dao.TicketDao" />
    <context:component-scan base-package="service.commons.*" />

</beans>

これらの Date オブジェクトを上記の残りのエンドポイントに正しく渡すにはどうすればよいですか?

4

3 に答える 3

1

ここで、いくつかのことが間違っていることがわかりました。

日付オブジェクトに .requestAttr() 呼び出しを使用する必要はありませんでした。次のように、日付の文字列表現をクエリ パラメータとして呼び出しに追加しただけです。

private String end = "2015-12-31T23:59:59.999Z";
private String start = "2012-01-01T00:00:00.000Z";

ResultActions ra = mvc.perform(MockMvcRequestBuilders.get("/rest/hits/" + modelId + "/0" + "?startDate=" + start + "&endDate=" + end).with(user(user)));

また、文字列表現の形式が間違っていたため、Date オブジェクトを渡すと問題が発生しました。新人ミス。

于 2015-08-21T14:39:39.287 に答える
0

答えるには遅すぎることはわかっていますが、将来の誰かの検索のために.

この問題を解決するには、get(URL).param代わりに次を使用できます。

mvc.perform(MockMvcRequestBuilders.get("/rest/tickets/" + ticketName + "/" + categoryName).param("startDate", new Date())
            .param("endDate", new Date()).with(user(user)));
于 2016-05-17T01:33:59.227 に答える