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

@@ -0,0 +1,21 @@
{
"request": {
"method": "POST",
"urlPath": "/extmci"
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json;charset=UTF-8"
},
"jsonBody": {
"resCode": "0000",
"resMsg": "정상 처리되었습니다.",
"data": {
"status": "SUCCESS",
"mock": true,
"detail": "가짜 응답 서버(extmci)에서 내려주는 샘플 데이터입니다."
}
}
}
}

View File

@@ -0,0 +1,21 @@
{
"request": {
"method": "POST",
"urlPath": "/mciSend"
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json;charset=UTF-8"
},
"jsonBody": {
"resCode": "0000",
"resMsg": "정상 처리되었습니다.",
"data": {
"status": "SUCCESS",
"mock": true,
"detail": "가짜 응답 서버에서 내려주는 샘플 데이터입니다."
}
}
}
}