From 4ecbcc77c45abef3c23ddf9cce92a399016a66da Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 16:55:47 +0000 Subject: [PATCH 1/4] forge: open work branch for BAIS-SOURCE-1783702539-attempt-1 --- .forge/BAIS-SOURCE-1783702539-attempt-1.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .forge/BAIS-SOURCE-1783702539-attempt-1.md diff --git a/.forge/BAIS-SOURCE-1783702539-attempt-1.md b/.forge/BAIS-SOURCE-1783702539-attempt-1.md new file mode 100644 index 0000000..b15de76 --- /dev/null +++ b/.forge/BAIS-SOURCE-1783702539-attempt-1.md @@ -0,0 +1,3 @@ +# BAIS-SOURCE-1783702539-attempt-1 + +Forge 이슈 작업 브랜치 `forge/BAIS-SOURCE-1783702539-attempt-1`. From 1d1a558cfc5df5c7d649e1ade90829bd874f561c Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 16:55:59 +0000 Subject: [PATCH 2/4] =?UTF-8?q?PaymentService=20=EC=8A=B9=EC=9D=B8=20?= =?UTF-8?q?=EA=B7=9C=EC=B9=99=20=EA=B5=AC=ED=98=84=20(BAIS-SOURCE-17837025?= =?UTF-8?q?39)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/example/baisgate/PaymentService.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/main/java/com/example/baisgate/PaymentService.java diff --git a/src/main/java/com/example/baisgate/PaymentService.java b/src/main/java/com/example/baisgate/PaymentService.java new file mode 100644 index 0000000..489d52a --- /dev/null +++ b/src/main/java/com/example/baisgate/PaymentService.java @@ -0,0 +1,10 @@ +package com.example.baisgate; + +public class PaymentService { + public String approve(String transactionId) { + if (transactionId == null || transactionId.trim().isEmpty()) { + throw new IllegalArgumentException("Transaction ID cannot be blank"); + } + return "APPROVED:" + transactionId; + } +} \ No newline at end of file From af5ee7ca80de0def6182804dc9d7603ea4d74294 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 16:56:00 +0000 Subject: [PATCH 3/4] =?UTF-8?q?PaymentService=20=EC=8A=B9=EC=9D=B8=20?= =?UTF-8?q?=EA=B7=9C=EC=B9=99=20=EA=B5=AC=ED=98=84=20(BAIS-SOURCE-17837025?= =?UTF-8?q?39)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../example/baisgate/PaymentServiceTest.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/test/java/com/example/baisgate/PaymentServiceTest.java diff --git a/src/test/java/com/example/baisgate/PaymentServiceTest.java b/src/test/java/com/example/baisgate/PaymentServiceTest.java new file mode 100644 index 0000000..1caa7a9 --- /dev/null +++ b/src/test/java/com/example/baisgate/PaymentServiceTest.java @@ -0,0 +1,32 @@ +package com.example.baisgate; + +import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.*; + +class PaymentServiceTest { + + @Test + void testApprove_WithValidTransactionId_ReturnsApproved() { + PaymentService paymentService = new PaymentService(); + String result = paymentService.approve("12345"); + assertEquals("APPROVED:12345", result); + } + + @Test + void testApprove_WithBlankTransactionId_ThrowsIllegalArgumentException() { + PaymentService paymentService = new PaymentService(); + Exception exception = assertThrows(IllegalArgumentException.class, () -> { + paymentService.approve(""); + }); + assertEquals("Transaction ID cannot be blank", exception.getMessage()); + } + + @Test + void testApprove_WithNullTransactionId_ThrowsIllegalArgumentException() { + PaymentService paymentService = new PaymentService(); + Exception exception = assertThrows(IllegalArgumentException.class, () -> { + paymentService.approve(null); + }); + assertEquals("Transaction ID cannot be blank", exception.getMessage()); + } +} \ No newline at end of file From c8a931750f21b04fd4d10805eace0d4efc058679 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 16:56:02 +0000 Subject: [PATCH 4/4] =?UTF-8?q?PaymentService=20=EC=8A=B9=EC=9D=B8=20?= =?UTF-8?q?=EA=B7=9C=EC=B9=99=20=EA=B5=AC=ED=98=84=20(BAIS-SOURCE-17837025?= =?UTF-8?q?39)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index 664b084..38f992a 100644 --- a/pom.xml +++ b/pom.xml @@ -1,17 +1,15 @@ - 4.0.0 - com.example bais-gate-e2e - 1.0.0 + 1.0-SNAPSHOT jar org.springframework.boot spring-boot-starter-parent - 2.7.5 + 3.2.0 @@ -22,7 +20,7 @@ org.springframework.boot - spring-boot-starter-web + spring-boot-starter org.springframework.boot @@ -39,4 +37,4 @@ - \ No newline at end of file +