diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/v2/api/creator/channel/community/adapter/in/web/CreatorChannelCommunityController.kt b/src/main/kotlin/kr/co/vividnext/sodalive/v2/api/creator/channel/community/adapter/in/web/CreatorChannelCommunityController.kt new file mode 100644 index 00000000..1f1320f7 --- /dev/null +++ b/src/main/kotlin/kr/co/vividnext/sodalive/v2/api/creator/channel/community/adapter/in/web/CreatorChannelCommunityController.kt @@ -0,0 +1,39 @@ +package kr.co.vividnext.sodalive.v2.api.creator.channel.community.adapter.`in`.web + +import kr.co.vividnext.sodalive.common.ApiResponse +import kr.co.vividnext.sodalive.common.SodaException +import kr.co.vividnext.sodalive.member.Member +import kr.co.vividnext.sodalive.v2.api.creator.channel.community.application.CreatorChannelCommunityFacade +import org.springframework.security.core.annotation.AuthenticationPrincipal +import org.springframework.web.bind.annotation.GetMapping +import org.springframework.web.bind.annotation.PathVariable +import org.springframework.web.bind.annotation.RequestMapping +import org.springframework.web.bind.annotation.RequestParam +import org.springframework.web.bind.annotation.RestController + +@RestController +@RequestMapping("/api/v2/creator-channels") +class CreatorChannelCommunityController( + private val creatorChannelCommunityFacade: CreatorChannelCommunityFacade +) { + @GetMapping("/{creatorId}/community") + fun getCommunityTab( + @PathVariable creatorId: Long, + @RequestParam(required = false) page: Int?, + @RequestParam(required = false) size: Int?, + @AuthenticationPrincipal(expression = "#this == 'anonymousUser' ? null : member") member: Member? + ) = run { + ApiResponse.ok( + creatorChannelCommunityFacade.getCommunityTab( + creatorId = creatorId, + viewer = requireMember(member), + page = page, + size = size + ) + ) + } + + private fun requireMember(member: Member?): Member { + return member ?: throw SodaException(messageKey = "common.error.bad_credentials") + } +} diff --git a/src/test/kotlin/kr/co/vividnext/sodalive/v2/api/creator/channel/community/adapter/in/web/CreatorChannelCommunityControllerTest.kt b/src/test/kotlin/kr/co/vividnext/sodalive/v2/api/creator/channel/community/adapter/in/web/CreatorChannelCommunityControllerTest.kt new file mode 100644 index 00000000..c987ebc4 --- /dev/null +++ b/src/test/kotlin/kr/co/vividnext/sodalive/v2/api/creator/channel/community/adapter/in/web/CreatorChannelCommunityControllerTest.kt @@ -0,0 +1,195 @@ +package kr.co.vividnext.sodalive.v2.api.creator.channel.community.adapter.`in`.web + +import kr.co.vividnext.sodalive.common.CountryContext +import kr.co.vividnext.sodalive.i18n.LangContext +import kr.co.vividnext.sodalive.i18n.SodaMessageSource +import kr.co.vividnext.sodalive.member.Member +import kr.co.vividnext.sodalive.member.MemberAdapter +import kr.co.vividnext.sodalive.member.MemberRole +import kr.co.vividnext.sodalive.v2.api.creator.channel.community.application.CreatorChannelCommunityFacade +import kr.co.vividnext.sodalive.v2.api.creator.channel.community.dto.CreatorChannelCommunityPostResponse +import kr.co.vividnext.sodalive.v2.api.creator.channel.community.dto.CreatorChannelCommunityTabResponse +import org.junit.jupiter.api.DisplayName +import org.junit.jupiter.api.Test +import org.mockito.Mockito +import org.springframework.beans.factory.annotation.Autowired +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest +import org.springframework.boot.test.context.TestConfiguration +import org.springframework.boot.test.mock.mockito.MockBean +import org.springframework.context.annotation.Bean +import org.springframework.context.annotation.Import +import org.springframework.http.HttpStatus +import org.springframework.security.config.annotation.web.builders.HttpSecurity +import org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.anonymous +import org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.user +import org.springframework.security.web.SecurityFilterChain +import org.springframework.security.web.authentication.HttpStatusEntryPoint +import org.springframework.test.web.servlet.MockMvc +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get +import org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath +import org.springframework.test.web.servlet.result.MockMvcResultMatchers.status +import java.time.LocalDateTime +import javax.servlet.http.HttpServletResponse + +@WebMvcTest(CreatorChannelCommunityController::class) +@Import(CreatorChannelCommunityControllerTest.TestSecurityConfig::class) +class CreatorChannelCommunityControllerTest @Autowired constructor( + private val mockMvc: MockMvc +) { + @MockBean + private lateinit var facade: CreatorChannelCommunityFacade + + @MockBean + private lateinit var countryContext: CountryContext + + @MockBean + private lateinit var langContext: LangContext + + @MockBean + private lateinit var sodaMessageSource: SodaMessageSource + + @TestConfiguration + class TestSecurityConfig { + @Bean + fun securityFilterChain(http: HttpSecurity): SecurityFilterChain { + return http + .csrf().disable() + .authorizeRequests() + .anyRequest().authenticated() + .and() + .exceptionHandling() + .authenticationEntryPoint(HttpStatusEntryPoint(HttpStatus.UNAUTHORIZED)) + .accessDeniedHandler { _, response, _ -> response.sendError(HttpServletResponse.SC_FORBIDDEN) } + .and() + .build() + } + } + + @Test + @DisplayName("크리에이터 채널 커뮤니티 탭 조회는 비회원 요청을 거부한다") + fun shouldRejectAnonymousCreatorChannelCommunityRequest() { + mockMvc.perform( + get("/api/v2/creator-channels/1/community") + .with(anonymous()) + ) + .andExpect(status().isUnauthorized) + } + + @Test + @DisplayName("크리에이터 채널 커뮤니티 탭 조회는 query parameter를 facade에 전달하고 성공 응답을 반환한다") + fun shouldReturnCreatorChannelCommunityTabForAuthenticatedMember() { + val viewer = createMember(id = 10L) + Mockito.doReturn(createResponse(page = 1, size = 20)).`when`(facade).getCommunityTab( + eqValue(1L), + eqValue(viewer), + eqValue(1), + eqValue(20), + anyValue(LocalDateTime.now()) + ) + + mockMvc.perform( + get("/api/v2/creator-channels/1/community") + .param("page", "1") + .param("size", "20") + .with(user(MemberAdapter(viewer))) + ) + .andExpect(status().isOk) + .andExpect(jsonPath("$.success").value(true)) + .andExpect(jsonPath("$.data.communityPostCount").value(2)) + .andExpect(jsonPath("$.data.communityPosts").isArray) + .andExpect(jsonPath("$.data.communityPosts[0].postId").value(101)) + .andExpect(jsonPath("$.data.communityPosts[0].creatorProfileUrl").value("https://cdn.test/profile.png")) + .andExpect(jsonPath("$.data.communityPosts[0].existOrdered").value(true)) + .andExpect(jsonPath("$.data.communityPosts[0].isCommentAvailable").value(true)) + .andExpect(jsonPath("$.data.communityPosts[0].isPinned").value(true)) + .andExpect(jsonPath("$.data.page").value(1)) + .andExpect(jsonPath("$.data.size").value(20)) + .andExpect(jsonPath("$.data.hasNext").value(false)) + + Mockito.verify(facade).getCommunityTab( + eqValue(1L), + eqValue(viewer), + eqValue(1), + eqValue(20), + anyValue(LocalDateTime.now()) + ) + } + + @Test + @DisplayName("크리에이터 채널 커뮤니티 탭 조회는 page와 size를 controller에서 보정하지 않고 facade에 전달한다") + fun shouldPassRawPageAndSizeToFacade() { + val viewer = createMember(id = 10L) + Mockito.doReturn(createResponse(page = 0, size = 50)).`when`(facade).getCommunityTab( + eqValue(1L), + eqValue(viewer), + eqValue(-1), + eqValue(100), + anyValue(LocalDateTime.now()) + ) + + mockMvc.perform( + get("/api/v2/creator-channels/1/community") + .param("page", "-1") + .param("size", "100") + .with(user(MemberAdapter(viewer))) + ) + .andExpect(status().isOk) + .andExpect(jsonPath("$.data.page").value(0)) + .andExpect(jsonPath("$.data.size").value(50)) + + Mockito.verify(facade).getCommunityTab( + eqValue(1L), + eqValue(viewer), + eqValue(-1), + eqValue(100), + anyValue(LocalDateTime.now()) + ) + } + + private fun eqValue(value: T): T { + return Mockito.eq(value) ?: value + } + + private fun anyValue(fallback: T): T { + return Mockito.any() ?: fallback + } + + private fun createMember(id: Long): Member { + return Member( + email = "viewer$id@test.com", + password = "password", + nickname = "viewer$id", + role = MemberRole.USER + ).apply { this.id = id } + } + + private fun createResponse( + page: Int = 0, + size: Int = 20 + ): CreatorChannelCommunityTabResponse { + return CreatorChannelCommunityTabResponse( + communityPostCount = 2, + communityPosts = listOf( + CreatorChannelCommunityPostResponse( + postId = 101L, + creatorId = 1L, + creatorNickname = "creator", + creatorProfileUrl = "https://cdn.test/profile.png", + createdAtUtc = "2026-06-21T03:30:00Z", + content = "content", + imageUrl = null, + audioUrl = null, + price = 100, + isCommentAvailable = true, + existOrdered = true, + likeCount = 7, + commentCount = 3, + isPinned = true + ) + ), + page = page, + size = size, + hasNext = false + ) + } +}