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
6df3a829
Commit
6df3a829
authored
Apr 30, 2021
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.4.x'
Closes gh-26328
parents
367fd64c
01d2c70e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
77 additions
and
0 deletions
+77
-0
spring.factories
...utoconfigure/src/main/resources/META-INF/spring.factories
+1
-0
DataRedisTestReactiveIntegrationTests.java
...ure/data/redis/DataRedisTestReactiveIntegrationTests.java
+76
-0
No files found.
spring-boot-project/spring-boot-test-autoconfigure/src/main/resources/META-INF/spring.factories
View file @
6df3a829
...
@@ -73,6 +73,7 @@ org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration
...
@@ -73,6 +73,7 @@ org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration
# AutoConfigureDataRedis auto-configuration imports
# AutoConfigureDataRedis auto-configuration imports
org.springframework.boot.test.autoconfigure.data.redis.AutoConfigureDataRedis=\
org.springframework.boot.test.autoconfigure.data.redis.AutoConfigureDataRedis=\
org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration,\
org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration,\
org.springframework.boot.autoconfigure.data.redis.RedisReactiveAutoConfiguration,\
org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration
org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration
# AutoConfigureJdbc auto-configuration imports
# AutoConfigureJdbc auto-configuration imports
...
...
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/data/redis/DataRedisTestReactiveIntegrationTests.java
0 → 100644
View file @
6df3a829
/*
* Copyright 2012-2021 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
.
data
.
redis
;
import
java.util.UUID
;
import
org.junit.jupiter.api.Test
;
import
org.testcontainers.junit.jupiter.Container
;
import
org.testcontainers.junit.jupiter.Testcontainers
;
import
reactor.test.StepVerifier
;
import
org.springframework.beans.factory.NoSuchBeanDefinitionException
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.testsupport.testcontainers.RedisContainer
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.data.redis.core.ReactiveRedisOperations
;
import
org.springframework.test.context.DynamicPropertyRegistry
;
import
org.springframework.test.context.DynamicPropertySource
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThatExceptionOfType
;
/**
* Integration test for {@link DataRedisTest @DataRedisTest} using reactive operations.
*
* @author Stephane Nicoll
*/
@Testcontainers
(
disabledWithoutDocker
=
true
)
@DataRedisTest
class
DataRedisTestReactiveIntegrationTests
{
@Container
static
RedisContainer
redis
=
new
RedisContainer
();
@Autowired
private
ReactiveRedisOperations
<
Object
,
Object
>
operations
;
@Autowired
private
ApplicationContext
applicationContext
;
@DynamicPropertySource
static
void
redisProperties
(
DynamicPropertyRegistry
registry
)
{
registry
.
add
(
"spring.redis.host"
,
redis:
:
getHost
);
registry
.
add
(
"spring.redis.port"
,
redis:
:
getFirstMappedPort
);
}
@Test
void
testRepository
()
{
String
id
=
UUID
.
randomUUID
().
toString
();
StepVerifier
.
create
(
this
.
operations
.
opsForValue
().
set
(
id
,
"Hello World"
)).
expectNext
(
Boolean
.
TRUE
)
.
verifyComplete
();
StepVerifier
.
create
(
this
.
operations
.
opsForValue
().
get
(
id
)).
expectNext
(
"Hello World"
).
verifyComplete
();
StepVerifier
.
create
(
this
.
operations
.
execute
((
action
)
->
action
.
serverCommands
().
flushDb
())).
expectNext
(
"OK"
)
.
verifyComplete
();
}
@Test
void
didNotInjectExampleService
()
{
assertThatExceptionOfType
(
NoSuchBeanDefinitionException
.
class
)
.
isThrownBy
(()
->
this
.
applicationContext
.
getBean
(
ExampleService
.
class
));
}
}
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