我正在使用flapdoodle的嵌入式mongo在我的spring boot应用程序上运行集成测试。
我做了如下测试:
@SpringBootTest(classes = Application.class)
@TestMethodOrder(OrderAnnotation.class)
class IntegrationTests {
@BeforeAll
static void setup() throws Exception {
String ip = "localhost";
int port = 65000;
IMongodConfig mongodConfig = new MongodConfigBuilder().version(Version.Main.PRODUCTION)
.net(new Net(ip, port, Network.localhostIsIPv6())).build();
MongodStarter starter = MongodStarter.getDefaultInstance();
mongodExecutable = starter.prepare(mongodConfig);
mongodExecutable.start();
mongoTemplate = new MongoTemplate(MongoClients.create(String.format(CONNECTION_STRING, ip, port)), "test");
}
但每次mongodb服务器在随机端口上启动时:
[2021-03-16T01:41:26.026Z] [com.mongodb.diagnostics.logging.SLF4JLogger] [main] [71] [INFO ] Opened connection [connectionId{localValue:4, serverValue:2}] to localhost:55359
我尝试过为端口使用不同的值,但都不起作用。
为什么我的配置没有得到尊重?
让我知道如果任何其他信息是我这边需要的。
1条答案
按热度按时间gfttwv5a1#
只需排除默认加载的自动配置类:
顺便说一下,我使用了切片测试注解
@DataMongoTest
而不是@SpringBootTest
为了只引导测试所需的内容(mongodb相关bean)。