5 changed files with 162 additions and 32 deletions
@ -0,0 +1,11 @@
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<infinispan> |
||||
|
||||
<!-- ************************************** --> |
||||
<!-- Corresponds to @Cacheable("cache-name") --> |
||||
<!-- ************************************** --> |
||||
<cache-container default-cache="countries"> |
||||
<local-cache name="countries"/> |
||||
</cache-container> |
||||
|
||||
</infinispan> |
||||
@ -0,0 +1,62 @@
@@ -0,0 +1,62 @@
|
||||
/* |
||||
* Copyright 2012-2022 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 smoketest.cache; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
import org.testcontainers.junit.jupiter.Container; |
||||
import org.testcontainers.junit.jupiter.Testcontainers; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.test.context.SpringBootTest; |
||||
import org.springframework.boot.testsupport.testcontainers.RedisContainer; |
||||
import org.springframework.cache.Cache; |
||||
import org.springframework.cache.CacheManager; |
||||
import org.springframework.test.context.DynamicPropertyRegistry; |
||||
import org.springframework.test.context.DynamicPropertySource; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
@SpringBootTest |
||||
@Testcontainers(disabledWithoutDocker = true) |
||||
class SampleCacheApplicationRedisTests { |
||||
|
||||
@Container |
||||
private static final RedisContainer redis = new RedisContainer(); |
||||
|
||||
@Autowired |
||||
private CacheManager cacheManager; |
||||
|
||||
@Autowired |
||||
private CountryRepository countryRepository; |
||||
|
||||
@DynamicPropertySource |
||||
static void redisProperties(DynamicPropertyRegistry properties) { |
||||
properties.add("spring.redis.url", |
||||
() -> "redis://" + redis.getContainerIpAddress() + ":" + redis.getFirstMappedPort()); |
||||
} |
||||
|
||||
@Test |
||||
void validateCache() { |
||||
Cache countries = this.cacheManager.getCache("countries"); |
||||
assertThat(countries).isNotNull(); |
||||
countries.clear(); // Simple test assuming the cache is empty
|
||||
assertThat(countries.get("BE")).isNull(); |
||||
Country be = this.countryRepository.findByCode("BE"); |
||||
assertThat((Country) countries.get("BE").get()).isEqualTo(be); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue