应该如何使用 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 进行测试。
有什么建议么?
先感谢您。