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
81f672ea
Commit
81f672ea
authored
Nov 04, 2020
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.2.x' into 2.3.x
Closes gh-24023
parents
7c209478
28ccf54b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
0 deletions
+56
-0
TestDatabaseAutoConfiguration.java
...est/autoconfigure/jdbc/TestDatabaseAutoConfiguration.java
+8
-0
DataJpaTestSchemaCredentialsIntegrationTests.java
...orm/jpa/DataJpaTestSchemaCredentialsIntegrationTests.java
+48
-0
No files found.
spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/jdbc/TestDatabaseAutoConfiguration.java
View file @
81f672ea
...
...
@@ -16,6 +16,8 @@
package
org
.
springframework
.
boot
.
test
.
autoconfigure
.
jdbc
;
import
java.util.Collections
;
import
javax.sql.DataSource
;
import
org.apache.commons.logging.Log
;
...
...
@@ -40,7 +42,9 @@ import org.springframework.context.annotation.Bean;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.core.Ordered
;
import
org.springframework.core.annotation.Order
;
import
org.springframework.core.env.ConfigurableEnvironment
;
import
org.springframework.core.env.Environment
;
import
org.springframework.core.env.MapPropertySource
;
import
org.springframework.jdbc.datasource.embedded.EmbeddedDatabase
;
import
org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder
;
import
org.springframework.util.Assert
;
...
...
@@ -168,6 +172,10 @@ public class TestDatabaseAutoConfiguration {
EmbeddedDataSourceFactory
(
Environment
environment
)
{
this
.
environment
=
environment
;
if
(
environment
instanceof
ConfigurableEnvironment
)
{
((
ConfigurableEnvironment
)
environment
).
getPropertySources
().
addFirst
(
new
MapPropertySource
(
"testDatabase"
,
Collections
.
singletonMap
(
"spring.datasource.schema-username"
,
""
)));
}
}
EmbeddedDatabase
getEmbeddedDatabase
()
{
...
...
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/DataJpaTestSchemaCredentialsIntegrationTests.java
0 → 100644
View file @
81f672ea
/*
* Copyright 2012-2020 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
*
* https://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.jupiter.api.Test
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.test.context.TestPropertySource
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Integration tests for {@link DataJpaTest @DataJpaTest} with schema credentials that
* should be ignored to allow the auto-configured test database to be used.
*
* @author Andy Wilkinson
*/
@DataJpaTest
@TestPropertySource
(
properties
=
{
"spring.datasource.schema-username=alice"
,
"spring.datasource.schema-password=secret"
})
class
DataJpaTestSchemaCredentialsIntegrationTests
{
@Autowired
private
DataSource
dataSource
;
@Test
void
replacesDefinedDataSourceWithEmbeddedDefault
()
throws
Exception
{
String
product
=
this
.
dataSource
.
getConnection
().
getMetaData
().
getDatabaseProductName
();
assertThat
(
product
).
isEqualTo
(
"H2"
);
}
}
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