Skip to content

Commit b23de10

Browse files
committed
test: upgrade mcp-everything-server Docker image from v2 to v3
Updates all test files to use the latest version of the mcp-everything-server Docker image (v3) for integration testing. Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
1 parent 4d779e1 commit b23de10

14 files changed

+14
-14
lines changed

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/WebClientStreamableHttpAsyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class WebClientStreamableHttpAsyncClientTests extends AbstractMcpAsyncCli
2121

2222
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2323
@SuppressWarnings("resource")
24-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
24+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
2525
.withCommand("node dist/index.js streamableHttp")
2626
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
2727
.withExposedPorts(3001)

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/WebClientStreamableHttpSyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class WebClientStreamableHttpSyncClientTests extends AbstractMcpSyncClien
2121

2222
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2323
@SuppressWarnings("resource")
24-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
24+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
2525
.withCommand("node dist/index.js streamableHttp")
2626
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
2727
.withExposedPorts(3001)

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/WebFluxSseMcpAsyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class WebFluxSseMcpAsyncClientTests extends AbstractMcpAsyncClientTests {
2828

2929
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
3030
@SuppressWarnings("resource")
31-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
31+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
3232
.withCommand("node dist/index.js sse")
3333
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
3434
.withExposedPorts(3001)

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/WebFluxSseMcpSyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class WebFluxSseMcpSyncClientTests extends AbstractMcpSyncClientTests {
2828

2929
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
3030
@SuppressWarnings("resource")
31-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
31+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
3232
.withCommand("node dist/index.js sse")
3333
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
3434
.withExposedPorts(3001)

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/transport/WebFluxSseClientTransportTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class WebFluxSseClientTransportTests {
4444
static String host = "http://localhost:3001";
4545

4646
@SuppressWarnings("resource")
47-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
47+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
4848
.withCommand("node dist/index.js sse")
4949
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
5050
.withExposedPorts(3001)

mcp-test/src/main/java/io/modelcontextprotocol/client/AbstractMcpAsyncClientResiliencyTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public abstract class AbstractMcpAsyncClientResiliencyTests {
4848

4949
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
5050
@SuppressWarnings("resource")
51-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
51+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
5252
.withCommand("node dist/index.js streamableHttp")
5353
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
5454
.withNetwork(network)

mcp/src/test/java/io/modelcontextprotocol/client/AbstractMcpAsyncClientResiliencyTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public abstract class AbstractMcpAsyncClientResiliencyTests {
4949

5050
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
5151
@SuppressWarnings("resource")
52-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
52+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
5353
.withCommand("node dist/index.js streamableHttp")
5454
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
5555
.withNetwork(network)

mcp/src/test/java/io/modelcontextprotocol/client/HttpClientStreamableHttpAsyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class HttpClientStreamableHttpAsyncClientTests extends AbstractMcpAsyncCl
2020

2121
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2222
@SuppressWarnings("resource")
23-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
23+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
2424
.withCommand("node dist/index.js streamableHttp")
2525
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
2626
.withExposedPorts(3001)

mcp/src/test/java/io/modelcontextprotocol/client/HttpClientStreamableHttpSyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class HttpClientStreamableHttpSyncClientTests extends AbstractMcpSyncClie
3232

3333
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
3434
@SuppressWarnings("resource")
35-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
35+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
3636
.withCommand("node dist/index.js streamableHttp")
3737
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
3838
.withExposedPorts(3001)

mcp/src/test/java/io/modelcontextprotocol/client/HttpSseMcpAsyncClientLostConnectionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class HttpSseMcpAsyncClientLostConnectionTests {
3838

3939
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
4040
@SuppressWarnings("resource")
41-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
41+
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v3")
4242
.withCommand("node dist/index.js sse")
4343
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
4444
.withNetwork(network)

0 commit comments

Comments
 (0)