Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
5a3b881e
Commit
5a3b881e
authored
Oct 31, 2016
by
Phillip Webb
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7217 from gdpotter/master
* pr/7217: Respect 'primary' flag when replacing databases
parents
dbf6d3d4
39d5881b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
103 additions
and
6 deletions
+103
-6
TestDatabaseAutoConfiguration.java
.../autoconfigure/orm/jpa/TestDatabaseAutoConfiguration.java
+11
-6
AutoConfigureTestDatabaseWithMultipleDatasourcesIntegrationTests.java
...eTestDatabaseWithMultipleDatasourcesIntegrationTests.java
+92
-0
No files found.
spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/orm/jpa/TestDatabaseAutoConfiguration.java
View file @
5a3b881e
...
@@ -101,15 +101,20 @@ public class TestDatabaseAutoConfiguration {
...
@@ -101,15 +101,20 @@ public class TestDatabaseAutoConfiguration {
ConfigurableListableBeanFactory
beanFactory
)
{
ConfigurableListableBeanFactory
beanFactory
)
{
BeanDefinitionHolder
holder
=
getDataSourceBeanDefinition
(
beanFactory
);
BeanDefinitionHolder
holder
=
getDataSourceBeanDefinition
(
beanFactory
);
if
(
holder
!=
null
)
{
if
(
holder
!=
null
)
{
logger
.
info
(
"Replacing '"
+
holder
.
getBeanName
()
String
beanName
=
holder
.
getBeanName
();
+
"' DataSource bean with embedded version"
);
boolean
primary
=
holder
.
getBeanDefinition
().
isPrimary
();
registry
.
registerBeanDefinition
(
holder
.
getBeanName
(),
logger
.
info
(
"Replacing '"
+
beanName
+
"' DataSource bean with "
createEmbeddedBeanDefinition
());
+
(
primary
?
"primary "
:
""
)
+
"embedded version"
);
registry
.
registerBeanDefinition
(
beanName
,
createEmbeddedBeanDefinition
(
primary
));
}
}
}
}
private
BeanDefinition
createEmbeddedBeanDefinition
()
{
private
BeanDefinition
createEmbeddedBeanDefinition
(
boolean
primary
)
{
return
new
RootBeanDefinition
(
EmbeddedDataSourceFactoryBean
.
class
);
BeanDefinition
beanDefinition
=
new
RootBeanDefinition
(
EmbeddedDataSourceFactoryBean
.
class
);
beanDefinition
.
setPrimary
(
primary
);
return
beanDefinition
;
}
}
private
BeanDefinitionHolder
getDataSourceBeanDefinition
(
private
BeanDefinitionHolder
getDataSourceBeanDefinition
(
...
...
spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/AutoConfigureTestDatabaseWithMultipleDatasourcesIntegrationTests.java
0 → 100644
View file @
5a3b881e
/*
* Copyright 2012-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
test
.
autoconfigure
.
orm
.
jpa
;
import
javax.sql.DataSource
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.autoconfigure.EnableAutoConfiguration
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder
;
import
org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType
;
import
org.springframework.test.context.junit4.SpringRunner
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Integration tests for {@link AutoConfigureTestDatabase} when there are multiple
* datasources.
*
* @author Greg Potter
*/
@RunWith
(
SpringRunner
.
class
)
@DataJpaTest
@AutoConfigureTestDatabase
public
class
AutoConfigureTestDatabaseWithMultipleDatasourcesIntegrationTests
{
@Autowired
private
TestEntityManager
entities
;
@Autowired
private
ExampleRepository
repository
;
@Autowired
private
DataSource
dataSource
;
@Test
public
void
testRepository
()
throws
Exception
{
this
.
entities
.
persist
(
new
ExampleEntity
(
"boot"
,
"124"
));
this
.
entities
.
flush
();
ExampleEntity
found
=
this
.
repository
.
findByReference
(
"124"
);
assertThat
(
found
.
getName
()).
isEqualTo
(
"boot"
);
}
@Test
public
void
replacesDefinedDataSourceWithExplicit
()
throws
Exception
{
// Look that the datasource is replaced with an H2 DB.
String
product
=
this
.
dataSource
.
getConnection
().
getMetaData
()
.
getDatabaseProductName
();
assertThat
(
product
).
startsWith
(
"H2"
);
}
@Configuration
@EnableAutoConfiguration
static
class
Config
{
@Bean
@Primary
public
DataSource
dataSource
()
{
EmbeddedDatabaseBuilder
builder
=
new
EmbeddedDatabaseBuilder
()
.
setType
(
EmbeddedDatabaseType
.
HSQL
);
return
builder
.
build
();
}
@Bean
public
DataSource
secondaryDataSource
()
{
EmbeddedDatabaseBuilder
builder
=
new
EmbeddedDatabaseBuilder
()
.
setType
(
EmbeddedDatabaseType
.
HSQL
);
return
builder
.
build
();
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment