Merge branch '2.5.x'

Closes gh-28483
This commit is contained in:
Andy Wilkinson 2021-10-29 11:37:43 +01:00
commit ef2bcdd3ed

View File

@ -136,13 +136,21 @@ class MongoDataAutoConfigurationTests {
}
@Test
void customAutoIndexCreation() {
this.contextRunner.withPropertyValues("spring.data.mongodb.autoIndexCreation:false").run((context) -> {
void defaultAutoIndexCreation() {
this.contextRunner.run((context) -> {
MongoMappingContext mappingContext = context.getBean(MongoMappingContext.class);
assertThat(mappingContext.isAutoIndexCreation()).isFalse();
});
}
@Test
void customAutoIndexCreation() {
this.contextRunner.withPropertyValues("spring.data.mongodb.autoIndexCreation:true").run((context) -> {
MongoMappingContext mappingContext = context.getBean(MongoMappingContext.class);
assertThat(mappingContext.isAutoIndexCreation()).isTrue();
});
}
@Test
void interfaceFieldNamingStrategy() {
this.contextRunner