|
24 | 24 |
|
25 | 25 | import java.time.Duration;
|
26 | 26 | import java.time.Instant;
|
27 |
| -import java.util.Collection; |
28 |
| -import java.util.Collections; |
29 |
| -import java.util.HashMap; |
30 |
| -import java.util.Map; |
| 27 | +import java.util.*; |
31 | 28 | import java.util.function.Function;
|
32 | 29 |
|
33 | 30 | import org.junit.jupiter.api.BeforeEach;
|
@@ -544,4 +541,24 @@ void listenToPatternLaterShouldReceiveChannelMessagesCorrectly() {
|
544 | 541 | .thenCancel() //
|
545 | 542 | .verify(Duration.ofSeconds(3));
|
546 | 543 | }
|
| 544 | + |
| 545 | + @ParameterizedRedisTest |
| 546 | + void countExistingKeysIfValidKeyExists() { |
| 547 | + |
| 548 | + K key = keyFactory.instance(); |
| 549 | + K key2 = keyFactory.instance(); |
| 550 | + K key3 = keyFactory.instance(); |
| 551 | + |
| 552 | + redisTemplate.opsForValue().set(key, valueFactory.instance()).as(StepVerifier::create).expectNext(true).verifyComplete(); |
| 553 | + redisTemplate.opsForValue().set(key2, valueFactory.instance()).as(StepVerifier::create).expectNext(true).verifyComplete(); |
| 554 | + redisTemplate.opsForValue().set(key3, valueFactory.instance()).as(StepVerifier::create).expectNext(true).verifyComplete(); |
| 555 | + |
| 556 | + redisTemplate.countExistingKeys(Arrays.asList(key, key2, key3)).as(StepVerifier::create).expectNext(3L).verifyComplete(); |
| 557 | + } |
| 558 | + |
| 559 | + @ParameterizedRedisTest |
| 560 | + void countExistingKeysIfNotValidKeyExists() { |
| 561 | + K key = keyFactory.instance(); |
| 562 | + redisTemplate.countExistingKeys(List.of(key)).as(StepVerifier::create).expectNext(0L).verifyComplete(); |
| 563 | + } |
547 | 564 | }
|
0 commit comments