通常のサーブレット コンテキストの外部でオブジェクトをインスタンス化することにより、Spring MVC コントローラーでほぼすべての単体テストを実行できます。しかし、いくつかのテストを実行して、オブジェクトのシリアル化が適切に機能していること、ヘッダーが生成されていることなどを確認できるようにしたいと考えています.
サーブレット コンテキスト内でテストを実行するには、さまざまな Bean が構築されないように変更されたコンテキスト ファイルを作成し、EasyMock を使用してテスト ケースでそれらの Bean のモック バージョンを作成します。次に、このようなコードでハンドラーを呼び出し、必要なもののほとんどを MockHttpServletResponse から取得します。
これが本質を捉えていると思います:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "file:root-context.xml",
"file:junit-servlet-context.xml" } )
public class HomeControllerConfigHandlerHttp {
@Autowired
private RequestMappingHandlerAdapter handlerAdapter;
@Autowired
private RequestMappingHandlerMapping handlerMapping;
... //miscellaneous setup
public void someTest() throws Exception
{
MockHttpServletRequest request = new MockHttpServletRequest();
request.setMethod("GET");
request.setRequestURI("/config");
request.addParameter("foo", "bar");
request.addParameter("device", "oakmont");
MockHttpServletResponse response = new MockHttpServletResponse();
Object handler = handlerMapping.getHandler(request).getHandler();
replay(dblient);
expect(serviceClient.checkDevice("oakmont")).andReturn( true );
serviceClient.destroy();
replay(serviceClient);
ModelAndView modelAndView = handlerAdapter.handle(request, response, handler);
String content = new String( response.getContentAsByteArray() );
Assert.assertEquals(content, "Expected configuration");
String content_type = response.getHeader("Content-type");
Assert.assertEquals( content_type, "text/plain");
int status = response.getStatus();
Assert.assertEquals(status, 200 );
これは期待どおりの動作をしますが、1 つ問題があります。@ExceptionHandler を使用して、コントローラーで多くのエラー処理を行います。これは、任意のハンドラーでエラー ケースを取り消す簡単な方法であり、エラーを公開する一貫した方法を提供してくれます。
@ExceptionHandler は、通常のサーブレットのデプロイでは正常に機能しますが、この単体テストのモックアップでは、例外をスローしても呼び出されません。Spring コードに足を踏み入れることは、私にとっては少し難しいことです。私はそれに慣れていないので、すぐに迷ってしまいます。ただし、通常のサーブレット環境では、注釈付きハンドラーを探す例外ハンドラーがあるようです。SpringJUnit4ClassRunner で実行している場合、例外は同じ方法で処理されません。
これを修正する方法があれば、それを実行したいと思います。パイオニア精神の欠如のため、私は spring-test-mvc を避けてきましたが、誰かがこれをうまく処理できると言ったら、代わりに試してみます。
junit-servlet-context.xml ファイルの内容は、Spring Template MVC ウィザードによって作成された servlet-context.xml ファイルとほぼ同じです。唯一の違いは、コントローラーによって使用されるいくつかのシングルトンを作成する @Component のインスタンス化を防ぐために使用される除外フィルターの追加です。
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="com.cisco.onplus.home.dmz" >
<context:exclude-filter type="regex" expression=".*InitDatabase.*"/>
</context:component-scan>
</beans:beans>