Spring Data MongoDB:使用存储库进行单元测试

3
如何在Spring Data MongoDB中使用存储库方法构建一些测试?我想为我的测试设置测试数据库,因为我不想将生产数据库用于此目的。这可能是可能的,但我没有头绪。这是我的应用程序上下文:
<?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:context="http://www.springframework.org/schema/context"
         xmlns:mongo="http://www.springframework.org/schema/data/mongo"
         xmlns:neo4j="http://www.springframework.org/schema/data/neo4j"
         xsi:schemaLocation=
             "http://www.springframework.org/schema/context
              http://www.springframework.org/schema/context/spring-context-3.0.xsd
              http://www.springframework.org/schema/data/mongo
              http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd
              http://www.springframework.org/schema/beans
              http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
              http://www.springframework.org/schema/data/neo4j
              http://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd">

        <!-- Default bean name is 'mongo' -->
        <mongo:mongo host="${mongo.host}" port="${mongo.port}">
        <mongo:options connections-per-host="8"
            threads-allowed-to-block-for-connection-multiplier="4"
            connect-timeout="${mongo.connect-timeout}"
            max-wait-time="${mongo.max-wait-time}"
            auto-connect-retry="true"
            socket-keep-alive="true"
            socket-timeout="${mongo.socket-timeout}"
            slave-ok="true"
            write-number="1"
            write-timeout="0"
            write-fsync="true"/>
         </mongo:mongo>

         <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
            <constructor-arg ref="mongo" />
            <constructor-arg name="databaseName" value="${mongo.db}" />
         </bean>

        <context:component-scan base-package="domain.company.group.project.data.repositories"/>

        <!-- MongoDB repositories -->
        <mongo:repositories base-package="domain.company.group.project.data.repositories.mongodb"/>

        <!-- some other stuff -->

    </beans>

假设我有一个简单的代码库,如下所示:

public interface LocationRepository extends MongoRepository<Location, String>, LocationRepositoryCustom {

}

LocationRepositoryImpl是实现特定Location(域对象)类的所有自定义方法的类。我的测试类如下:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"/test-context.xml"})
public class LocationRepositoryTest {

    @Autowired
    private LocationRepository locationRepository;

    /* Some tests... */
}

我尝试在运行测试时嵌入MongoDB实例(如此处所述),但无法成功:虽然与测试数据库的连接已经建立,但mongo模板似乎无法被覆盖,因为所有保存方法都会将数据插入到“生产”数据库中。
我正在使用Spring 3.2.0和Spring Data Mongo 1.1.0.RELEASE。我正在使用Junit进行测试。
有什么建议吗?
提前感谢您。
1个回答

6

Jaranda,

我上周面临了同样的问题,巧合的是我听说过Fongo,“一个内存中的Mongo Java实现”。

所以我决定使用它来测试我的自定义存储库,并且对我来说完美地工作。下面是如何配置Spring在JUnit测试中使用Fongo的示例。请注意,我没有使用xml配置。

希望这会有用!

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class LocationRepositoryTest {

   private static final String PLAYER_ID = ObjectId.get().toString();

   @Autowired private LocationRepositoryCustom playerRepository;
   @Autowired private MongoTemplate mongoTemplate;

   /* Some tests... */

   @Configuration
   static class LocationRepositoryTestConfiguration {

        @Bean
        public Mongo mongo() {
            // Configure a Fongo instance
            return new Fongo("mongo-test").getMongo();
        }

        @Bean
        public MongoTemplate mongoTemplate() {
            return new MongoTemplate(mongo(), "collection-name");
        }

        @Bean
        public LocationRepositoryCustom playerRepository() {
            // This is necessary if MongoTemplate is an argument of custom implementation constructor
            return new LocationRepositoryCustomImpl(mongoTemplate());
        }
    }
}

嗨Miguel,感谢你提醒我!最终,我实际上在生产和测试环境中使用了不同的上下文,这似乎是正确的方法。无论如何,感谢您的回复,我一定会看看Fongo!再见;-) - jarandaf
我想提一下我刚发现的这个库,看起来真是太棒了:https://github.com/lordofthejars/nosql-unit/ - jarandaf

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接