1

Struts アクションをテストしたいのですが、次の問題に直面しています。

SEVERE:   [09:16.218] Error building bean

Spring は依存性注入を行っていないようです。実際、デフォルトのコンストラクターを作成すると、サービスがインスタンス化されていないため、NPE が発生します。私の単体テストは StrutsSpringTestCase を拡張するのに、なぜ私のアクションが正しくインスタンス化されないのですか?

これが私の行動です:

public ControllerAuthentification(LdapUserService service) {
    this.ldapUserService = service;
}

public String connection() {
    if (userLdap != null) {
        ldapUserService.save(userLdap);
        addActionMessage(getText("success.connect"));
        return SUCCESS;
    }
    return INPUT;
}

単体テスト :

public class ControllerAuthentificationTest extends StrutsSpringTestCase {

    public void testConnection() throws Exception {

        request.setParameter("userLdap.login", "login");
        request.setParameter("userLdap.password", "password");
        proxy = getActionProxy("/connection");
        ControllerAuthentification action = (ControllerAuthentification) proxy.getAction();
        String result = proxy.execute();

       assertTrue("it would be true", result.equals(Action.SUCCESS));
    }
}

アプリケーションコンテキスト

<bean id="ldapUserService" class="sword.plateformetest.service.impl.LdapUserServiceImpl" />
<bean id="ldapUserAuthAction" scope="prototype"
    class="sword.plateformetest.action.ControllerAuthentification">
    <constructor-arg ref="ldapUserService" />
</bean>

そして私のweb.xml

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>

<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

スタックトレース :

SEVERE:   [56:08.596] Error building bean
2013-08-26 13:56:08,600 ERROR sword.plateformetest.action.ControllerAuthentificationTest.testConnection:37 - error
Unable to intantiate Action!
    at com.opensymphony.xwork2.DefaultActionInvocation.createAction(DefaultActionInvocation.java:299)
    at com.opensymphony.xwork2.DefaultActionInvocation.init(DefaultActionInvocation.java:397)
    at com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:194)
    at org.apache.struts2.impl.StrutsActionProxy.prepare(StrutsActionProxy.java:63)
    at org.apache.struts2.impl.StrutsActionProxyFactory.createActionProxy(StrutsActionProxyFactory.java:39)
    at com.opensymphony.xwork2.DefaultActionProxyFactory.createActionProxy(DefaultActionProxyFactory.java:58)
    at org.apache.struts2.StrutsTestCase.getActionProxy(StrutsTestCase.java:137)
    at sword.plateformetest.action.ControllerAuthentificationTest.testConnection(ControllerAuthentificationTest.java:34)
4

1 に答える 1