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
7216a8fa
Commit
7216a8fa
authored
Dec 13, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
See gh-11341
parent
bc5863df
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
3 deletions
+68
-3
AutoConfigureCache.java
...work/boot/test/autoconfigure/core/AutoConfigureCache.java
+4
-3
AutoConfigureCacheWithExistingCacheManagerIntegrationTests.java
...nfigureCacheWithExistingCacheManagerIntegrationTests.java
+64
-0
No files found.
spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/core/AutoConfigureCache.java
View file @
7216a8fa
...
@@ -26,12 +26,13 @@ import java.lang.annotation.Target;
...
@@ -26,12 +26,13 @@ import java.lang.annotation.Target;
import
org.springframework.boot.autoconfigure.ImportAutoConfiguration
;
import
org.springframework.boot.autoconfigure.ImportAutoConfiguration
;
import
org.springframework.boot.autoconfigure.cache.CacheType
;
import
org.springframework.boot.autoconfigure.cache.CacheType
;
import
org.springframework.boot.test.autoconfigure.properties.PropertyMapping
;
import
org.springframework.boot.test.autoconfigure.properties.PropertyMapping
;
import
org.springframework.cache.CacheManager
;
import
org.springframework.cache.support.NoOpCacheManager
;
import
org.springframework.cache.support.NoOpCacheManager
;
/**
/**
* Annotation that can be applied to a test class to
enable and configure
* Annotation that can be applied to a test class to
configure a test
*
auto-configuration of caching. By default this annotation installs a
*
{@link CacheManager} if none has been defined yet. By default this
* {@link NoOpCacheManager}.
*
annotation installs a
{@link NoOpCacheManager}.
*
*
* @author Phillip Webb
* @author Phillip Webb
* @since 1.4.0
* @since 1.4.0
...
...
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/core/AutoConfigureCacheWithExistingCacheManagerIntegrationTests.java
0 → 100644
View file @
7216a8fa
/*
* Copyright 2012-2017 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
.
core
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.cache.CacheManager
;
import
org.springframework.cache.annotation.EnableCaching
;
import
org.springframework.cache.concurrent.ConcurrentMapCacheManager
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.test.context.junit4.SpringRunner
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Tests for {@link AutoConfigureCache} with an existing {@link CacheManager}.
*
* @author Stephane Nicoll
*/
@RunWith
(
SpringRunner
.
class
)
@SpringBootTest
@AutoConfigureCache
public
class
AutoConfigureCacheWithExistingCacheManagerIntegrationTests
{
@Autowired
private
ApplicationContext
applicationContext
;
@Test
public
void
shouldNotReplaceExistingCacheManager
()
{
CacheManager
bean
=
this
.
applicationContext
.
getBean
(
CacheManager
.
class
);
assertThat
(
bean
).
isInstanceOf
(
ConcurrentMapCacheManager
.
class
);
}
@Configuration
@EnableCaching
public
static
class
Config
{
@Bean
public
ConcurrentMapCacheManager
existingCacheManager
()
{
return
new
ConcurrentMapCacheManager
();
}
}
}
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