5

最初に、この問題の重要な要素について言及しませんでした。ここでは TestNG を使用しています。

永続化を実行する DAO レイヤーがあります。私の小さなWebアプリの一部としてうまく機能します(私は古典的なコントローラー、サービス、DAOレイヤーのデザインを持っています)。必要に応じて、この質問を XML で更新できます。

私のサービス層

@Service
public class UserServiceImpl implements UserService {

    @Autowired
    private UserDao userDao;

    @Override
    public GoodVibeUserDetails getUser(String username) throws UsernameNotFoundException {

        GoodVibeUserDetails user = userDao.getDetailsRolesAndImagesForUser(username);

        return user;
    }

    // more methods...

}

私のDAOレイヤー

@Repository
public class UserDaoImplHibernate implements UserDao {

    @Autowired
    private SessionFactory sessionFactory;

    // My methods using sessionFactory & "talking" to the Db via the sessionFactory
}

そして、ここに私のテストクラスがあります

@Component
public class UserDaoImplHibernateTests{

    @Autowired
    private UserDao userDao;

    private GoodVibeUserDetails user; 

    @BeforeMethod
    public void beforeEachMethod() throws ParseException{
        user = new GoodVibeUserDetails();
        user.setUsername("adrien");
        user.setActive(true);
        // & so on...
    }

    /*
     * When everything is fine - test cases
     */
    @Test
    public void shouldAcceptRegistrationAndReturnUserWithId() throws Exception{
        assertNotNull(userDao) ;
        user = userDao.registerUser(user);
        assertNotNull(user.getId()) ;
    }

    // more test cases...

}

しかし、私のテスト クラスでは、Autowiring はuserDao常にNullを返します。Spring でテストを始めたばかりで、少し迷っています。どんなポインタでも大歓迎です。


Boris Treukhovの回答後の最新の編集

import ...
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import static org.junit.Assert.assertNotNull;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/applicationContext.xml")
public class UserDaoImplHibernateTests{

    @Autowired
    @Qualifier("userDao")
    private UserDao userDao;

    private GoodVibeUserDetails user; 

    @BeforeMethod
    public void beforeEachMethod() throws ParseException{
        user = new GoodVibeUserDetails();
        user.setUsername("adrien");
        user.setActive(true);
        // & so on...
    }

    /*
     * When everything is fine - test cases
     */
    @Test
    public void shouldAcceptRegistrationAndReturnUserWithId() throws Exception{
        assertNotNull(userDao) ;
        user = userDao.registerUser(user);
        assertNotNull(user.getId()) ;
    }

    // more test methods...

}

そして、これは私のapplicationContext.xmlです

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:tx="http://www.springframework.org/schema/tx" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:p="http://www.springframework.org/schema/p" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd 
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd" >


    <!-- the application context definition scans within the base package of the application -->
    <!-- for @Components, @Controller, @Service, @Configuration, etc. -->
    <context:annotation-config />
    <context:component-scan base-package="com.goodvibes" />

    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" p:location="/WEB-INF/jdbc.properties" />

    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" 
        p:driverClassName="${jdbc.driverClassName}" p:url="${jdbc.databaseurl}" 
        p:username="${jdbc.username}" p:password="${jdbc.password}" />


    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="configLocation">
            <value>classpath:hibernate.cfg.xml</value>
        </property>
        <property name="configurationClass">
            <value>org.hibernate.cfg.AnnotationConfiguration</value>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">${jdbc.dialect}</prop>
                <prop key="hibernate.show_sql">${jdbc.show_sql}</prop>
                <prop key="hibernate.connection.SetBigStringTryClob">true</prop>
                <prop key="hibernate.jdbc.batch_size">0</prop>
            </props>
        </property>
    </bean>

    <tx:annotation-driven />

    <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    [...]

</beans>

にアクセスするにはこれで十分なので、repository-config.xml は追加しませんでしたuserDao。私はまだ userDao equal null を取得します。

前もって感謝します

4

1 に答える 1

11

単体テストを作成する場合、Spring IoC 機能は使用できません (フレームワーク設計者が意図したとおり)。これは、オブジェクトを分離してテストしているためです (つまり、テストの完了に必要なインターフェースの最小限のセットのみをモックしているためです)。この場合、@Before テスト初期化メソッドなどで、モック リポジトリを手動で挿入する必要があります。全体的な考え方は、クラスはインターフェースのみに依存するため、基本的にSpringコンテナはどのクラスをインターフェース実装として使用するかを評価しますが、単体テストを作成するときは、どのインターフェースメソッドが呼び出されたかを厳密に制御する必要があります(そして最小限の依存関係のセット)、それが注入を手動で実行する理由です。

統合テストを行っている場合は、Spring IoC コンテナー インスタンスを稼働させておく必要があります。これを機能させるには、Spring のドキュメント on testingで説明されているように、jUnit (jUnit を使用していると仮定) 固有のテスト ランナーを使用する必要があります。

質問に戻ると、jUnit に対する単純な単体テストのように見えますが、Spring コンテナーは使用されていません。したがって、Spring TestContext フレームワークを使用する場合は、次のようなものが必要です

   @RunWith(SpringJUnit4ClassRunner.class)
   @ContextConfiguration(locations={"/path-to-app-config.xml", "/your-test-specific-config.xml"})
   public class UserDaoImplHibernateTests

の代わりに@Component

TestNgのケースで更新する必要があると思います(参考としてTestNGでSpring Dependency Injectionを使用しました)

   @ContextConfiguration(locations={"/path-to-app-config.xml", "/your-test-specific-config.xml"})
   public class UserDaoImplHibernateTests extends AbstractTestNGSpringContextTests

参照:統合テストと単体テストの違いは何ですか?

于 2012-10-26T20:16:41.430 に答える