diff --git a/dap-tool-core/src/test/java/io/shinhanlife/dap/biz/mcp/tool/annotation/McpFunctionAnnotationsTest.java b/dap-tool-core/src/test/java/io/shinhanlife/dap/biz/mcp/tool/annotation/McpFunctionAnnotationsTest.java deleted file mode 100644 index dccaa599..00000000 --- a/dap-tool-core/src/test/java/io/shinhanlife/dap/biz/mcp/tool/annotation/McpFunctionAnnotationsTest.java +++ /dev/null @@ -1,27 +0,0 @@ -package io.shinhanlife.dap.biz.mcp.tool.annotation; - -import static org.junit.jupiter.api.Assertions.assertFalse; - -import java.lang.reflect.Method; - -import org.junit.jupiter.api.Test; - -class McpFunctionAnnotationsTest { - - @Test - void usesConservativeDefaultsForMcpBehaviorHints() throws NoSuchMethodException { - Method method = SampleTool.class.getDeclaredMethod("execute"); - McpFunction annotation = method.getAnnotation(McpFunction.class); - - assertFalse(annotation.readOnlyHint()); - assertFalse(annotation.destructiveHint()); - assertFalse(annotation.idempotentHint()); - assertFalse(annotation.openWorldHint()); - } - - static class SampleTool { - @McpFunction(displayName = "sample", name = "sample", description = "sample") - void execute() { - } - } -} diff --git a/dap-tool-core/src/test/java/io/shinhanlife/dap/mcc/sample/converter/SampleLegacyConverterTest.java b/dap-tool-core/src/test/java/io/shinhanlife/dap/mcc/sample/converter/SampleLegacyConverterTest.java deleted file mode 100644 index 79d589a4..00000000 --- a/dap-tool-core/src/test/java/io/shinhanlife/dap/mcc/sample/converter/SampleLegacyConverterTest.java +++ /dev/null @@ -1,55 +0,0 @@ -package io.shinhanlife.dap.mcc.sample.converter; - - -/** - * @package io.shinhanlife.dap.mcc.sample.converter - * @className SampleLegacyConverterTest - * @description AX HUB 시스템 처리 클래스 - * @author 0986406 - * @create 2026.09.01 - *
- * ---------- 개정이력 ---------- - * 수정일 수정자 수정내용 - * ---------- -------- --------------------------- - * 2026.09.01 0986406 최초생성 - * - *- */ -import io.shinhanlife.dap.mcc.sample.dto.SampleAiReqDto; -import io.shinhanlife.dap.mcc.sample.dto.SampleLegacyReqDto; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertNotNull; - -public class SampleLegacyConverterTest { - - // MapStruct가 자동 생성한 구현체를 가져와서 테스트합니다. (IDE 에러 방지를 위해 INSTANCE 참조) - private final SampleLegacyConverter sampleLegacyConverter = SampleLegacyConverter.INSTANCE; - - @Test - @DisplayName("AI 파라미터 DTO가 MCI DTO로 정확히 매핑되는지 테스트") - public void testAiToMciMapping() { - // given: AI Agent가 준 깔끔한 형태의 파라미터 생성 - SampleAiReqDto aiDto = SampleAiReqDto.builder() - .userId("HONG_GILDONG") - .actionType("SOATM0100R") - .extraInfo("휴가신청내역 조회") - .build(); - - // when: MapStruct 자동 생성 매퍼를 통해 1줄로 변환 - SampleLegacyReqDto mciDto = sampleLegacyConverter.toLegacyRequest(aiDto); - - // then: 콘솔에 결과 출력 및 값 검증 - System.out.println("====== MapStruct 변환 테스트 결과 ======"); - System.out.println(" [변환 전] AI DTO : " + aiDto); - System.out.println(" [변환 후] Legacy DTO: " + mciDto); - System.out.println("==============================================="); - - assertNotNull(mciDto, "변환된 객체는 null이 아니어야 합니다."); - assertEquals("HONG_GILDONG", mciDto.getCustomerId(), "userId -> customerId 매핑 성공"); - assertEquals("SOATM0100R", mciDto.getInterfaceId(), "actionType -> interfaceId 매핑 성공"); - assertEquals("휴가신청내역 조회", mciDto.getRequestDetails(), "extraInfo -> requestDetails 매핑 성공"); - } -}