Skip to content

Commit 72198e9

Browse files
committed
Update integration tests
1 parent b3ee28b commit 72198e9

File tree

14 files changed

+28
-28
lines changed

14 files changed

+28
-28
lines changed

samples/boot/findbyusername/src/integration-test/java/sample/FindByUsernameTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -46,7 +46,7 @@
4646
@SpringBootTest(webEnvironment = WebEnvironment.MOCK)
4747
public class FindByUsernameTests {
4848

49-
private static final String DOCKER_IMAGE = "redis:5.0.1";
49+
private static final String DOCKER_IMAGE = "redis:5.0.3";
5050

5151
@Autowired
5252
private MockMvc mockMvc;

samples/boot/redis-json/src/integration-test/java/sample/HttpRedisJsonTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -50,7 +50,7 @@
5050
@AutoConfigureMockMvc
5151
public class HttpRedisJsonTest {
5252

53-
private static final String DOCKER_IMAGE = "redis:5.0.1";
53+
private static final String DOCKER_IMAGE = "redis:5.0.3";
5454

5555
@Autowired
5656
private MockMvc mockMvc;

samples/boot/redis-json/src/integration-test/java/sample/RedisSerializerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@
3939
@SpringBootTest
4040
public class RedisSerializerTest {
4141

42-
private static final String DOCKER_IMAGE = "redis:5.0.1";
42+
private static final String DOCKER_IMAGE = "redis:5.0.3";
4343

4444
@SpringSessionRedisOperations
4545
private RedisTemplate<Object, Object> sessionRedisTemplate;

samples/boot/redis/src/integration-test/java/sample/BootTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -45,7 +45,7 @@
4545
@SpringBootTest(webEnvironment = WebEnvironment.MOCK)
4646
public class BootTests {
4747

48-
private static final String DOCKER_IMAGE = "redis:5.0.1";
48+
private static final String DOCKER_IMAGE = "redis:5.0.3";
4949

5050
@Autowired
5151
private MockMvc mockMvc;

samples/boot/webflux/src/integration-test/java/sample/AttributeTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -47,7 +47,7 @@
4747
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
4848
public class AttributeTests {
4949

50-
private static final String DOCKER_IMAGE = "redis:5.0.1";
50+
private static final String DOCKER_IMAGE = "redis:5.0.3";
5151

5252
@LocalServerPort
5353
private int port;

samples/boot/websocket/src/integration-test/java/sample/ApplicationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -52,7 +52,7 @@
5252
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
5353
public class ApplicationTests {
5454

55-
private static final String DOCKER_IMAGE = "redis:5.0.1";
55+
private static final String DOCKER_IMAGE = "redis:5.0.3";
5656

5757
@Value("${local.server.port}")
5858
private String port;

samples/javaconfig/custom-cookie/src/main/java/sample/EmbeddedRedisConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@
2828
@Profile("embedded-redis")
2929
public class EmbeddedRedisConfig {
3030

31-
private static final String DOCKER_IMAGE = "redis:5.0.1";
31+
private static final String DOCKER_IMAGE = "redis:5.0.3";
3232

3333
@Bean
3434
public GenericContainer redisContainer() {

samples/javaconfig/redis/src/main/java/sample/EmbeddedRedisConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@
2828
@Profile("embedded-redis")
2929
public class EmbeddedRedisConfig {
3030

31-
private static final String DOCKER_IMAGE = "redis:5.0.1";
31+
private static final String DOCKER_IMAGE = "redis:5.0.3";
3232

3333
@Bean
3434
public GenericContainer redisContainer() {

samples/javaconfig/rest/src/integration-test/java/rest/RestMockMvcTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
5454
@WebAppConfiguration
5555
public class RestMockMvcTests {
5656

57-
private static final String DOCKER_IMAGE = "redis:5.0.1";
57+
private static final String DOCKER_IMAGE = "redis:5.0.3";
5858

5959
@Autowired
6060
private SessionRepositoryFilter<? extends Session> sessionRepositoryFilter;

samples/javaconfig/rest/src/main/java/sample/EmbeddedRedisConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@
2828
@Profile("embedded-redis")
2929
public class EmbeddedRedisConfig {
3030

31-
private static final String DOCKER_IMAGE = "redis:5.0.1";
31+
private static final String DOCKER_IMAGE = "redis:5.0.3";
3232

3333
@Bean
3434
public GenericContainer redisContainer() {

samples/javaconfig/security/src/main/java/sample/EmbeddedRedisConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@
2828
@Profile("embedded-redis")
2929
public class EmbeddedRedisConfig {
3030

31-
private static final String DOCKER_IMAGE = "redis:5.0.1";
31+
private static final String DOCKER_IMAGE = "redis:5.0.3";
3232

3333
@Bean
3434
public GenericContainer redisContainer() {

samples/xml/redis/src/main/java/sample/EmbeddedRedisConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@
2828
@Profile("embedded-redis")
2929
public class EmbeddedRedisConfig {
3030

31-
private static final String DOCKER_IMAGE = "redis:5.0.1";
31+
private static final String DOCKER_IMAGE = "redis:5.0.3";
3232

3333
@Bean
3434
public GenericContainer redisContainer() {

spring-session-data-redis/src/integration-test/java/org/springframework/session/data/redis/AbstractRedisITests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -29,7 +29,7 @@
2929
*/
3030
public abstract class AbstractRedisITests {
3131

32-
private static final String DOCKER_IMAGE = "redis:5.0.1";
32+
private static final String DOCKER_IMAGE = "redis:5.0.3";
3333

3434
protected static class BaseConfig {
3535

spring-session-jdbc/src/integration-test/java/org/springframework/session/jdbc/DatabaseContainers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2018 the original author or authors.
2+
* Copyright 2014-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -88,7 +88,7 @@ protected void configure() {
8888
private static class MariaDb10Container extends MariaDBContainer<MariaDb10Container> {
8989

9090
MariaDb10Container() {
91-
super("mariadb:10.3.11");
91+
super("mariadb:10.3.12");
9292
}
9393

9494
@Override

0 commit comments

Comments
 (0)