Fix tests for spring boot

This commit is contained in:
James Agnew 2017-11-13 15:49:12 -05:00
parent 46f1b0b532
commit 6ca1498277
5 changed files with 29 additions and 21 deletions

5
appveyor.yml Normal file
View File

@ -0,0 +1,5 @@
version: 1.0.{build}
image: Visual Studio 2017
cache: C:\Users\appveyor\.m2\repository
build_script:
- cmd: mvn install

View File

@ -126,7 +126,7 @@ public class TestR4Config extends BaseJavaConfigR4 {
extraProperties.put("hibernate.show_sql", "false"); extraProperties.put("hibernate.show_sql", "false");
extraProperties.put("hibernate.hbm2ddl.auto", "update"); extraProperties.put("hibernate.hbm2ddl.auto", "update");
extraProperties.put("hibernate.dialect", "org.hibernate.dialect.DerbyTenSevenDialect"); extraProperties.put("hibernate.dialect", "org.hibernate.dialect.DerbyTenSevenDialect");
extraProperties.put("hibernate.search.model_mapping", LuceneSearchMappingFactory.class.getName()); extraProperties.put("hibernate.search.model_mapping", ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory.class.getName());
extraProperties.put("hibernate.search.default.directory_provider", "ram"); extraProperties.put("hibernate.search.default.directory_provider", "ram");
extraProperties.put("hibernate.search.lucene_version", "LUCENE_CURRENT"); extraProperties.put("hibernate.search.lucene_version", "LUCENE_CURRENT");
extraProperties.put("hibernate.search.autoregister_listeners", "true"); extraProperties.put("hibernate.search.autoregister_listeners", "true");

View File

@ -76,7 +76,8 @@ public class FhirAutoConfigurationTest {
PropertyPlaceholderAutoConfiguration.class, PropertyPlaceholderAutoConfiguration.class,
FhirAutoConfiguration.class), FhirAutoConfiguration.class),
"hapi.fhir.version:DSTU3", "hapi.fhir.version:DSTU3",
"spring.jpa.properties.hibernate.search.default.indexBase:target/lucenefiles"); "spring.jpa.properties.hibernate.search.default.indexBase:target/lucenefiles",
"spring.jpa.properties.hibernate.search.model_mapping:ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory");
assertThat(this.context.getBeansOfType(DaoConfig.class)).hasSize(1); assertThat(this.context.getBeansOfType(DaoConfig.class)).hasSize(1);
assertThat(this.context.getBeansOfType(Dstu3.class)).hasSize(1); assertThat(this.context.getBeansOfType(Dstu3.class)).hasSize(1);
} }

View File

@ -11,6 +11,8 @@ spring:
hibernate.search.default.directory_provider: filesystem hibernate.search.default.directory_provider: filesystem
hibernate.search.default.indexBase: target/lucenefiles hibernate.search.default.indexBase: target/lucenefiles
hibernate.search.lucene_version: LUCENE_CURRENT hibernate.search.lucene_version: LUCENE_CURRENT
hibernate.search.model_mapping: ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory
h2: h2:
console: console:
enabled: true enabled: true