feat(creator): 채널 홈 팔로우와 탭 동작을 연결한다

This commit is contained in:
2026-06-15 21:00:42 +09:00
parent bfb5440c9e
commit 19b8e4750f
4 changed files with 114 additions and 7 deletions

View File

@@ -48,7 +48,27 @@ class CreatorChannelHomeActivitySourceTest {
assertTrue(source.contains("viewModel.createChatRoom(characterId)"))
assertTrue(source.contains("updateActionButtonLayout"))
assertTrue(source.contains("marginStart = if (isChatVisible && isDmVisible)"))
assertFalse(source.contains("CreatorFollowNotifyFragment"))
}
@Test
fun `follow notify source는 미팔로우 직접 팔로우와 팔로우 중 알림 sheet를 연결한다`() {
val source = projectFile(
"app/src/main/java/kr/co/vividnext/sodalive/v2/creator/channel/CreatorChannelHomeActivity.kt"
).readText()
assertTrue(source.contains("CreatorFollowNotifyFragment"))
assertTrue(source.contains("binding.layoutFollowCapsule.setOnClickListener"))
assertTrue(source.contains("binding.ivBell.setOnClickListener"))
assertTrue(source.contains("private fun onFollowActionClicked"))
assertTrue(source.contains("if (!header.isFollow)"))
assertTrue(source.contains("viewModel.follow(follow = true, notify = true)"))
assertTrue(source.contains("showFollowNotifyFragment"))
assertTrue(source.contains("onClickNotifyAll = { viewModel.follow(follow = true, notify = true) }"))
assertTrue(source.contains("onClickNotifyNone = { viewModel.follow(follow = true, notify = false) }"))
assertTrue(source.contains("onClickUnFollow = { viewModel.follow(follow = false, notify = false) }"))
assertTrue(source.contains("viewModel.isFollowInProgressLiveData.observe(this)"))
assertTrue(source.contains("binding.layoutFollowCapsule.isEnabled = titleBarState.isActionEnabled"))
assertTrue(source.contains("binding.ivBell.isEnabled = titleBarState.isActionEnabled"))
}
@Test
@@ -132,13 +152,32 @@ class CreatorChannelHomeActivitySourceTest {
"app/src/main/java/kr/co/vividnext/sodalive/v2/creator/channel/CreatorChannelHomeActivity.kt"
).readText()
assertTrue(source.contains("createTabView(tab, isSelected = index == 0)"))
assertTrue(source.contains("createTabView(tab, isSelected = tab == selectedTab)"))
assertTrue(source.contains("tabText.textSize = 16f"))
assertTrue(source.contains("width = 110.dpToPx().toInt()"))
assertTrue(source.contains("indicator.setBackgroundColor(getColor(R.color.soda_400))"))
assertTrue(source.contains("indicator.isVisible = isSelected"))
}
@Test
fun `tab source는 홈 기본 선택과 홈 외 탭 no op 정책을 명시한다`() {
val source = projectFile(
"app/src/main/java/kr/co/vividnext/sodalive/v2/creator/channel/CreatorChannelHomeActivity.kt"
).readText()
assertTrue(source.contains("private var selectedTab: CreatorChannelTab = CreatorChannelTab.Home"))
assertTrue(source.contains("createTabView(tab, isSelected = tab == selectedTab)"))
assertTrue(source.contains("setOnClickListener { onTabClicked(tab) }"))
assertTrue(source.contains("private fun onTabClicked(tab: CreatorChannelTab)"))
assertTrue(source.contains("if (tab != CreatorChannelTab.Home) return"))
assertFalse(source.contains("CreatorChannelTab.Live ->"))
assertFalse(source.contains("CreatorChannelTab.Audio ->"))
assertFalse(source.contains("CreatorChannelTab.Series ->"))
assertFalse(source.contains("CreatorChannelTab.Community ->"))
assertFalse(source.contains("CreatorChannelTab.FanTalk ->"))
assertFalse(source.contains("CreatorChannelTab.Donation ->"))
}
@Test
fun `section adapter source는 활동 지표를 행 단위 resource label로 표시한다`() {
val adapter = projectFile(
@@ -940,6 +979,27 @@ class CreatorChannelHomeActivitySourceTest {
assertTrue(manifest.contains(".v2.creator.channel.CreatorChannelHomeActivity"))
}
@Test
fun `기존 크리에이터 채널 진입점은 UserProfileActivity 대신 CreatorChannelHomeActivity로 이동한다`() {
val sourceRoot = projectFile("app/src/main/java")
val directUserProfileRoutes = sourceRoot
.walkTopDown()
.filter { it.isFile && it.extension in setOf("kt", "java") }
.filterNot { it.name == "UserProfileActivity.kt" }
.filter { file ->
val source = file.readText()
source.contains("UserProfileActivity::class.java") ||
source.contains("import kr.co.vividnext.sodalive.explorer.profile.UserProfileActivity")
}
.map { it.relativeTo(sourceRoot).path }
.toList()
assertTrue(
"UserProfileActivity direct routes remain: $directUserProfileRoutes",
directUserProfileRoutes.isEmpty()
)
}
@Test
fun `채팅과 DM Activity intent helper 계약을 참조한다`() {
val chatRoom = projectFile("app/src/main/java/kr/co/vividnext/sodalive/chat/talk/room/ChatRoomActivity.kt").readText()

View File

@@ -149,8 +149,10 @@ class CreatorChannelHomeViewModelTest {
viewModel.follow(follow = false, notify = false)
viewModel.follow(follow = false, notify = false)
assertEquals(true, viewModel.isFollowInProgressLiveData.requireValue())
verify(repository, times(1)).followCreator(100L, false, false, "Bearer test-token")
pending.onSuccess(ApiResponse(true, Any(), null))
assertEquals(false, viewModel.isFollowInProgressLiveData.requireValue())
}
@Test