我有一个 arquillian 组件测试,我想使用 NoSqlUnit 使用内存中的 MongoDB (Fongo) 数据库。我正在使用 @Producer 来定义我的 DataStoreConnection,并且我在 Java SE 8 上使用 Eclipse MicroProfile。
问题是,在启动内存数据库后,在进行端点测试时,我无法在代码中以编程方式访问它。
我有一个 DataStoreConnectionProducer 这样的:
import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.inject.Produces;
@ApplicationScoped
public class DataStoreConnectionProducer {
private MongoClient mongoClient;
private static final Config config = ConfigProvider.getConfig();
@Produces
public MongoDatabase createMongoClient(){
final String DB_PATH = config.getValue( "mongodb.path", String.class );
final int DB_PORT = config.getValue( "mongodb.port", Integer.class );
final String DB_NAME = config.getValue( "mongodb.dbname", String.class );
if( DB_NAME.equals( "test" ) )
return new MongoClient().getDatabase(DB_NAME);
else
return new MongoClient( DB_PATH, DB_PORT ).getDatabase( DB_NAME );
}
}
我的 GreetingDAO 正在使用注入 MongoDatabase
@Inject MongoDatabase mongoDatabase;
我的资源如下所示:
@Path( "/greetings" )
public class HelloResource {
@Inject
private GreetingDAO greetingDAO;
@Inject
private GreetingService greetingService;
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getGreeting (){
return Response.ok(greetingDAO.findAll(), MediaType.APPLICATION_JSON).build();
}
@GET
@Path( "{id}" )
@Produces( MediaType.APPLICATION_JSON )
public Response getGreetingById( @PathParam( "id" ) String greetingId ){
try {
return Response.ok( greetingDAO.findByID( greetingId.toLowerCase() ), MediaType.APPLICATION_JSON ).build();
}catch ( NoSuchElementException ex ){
ex.printStackTrace();
return Response.status( 404 ).build();
}
}
最后我的 Arquillian 测试:
@RunWith( Arquillian.class )
@RunAsClient
public class HelloResourceTest extends AbstractTest{
private static final String DB_NAME = "test";
@ClassRule
public static final InMemoryMongoDb inMemoryMongoDb =
newInMemoryMongoDbRule().targetPath( "localhost" ).build();
@Rule
public MongoDbRule embeddedMongoDbRule = newMongoDbRule()
.defaultEmbeddedMongoDb(DB_NAME);
@Inject MongoClient mongoClient;
@Deployment
public static WebArchive createDeployment () {
WebArchive war = createBasicDeployment()
.addClasses(
HelloResource.class,
GreetingDAO.class,
GreetingService.class,
Greeting.class,
DAO.class,
DataStoreConnectionProducer.class
);
System.out.println( war.toString(true) );
return war;
}
private MongoDatabase getFongoDataBase(){
return mongoClient.getDatabase( DB_NAME );
}
这几乎是我开始感到困惑的地方。知道 Fongo 是一个内存数据库,肯定没有远程访问它的方法吗?相反,我肯定必须将其提供给我的 DataStoreConnectionProducer 或以某种方式将其注入我的 GreetingDAO 以便使用 FongoDB 而不是 @Producer 尝试连接到我的托管 MongoDB。
您可能会问一个问题:为什么不使用托管 MongoDB? 答:因为我希望进行基于组件的测试,而不是集成测试。