From ecb8c2a093604685caf21da098587d057605fab3 Mon Sep 17 00:00:00 2001 From: BGuga Date: Thu, 16 May 2024 15:42:07 +0900 Subject: [PATCH] =?UTF-8?q?test:=20=EB=B6=88=ED=95=84=EC=9A=94=20=ED=85=8C?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppleOpenIdPublicKeyLocatorTest.java | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 backend/src/test/java/com/festago/auth/infrastructure/openid/AppleOpenIdPublicKeyLocatorTest.java diff --git a/backend/src/test/java/com/festago/auth/infrastructure/openid/AppleOpenIdPublicKeyLocatorTest.java b/backend/src/test/java/com/festago/auth/infrastructure/openid/AppleOpenIdPublicKeyLocatorTest.java deleted file mode 100644 index 5eb9ea0ca..000000000 --- a/backend/src/test/java/com/festago/auth/infrastructure/openid/AppleOpenIdPublicKeyLocatorTest.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.festago.auth.infrastructure.openid; - -import static org.assertj.core.api.Assertions.assertThat; - -import com.festago.support.ApplicationIntegrationTest; -import org.junit.jupiter.api.DisplayNameGeneration; -import org.junit.jupiter.api.DisplayNameGenerator.ReplaceUnderscores; -import org.junit.jupiter.api.Test; -import org.springframework.beans.factory.annotation.Autowired; - -@DisplayNameGeneration(ReplaceUnderscores.class) -@SuppressWarnings("NonAsciiCharacters") -class AppleOpenIdPublicKeyLocatorTest extends ApplicationIntegrationTest { - - @Autowired - AppleOpenIdPublicKeyLocator appleOpenIdPublicKeyLocator; - - @Autowired - KakaoOpenIdPublicKeyLocator kakaoOpenIdPublicKeyLocator; - - @Test - void 소셜별_Locator_들은_캐싱을_공유하지_않는다() { - - // given & when & then - assertThat(appleOpenIdPublicKeyLocator) - .usingRecursiveComparison() - .comparingOnlyFields("cachedOpenIdKeyProvider") - .isNotEqualTo(kakaoOpenIdPublicKeyLocator); - } -}