feat: Add WireMock server for MCI testing and fix HttpEimsSender HTTP/2 compatibility issue

This commit is contained in:
jade
2026-07-08 14:19:23 +09:00
parent 0fd943e0ed
commit a5d547b3f6
5 changed files with 66 additions and 4 deletions

View File

@@ -40,6 +40,9 @@ services:
- SPRING_DATA_REDIS_PORT=6379
- AXHUB_GATEWAY_URL=http://gateway:8081
- AXHUB_TOOL_URL=http://tool-sms:8082
- GLOW_COMMUNICATION_MCI_HOST=http://mci-mock
- GLOW_COMMUNICATION_EXTMCI_HOST=http://mci-mock
- GLOW_COMMUNICATION_EAI_HOST=tcp://mci-mock
tool-email:
build:
@@ -55,6 +58,9 @@ services:
- SPRING_DATA_REDIS_PORT=6379
- AXHUB_GATEWAY_URL=http://gateway:8081
- AXHUB_TOOL_URL=http://tool-email:8083
- GLOW_COMMUNICATION_MCI_HOST=http://mci-mock
- GLOW_COMMUNICATION_EXTMCI_HOST=http://mci-mock
- GLOW_COMMUNICATION_EAI_HOST=tcp://mci-mock
tool-other:
build:
@@ -70,3 +76,14 @@ services:
- SPRING_DATA_REDIS_PORT=6379
- AXHUB_GATEWAY_URL=http://gateway:8081
- AXHUB_TOOL_URL=http://tool-other:8084
- GLOW_COMMUNICATION_MCI_HOST=http://mci-mock
- GLOW_COMMUNICATION_EXTMCI_HOST=http://mci-mock
- GLOW_COMMUNICATION_EAI_HOST=tcp://mci-mock
mci-mock:
image: wiremock/wiremock:latest
ports:
- "8080:8080"
volumes:
- ./mci-mock/mappings:/home/wiremock/mappings
command: ["--port", "8080", "--verbose"]