import type { ReactNode } from 'react'
import type { ChatConfig } from '../../types'
import type { AppConversationData, AppData, AppMeta, ConversationItem } from '@/models/share'
import { ToastHost } from '@langgenius/dify-ui/toast'
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
import { act, renderHook, waitFor } from '@testing-library/react'
import { InputVarType } from '@/app/components/workflow/types'
import {
  AppSourceType,
  fetchChatList,
  fetchConversations,
  generationConversationName,
} from '@/service/share'
import { shareQueryKeys } from '@/service/use-share'
import { TransferMethod } from '@/types/app'
import { CONVERSATION_ID_INFO } from '../../constants'
import { useEmbeddedChatbot } from '../hooks'

type InputForm = {
  variable: string
  type: string
  default?: unknown
  required?: boolean
  label?: string
  max_length?: number
  options?: string[]
  hide?: boolean
}

vi.mock('@/i18n-config/client', () => ({
  changeLanguage: vi.fn().mockResolvedValue(undefined),
}))

const mockStoreState: {
  appInfo: AppData | null
  appMeta: AppMeta | null
  appParams: ChatConfig | null
  embeddedConversationId: string | null
  embeddedUserId: string | null
} = {
  appInfo: null,
  appMeta: null,
  appParams: null,
  embeddedConversationId: null,
  embeddedUserId: null,
}

const useWebAppStoreMock = vi.fn((selector?: (state: typeof mockStoreState) => unknown) => {
  return selector ? selector(mockStoreState) : mockStoreState
})

vi.mock('@/context/web-app-context', () => ({
  useWebAppStore: (selector?: (state: typeof mockStoreState) => unknown) => useWebAppStoreMock(selector),
}))

const {
  mockGetProcessedInputsFromUrlParams,
  mockGetProcessedSystemVariablesFromUrlParams,
  mockGetProcessedUserVariablesFromUrlParams,
} = vi.hoisted(() => ({
  mockGetProcessedInputsFromUrlParams: vi.fn(),
  mockGetProcessedSystemVariablesFromUrlParams: vi.fn(),
  mockGetProcessedUserVariablesFromUrlParams: vi.fn(),
}))

vi.mock('../../utils', async () => {
  const actual = await vi.importActual<typeof import('../../utils')>('../../utils')
  return {
    ...actual,
    getProcessedInputsFromUrlParams: mockGetProcessedInputsFromUrlParams,
    getProcessedSystemVariablesFromUrlParams: mockGetProcessedSystemVariablesFromUrlParams,
    getProcessedUserVariablesFromUrlParams: mockGetProcessedUserVariablesFromUrlParams,
  }
})

vi.mock('@/service/share', async (importOriginal) => {
  const actual = await importOriginal<typeof import('@/service/share')>()
  return {
    ...actual,
    fetchChatList: vi.fn(),
    fetchConversations: vi.fn(),
    generationConversationName: vi.fn(),
    fetchAppInfo: vi.fn(),
    fetchAppMeta: vi.fn(),
    fetchAppParams: vi.fn(),
    getAppAccessModeByAppCode: vi.fn(),
    updateFeedback: vi.fn(),
  }
})

const STABLE_MOCK_DATA = { data: {} }
vi.mock('@/service/use-try-app', () => ({
  useGetTryAppInfo: vi.fn(() => STABLE_MOCK_DATA),
  useGetTryAppParams: vi.fn(() => STABLE_MOCK_DATA),
}))

const mockFetchConversations = vi.mocked(fetchConversations)
const mockFetchChatList = vi.mocked(fetchChatList)
const mockGenerationConversationName = vi.mocked(generationConversationName)

const createQueryClient = () => new QueryClient({
  defaultOptions: {
    queries: {
      retry: false,
    },
  },
})

const createWrapper = (queryClient: QueryClient) => {
  return ({ children }: { children: ReactNode }) => (
    <QueryClientProvider client={queryClient}>
      <ToastHost />
      {children}
    </QueryClientProvider>
  )
}

const renderWithClient = async <T,>(hook: () => T) => {
  const queryClient = createQueryClient()
  const wrapper = createWrapper(queryClient)
  let result: ReturnType<typeof renderHook<T, unknown>> | undefined
  act(() => {
    result = renderHook(hook, { wrapper })
  })
  await waitFor(() => {
    if (queryClient.isFetching() > 0)
      throw new Error('Queries are still fetching')
  }, { timeout: 2000 })
  return {
    queryClient,
    ...result!,
  }
}

const createConversationItem = (overrides: Partial<ConversationItem> = {}): ConversationItem => ({
  id: 'conversation-1',
  name: 'Conversation 1',
  inputs: null,
  introduction: '',
  ...overrides,
})

const createConversationData = (overrides: Partial<AppConversationData> = {}): AppConversationData => ({
  data: [createConversationItem()],
  has_more: false,
  limit: 100,
  ...overrides,
})

// Scenario: useEmbeddedChatbot integrates share queries for conversations and chat list.
describe('useEmbeddedChatbot', () => {
  beforeEach(() => {
    vi.clearAllMocks()
    // Re-establish default mock implementations after clearAllMocks
    mockGetProcessedInputsFromUrlParams.mockResolvedValue({})
    mockGetProcessedSystemVariablesFromUrlParams.mockResolvedValue({})
    mockGetProcessedUserVariablesFromUrlParams.mockResolvedValue({})
    localStorage.removeItem(CONVERSATION_ID_INFO)
    mockStoreState.appInfo = {
      app_id: 'app-1',
      custom_config: null,
      site: {
        title: 'Test App',
        default_language: 'en-US',
      },
    }
    mockStoreState.appMeta = {
      tool_icons: {},
    }
    mockStoreState.appParams = null
    mockStoreState.embeddedConversationId = 'conversation-1'
    mockStoreState.embeddedUserId = 'embedded-user-1'
    mockFetchConversations.mockResolvedValue({ data: [], has_more: false, limit: 100 })
    mockFetchChatList.mockResolvedValue({ data: [] })
  })

  afterEach(() => {
    localStorage.removeItem(CONVERSATION_ID_INFO)
  })

  // Scenario: share query results populate conversation lists and trigger chat list fetch.
  describe('Share queries', () => {
    it('should load pinned, unpinned, and chat list data from share queries', async () => {
      // Arrange
      const pinnedData = createConversationData({
        data: [createConversationItem({ id: 'pinned-1', name: 'Pinned' })],
      })
      const listData = createConversationData({
        data: [createConversationItem({ id: 'conversation-1', name: 'First' })],
      })
      mockFetchConversations.mockImplementation(async (_isInstalledApp, _appId, _lastId, pinned) => {
        return pinned ? pinnedData : listData
      })
      mockFetchChatList.mockResolvedValue({ data: [] })

      // Act
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      // Assert
      await waitFor(() => {
        expect(mockFetchConversations).toHaveBeenCalledWith(AppSourceType.webApp, 'app-1', undefined, true, 100)
      })
      await waitFor(() => {
        expect(mockFetchConversations).toHaveBeenCalledWith(AppSourceType.webApp, 'app-1', undefined, false, 100)
      })
      await waitFor(() => {
        expect(mockFetchChatList).toHaveBeenCalledWith('conversation-1', AppSourceType.webApp, 'app-1')
      })
      await waitFor(() => {
        expect(result.current.pinnedConversationList).toEqual(pinnedData.data)
        expect(result.current.conversationList).toEqual(listData.data)
      })
    })

    it('should format chat list history correctly into appPrevChatList', async () => {
      // Provide a currentConversationId by rendering successfully
      mockStoreState.embeddedConversationId = 'conversation-1'
      mockGetProcessedSystemVariablesFromUrlParams.mockResolvedValue({ conversation_id: 'conversation-1' })
      mockFetchChatList.mockResolvedValue({
        data: [{
          id: 'msg-1',
          query: 'Hello',
          answer: 'Hi there!',
          message_files: [{ belongs_to: 'user', id: 'mf-1' }, { belongs_to: 'assistant', id: 'mf-2' }],
          agent_thoughts: [{ id: 'at-1' }],
          feedback: { rating: 'like' },
        }],
      })

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      // Wait for the mock to be called
      await waitFor(() => {
        expect(mockFetchChatList).toHaveBeenCalledWith('conversation-1', AppSourceType.webApp, 'app-1')
      })

      // Wait for the chat list to be populated
      await waitFor(() => {
        expect(result.current.appPrevChatList.length).toBeGreaterThan(0)
      })

      // We expect the formatting logic to split the message into question and answer ChatItems
      const chatList = result.current.appPrevChatList

      const userMsg = chatList.find((msg: unknown) => (msg as Record<string, unknown>).id === 'question-msg-1')
      expect(userMsg).toBeDefined()
      expect((userMsg as Record<string, unknown>)?.content).toBe('Hello')
      expect((userMsg as Record<string, unknown>)?.isAnswer).toBe(false)

      const assistantMsg = ((userMsg as Record<string, unknown>)?.children as unknown[])?.[0]
      expect(assistantMsg).toBeDefined()
      expect((assistantMsg as Record<string, unknown>)?.id).toBe('msg-1')
      expect((assistantMsg as Record<string, unknown>)?.content).toBe('Hi there!')
      expect((assistantMsg as Record<string, unknown>)?.isAnswer).toBe(true)
      expect(((assistantMsg as Record<string, unknown>)?.feedback as Record<string, unknown>)?.rating).toBe('like')
    })
  })

  // Scenario: completion invalidates share caches and merges generated names.
  describe('New conversation completion', () => {
    it('should invalidate share conversations and apply generated name', async () => {
      // Arrange
      const listData = createConversationData({
        data: [createConversationItem({ id: 'conversation-1', name: 'First' })],
      })
      const generatedConversation = createConversationItem({
        id: 'conversation-new',
        name: 'Generated',
      })
      mockFetchConversations.mockResolvedValue(listData)
      mockFetchChatList.mockResolvedValue({ data: [] })
      mockGenerationConversationName.mockResolvedValue(generatedConversation)

      const { result, queryClient } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))
      const invalidateSpy = vi.spyOn(queryClient, 'invalidateQueries')

      // Act
      act(() => {
        result.current.handleNewConversationCompleted('conversation-new')
      })

      // Assert
      await waitFor(() => {
        expect(mockGenerationConversationName).toHaveBeenCalledWith(AppSourceType.webApp, 'app-1', 'conversation-new')
      })
      await waitFor(() => {
        expect(result.current.conversationList[0]).toEqual(generatedConversation)
      })
      expect(invalidateSpy).toHaveBeenCalledWith({ queryKey: shareQueryKeys.conversations })
    })
  })

  // Scenario: chat list queries stop when reload key is cleared.
  describe('Chat list gating', () => {
    it('should not refetch chat list when newConversationId matches current conversation', async () => {
      // Arrange
      const listData = createConversationData({
        data: [createConversationItem({ id: 'conversation-1', name: 'First' })],
      })
      mockFetchConversations.mockResolvedValue(listData)
      mockFetchChatList.mockResolvedValue({ data: [] })
      mockGenerationConversationName.mockResolvedValue(createConversationItem({ id: 'conversation-1' }))

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await waitFor(() => {
        expect(mockFetchChatList).toHaveBeenCalledTimes(1)
      })

      // Act
      act(() => {
        result.current.handleNewConversationCompleted('conversation-1')
      })

      // Assert
      await waitFor(() => {
        expect(result.current.chatShouldReloadKey).toBe('')
      })
      expect(mockFetchChatList).toHaveBeenCalledTimes(1)
    })
  })

  // Scenario: conversation id updates persist to localStorage.
  describe('Conversation id persistence', () => {
    it('should store new conversation id in localStorage after completion', async () => {
      // Arrange
      const listData = createConversationData({
        data: [createConversationItem({ id: 'conversation-1', name: 'First' })],
      })
      mockFetchConversations.mockResolvedValue(listData)
      mockFetchChatList.mockResolvedValue({ data: [] })
      mockGenerationConversationName.mockResolvedValue(createConversationItem({ id: 'conversation-new' }))

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      // Act
      act(() => {
        result.current.handleNewConversationCompleted('conversation-new')
      })

      // Assert
      await waitFor(() => {
        const storedValue = localStorage.getItem(CONVERSATION_ID_INFO)
        const parsed = storedValue ? JSON.parse(storedValue) : {}
        const storedUserId = parsed['app-1']?.['embedded-user-1']
        const storedDefaultId = parsed['app-1']?.DEFAULT
        expect([storedUserId, storedDefaultId]).toContain('conversation-new')
      })
    })
  })

  // Scenario: TryApp mode initialization and logic.
  describe('TryApp mode', () => {
    it('should use tryApp source type and skip URL overrides and user fetch', async () => {
      // Arrange
      const { useGetTryAppInfo } = await import('@/service/use-try-app')
      const mockTryAppInfo = { app_id: 'try-app-1', site: { title: 'Try App' } };
      (useGetTryAppInfo as unknown as ReturnType<typeof vi.fn>).mockReturnValue({ data: mockTryAppInfo })

      mockGetProcessedSystemVariablesFromUrlParams.mockResolvedValue({})

      // Act
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.tryApp, 'try-app-1'))

      // Assert
      expect(result.current.isInstalledApp).toBe(false)
      expect(result.current.appId).toBe('try-app-1')
      expect(result.current.appData?.site.title).toBe('Try App')

      // ensure URL fetching is skipped
      expect(mockGetProcessedSystemVariablesFromUrlParams).not.toHaveBeenCalled()
    })
  })

  // Language overrides tests were causing hang, removed for now.
  // Scenario: Removing conversation id info
  describe('removeConversationIdInfo', () => {
    it('should successfully remove a stored conversation ID info by appId', async () => {
      // Setup some initial info
      localStorage.setItem(CONVERSATION_ID_INFO, JSON.stringify({ 'app-1': { 'user-1': 'conv-id' } }))

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      act(() => {
        result.current.removeConversationIdInfo('app-1')
      })

      await waitFor(() => {
        const storedValue = localStorage.getItem(CONVERSATION_ID_INFO)
        const parsed = storedValue ? JSON.parse(storedValue) : {}
        expect(parsed['app-1']).toBeUndefined()
      })
    })
  })

  // Scenario: various form inputs configurations and default parsing
  describe('inputsForms mapping and default parsing', () => {
    const mockAppParamsWithInputs = {
      user_input_form: [
        { paragraph: { variable: 'p1', default: 'para', max_length: 5 } },
        { number: { variable: 'n1', default: 42 } },
        { checkbox: { variable: 'c1', default: true } },
        { select: { variable: 's1', options: ['A', 'B'], default: 'A' } },
        { 'file-list': { variable: 'fl1' } },
        { file: { variable: 'f1' } },
        { json_object: { variable: 'j1' } },
        { 'text-input': { variable: 't1', default: 'txt', max_length: 3 } },
      ],
    }

    it('should map various types properly with max_length truncation when defaults supplied via URL', async () => {
      mockGetProcessedInputsFromUrlParams.mockResolvedValue({
        p1: 'toolongparagraph', // truncated to 5
        n1: '99',
        c1: true,
        s1: 'B', // Matches options
        t1: '1234', // truncated to 3
      })
      mockStoreState.appParams = mockAppParamsWithInputs as unknown as ChatConfig

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      // Wait for the mock to be called
      await waitFor(() => {
        expect(mockGetProcessedInputsFromUrlParams).toHaveBeenCalled()
      })

      await waitFor(() => {
        expect(result.current.inputsForms).toHaveLength(8)
      })

      const forms = result.current.inputsForms
      expect(forms.find((f: InputForm) => f.variable === 'p1')?.default).toBe('toolo')
      expect(forms.find((f: InputForm) => f.variable === 'n1')?.default).toBe(99)
      expect(forms.find((f: InputForm) => f.variable === 'c1')?.default).toBe(true)
      expect(forms.find((f: InputForm) => f.variable === 's1')?.default).toBe('B')
      expect(forms.find((f: InputForm) => f.variable === 't1')?.default).toBe('123')
      expect(forms.find((f: InputForm) => f.variable === 'fl1')?.type).toBe('file-list')
      expect(forms.find((f: InputForm) => f.variable === 'f1')?.type).toBe('file')
      expect(forms.find((f: InputForm) => f.variable === 'j1')?.type).toBe('json_object')
    })
  })

  // Scenario: checkInputsRequired validates empty fields and pending multi-file uploads
  describe('checkInputsRequired and handleStartChat', () => {
    it('should return undefined and notify when file is still uploading', async () => {
      mockStoreState.appParams = {
        user_input_form: [
          { file: { variable: 'file_var', required: true } },
        ],
      } as unknown as ChatConfig

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      // Simulate a local file uploading
      act(() => {
        result.current.handleNewConversationInputsChange({
          file_var: [{ transferMethod: 'local_file', uploadedId: null }],
        })
      })

      const onStart = vi.fn()
      let checkResult: boolean | undefined
      act(() => {
        checkResult = (result.current as unknown as { handleStartChat: (onStart?: () => void) => boolean }).handleStartChat(onStart)
      })

      expect(checkResult).toBeUndefined()
      expect(onStart).not.toHaveBeenCalled()
    })

    it('should fail checkInputsRequired when required fields are missing', async () => {
      mockStoreState.appParams = {
        user_input_form: [
          { 'text-input': { variable: 't1', required: true, label: 'T1' } },
        ],
      } as unknown as ChatConfig

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      act(() => {
        result.current.handleNewConversationInputsChange({
          t1: '',
        })
      })
      const onStart = vi.fn()
      act(() => {
        (result.current as unknown as { handleStartChat: (cb?: () => void) => void }).handleStartChat(onStart)
      })

      expect(onStart).not.toHaveBeenCalled()
    })

    it('should pass checkInputsRequired when allInputsHidden is true', async () => {
      mockStoreState.appParams = {
        user_input_form: [
          { 'text-input': { variable: 't1', required: true, label: 'T1', hide: true } },
        ],
      } as unknown as ChatConfig

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))
      const callback = vi.fn()

      act(() => {
        (result.current as unknown as { handleStartChat: (cb?: () => void) => void }).handleStartChat(callback)
      })

      expect(callback).toHaveBeenCalled()
    })
  })

  // Scenario: handlers (New Conversation, Change Conversation, Feedback)
  describe('Event Handlers', () => {
    it('handleNewConversation sets clearChatList to true for webApp', async () => {
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await act(async () => {
        await result.current.handleNewConversation()
      })

      expect(result.current.clearChatList).toBe(true)
    })

    it('handleNewConversation sets clearChatList to true for tryApp without complex parsing', async () => {
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.tryApp, 'app-try-1'))

      await act(async () => {
        await result.current.handleNewConversation()
      })

      expect(result.current.clearChatList).toBe(true)
    })

    it('handleChangeConversation updates current conversation and refetches chat list', async () => {
      mockStoreState.embeddedConversationId = null
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      act(() => {
        result.current.handleChangeConversation('another-convo')
      })

      await waitFor(() => {
        expect(result.current.currentConversationId).toBe('another-convo')
      })
      await waitFor(() => {
        expect(mockFetchChatList).toHaveBeenCalledWith('another-convo', AppSourceType.webApp, 'app-1')
      })
      expect(result.current.newConversationId).toBe('')
      expect(result.current.clearChatList).toBe(false)
    })

    // Scenario: URL-provided conversation_id should take precedence over localStorage value.
    it('should prioritize URL conversation_id over localStorage', async () => {
      localStorage.setItem(CONVERSATION_ID_INFO, JSON.stringify({
        'app-1': { 'embedded-user-1': 'stored-conv-id' },
      }))
      mockStoreState.embeddedConversationId = 'url-conv-id'
      mockGetProcessedSystemVariablesFromUrlParams.mockResolvedValue({
        user_id: 'embedded-user-1',
        conversation_id: 'url-conv-id',
      })

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await waitFor(() => {
        expect(result.current.currentConversationId).toBe('url-conv-id')
      })
    })

    // Scenario: When no URL conversation_id is provided, fall back to localStorage.
    it('should fall back to localStorage when no URL conversation_id is provided', async () => {
      localStorage.setItem(CONVERSATION_ID_INFO, JSON.stringify({
        'app-1': { DEFAULT: 'stored-conv-id' },
      }))
      mockStoreState.embeddedConversationId = null
      mockStoreState.embeddedUserId = null

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await waitFor(() => {
        expect(result.current.currentConversationId).toBe('stored-conv-id')
      })
    })

    it('handleFeedback invokes updateFeedback service successfully', async () => {
      const { updateFeedback } = await import('@/service/share')
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await act(async () => {
        await result.current.handleFeedback('msg-123', { rating: 'like' })
      })

      expect(updateFeedback).toHaveBeenCalled()
    })
  })

  describe('embeddedUserId and embeddedConversationId falsy paths', () => {
    it('should set userId to undefined when embeddedUserId is empty string', async () => {
      // This exercises the `embeddedUserId || undefined` branch on line 99
      mockStoreState.embeddedUserId = ''
      mockStoreState.embeddedConversationId = ''
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await waitFor(() => {
        // When embeddedUserId is empty, allowResetChat is true (no conversationId from URL or stored)
        expect(result.current.allowResetChat).toBe(true)
      })
    })
  })

  describe('Language settings', () => {
    it('should set language from URL parameters', async () => {
      const originalSearch = window.location.search
      Object.defineProperty(window, 'location', {
        writable: true,
        value: { search: '?locale=zh-Hans' },
      })
      const { changeLanguage } = await import('@/i18n-config/client')

      await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      expect(changeLanguage).toHaveBeenCalledWith('zh-Hans')
      Object.defineProperty(window, 'location', { value: { search: originalSearch } })
    })

    it('should set language from system variables when URL param is missing', async () => {
      mockGetProcessedSystemVariablesFromUrlParams.mockResolvedValue({ locale: 'fr-FR' })
      const { changeLanguage } = await import('@/i18n-config/client')

      await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      expect(changeLanguage).toHaveBeenCalledWith('fr-FR')
    })

    it('should fall back to app default language', async () => {
      mockGetProcessedSystemVariablesFromUrlParams.mockResolvedValue({})
      mockStoreState.appInfo = {
        app_id: 'app-1',
        site: {
          title: 'Test App',
          default_language: 'ja-JP',
        },
      } as unknown as AppData
      const { changeLanguage } = await import('@/i18n-config/client')

      await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      expect(changeLanguage).toHaveBeenCalledWith('ja-JP')
    })
  })

  describe('Additional Input Form Edges', () => {
    it('should handle invalid number inputs and checkbox defaults', async () => {
      mockStoreState.appParams = {
        user_input_form: [
          { number: { variable: 'n1', default: 10 } },
          { checkbox: { variable: 'c1', default: false } },
        ],
      } as unknown as ChatConfig
      mockGetProcessedInputsFromUrlParams.mockResolvedValue({
        n1: 'not-a-number',
        c1: 'true',
      })

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))
      const forms = result.current.inputsForms
      expect(forms.find(f => f.variable === 'n1')?.default).toBe(10)
      expect(forms.find(f => f.variable === 'c1')?.default).toBe(false)
    })

    it('should handle select with invalid option and file-list/json types', async () => {
      mockStoreState.appParams = {
        user_input_form: [
          { select: { variable: 's1', options: ['A'], default: 'A' } },
        ],
      } as unknown as ChatConfig
      mockGetProcessedInputsFromUrlParams.mockResolvedValue({
        s1: 'INVALID',
      })

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))
      expect(result.current.inputsForms[0].default).toBe('A')
    })
  })

  describe('handleConversationIdInfoChange logic', () => {
    it('should handle existing appId as string and update it to object', async () => {
      localStorage.setItem(CONVERSATION_ID_INFO, JSON.stringify({ 'app-1': 'legacy-id' }))
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      act(() => {
        result.current.handleConversationIdInfoChange('new-conv-id')
      })

      await waitFor(() => {
        const stored = JSON.parse(localStorage.getItem(CONVERSATION_ID_INFO) || '{}')
        const appEntry = stored['app-1']
        // userId may be 'embedded-user-1' or 'DEFAULT' depending on timing; either is valid
        const storedId = appEntry?.['embedded-user-1'] ?? appEntry?.DEFAULT
        expect(storedId).toBe('new-conv-id')
      })
    })

    it('should use DEFAULT when userId is null', async () => {
      // Override userId to be null/empty to exercise the "|| 'DEFAULT'" fallback path
      mockStoreState.embeddedUserId = null
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      act(() => {
        result.current.handleConversationIdInfoChange('default-conv-id')
      })

      await waitFor(() => {
        const stored = JSON.parse(localStorage.getItem(CONVERSATION_ID_INFO) || '{}')
        const appEntry = stored['app-1']
        // Should use DEFAULT key since userId is null
        expect(appEntry?.DEFAULT).toBe('default-conv-id')
      })
    })
  })

  describe('allInputsHidden and no required variables', () => {
    it('should pass checkInputsRequired immediately when there are no required fields', async () => {
      mockStoreState.appParams = {
        user_input_form: [
          // All optional (not required)
          { 'text-input': { variable: 't1', required: false, label: 'T1' } },
        ],
      } as unknown as ChatConfig

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      const onStart = vi.fn()
      act(() => {
        result.current.handleStartChat(onStart)
      })
      expect(onStart).toHaveBeenCalled()
    })

    it('should pass checkInputsRequired when all inputs are hidden', async () => {
      mockStoreState.appParams = {
        user_input_form: [
          { 'text-input': { variable: 't1', required: true, label: 'T1', hide: true } },
          { 'text-input': { variable: 't2', required: true, label: 'T2', hide: true } },
        ],
      } as unknown as ChatConfig

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await waitFor(() => expect(result.current.allInputsHidden).toBe(true))

      const onStart = vi.fn()
      act(() => {
        result.current.handleStartChat(onStart)
      })
      expect(onStart).toHaveBeenCalled()
    })
  })

  describe('checkInputsRequired silent mode and multi-file', () => {
    it('should return true in silent mode even if fields are missing', async () => {
      mockStoreState.appParams = {
        user_input_form: [{ 'text-input': { variable: 't1', required: true, label: 'T1' } }],
      } as unknown as ChatConfig
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      // checkInputsRequired is internal; trigger via handleStartChat which calls it
      const onStart = vi.fn()
      act(() => {
        // With silent=true not exposed, we test that handleStartChat calls the callback
        // when allInputsHidden is true (all forms hidden)
        result.current.handleStartChat(onStart)
      })
      // The form field has required=true but silent mode through allInputsHidden=false,
      // so the callback is NOT called (validation blocked it)
      // This exercises the silent=false path with empty field -> notify -> return false
      expect(onStart).not.toHaveBeenCalled()
    })

    it('should handle multi-file uploading status', async () => {
      mockStoreState.appParams = {
        user_input_form: [{ 'file-list': { variable: 'files', required: true, type: InputVarType.multiFiles } }],
      } as unknown as ChatConfig
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      act(() => {
        result.current.handleNewConversationInputsChange({
          files: [
            { transferMethod: TransferMethod.local_file, uploadedId: 'ok' },
            { transferMethod: TransferMethod.local_file, uploadedId: null },
          ],
        })
      })

      // handleStartChat returns void, but we just verify no callback fires (file upload pending)
      const onStart = vi.fn()
      act(() => {
        result.current.handleStartChat(onStart)
      })
      expect(onStart).not.toHaveBeenCalled()
    })

    it('should detect single-file upload still in progress', async () => {
      mockStoreState.appParams = {
        user_input_form: [{ 'file-list': { variable: 'f1', required: true, type: InputVarType.singleFile } }],
      } as unknown as ChatConfig
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      act(() => {
        // Single file (not array) transfer that hasn't finished uploading
        result.current.handleNewConversationInputsChange({
          f1: { transferMethod: TransferMethod.local_file, uploadedId: null },
        })
      })

      const onStart = vi.fn()
      act(() => {
        result.current.handleStartChat(onStart)
      })
      expect(onStart).not.toHaveBeenCalled()
    })

    it('should skip validation for hasEmptyInput when fileIsUploading already set', async () => {
      // Two required fields: first passes but starts uploading, second would be empty — should be skipped
      mockStoreState.appParams = {
        user_input_form: [
          { 'file-list': { variable: 'f1', required: true, type: InputVarType.multiFiles } },
          { 'text-input': { variable: 't1', required: true, label: 'T1' } },
        ],
      } as unknown as ChatConfig
      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      act(() => {
        result.current.handleNewConversationInputsChange({
          f1: [{ transferMethod: TransferMethod.local_file, uploadedId: null }],
          t1: '', // empty but should be skipped because fileIsUploading is set first
        })
      })

      const onStart = vi.fn()
      act(() => {
        result.current.handleStartChat(onStart)
      })
      expect(onStart).not.toHaveBeenCalled()
    })
  })

  describe('getFormattedChatList edge cases', () => {
    it('should handle messages with no message_files and no agent_thoughts', async () => {
      // Ensure a currentConversationId is set so appChatListData is fetched
      localStorage.setItem(CONVERSATION_ID_INFO, JSON.stringify({ 'app-1': { DEFAULT: 'conversation-1' } }))
      mockFetchConversations.mockResolvedValue(
        createConversationData({ data: [createConversationItem({ id: 'conversation-1' })] }),
      )
      mockFetchChatList.mockResolvedValue({
        data: [{
          id: 'msg-no-files',
          query: 'Q',
          answer: 'A',
          // no message_files, no agent_thoughts — exercises the || [] fallback branches
        }],
      })

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))
      await waitFor(() => expect(result.current.appPrevChatList.length).toBeGreaterThan(0), { timeout: 3000 })

      const chatList = result.current.appPrevChatList
      const question = chatList.find((m: unknown) => (m as Record<string, unknown>).id === 'question-msg-no-files')
      expect(question).toBeDefined()
    })
  })

  describe('currentConversationItem from pinned list', () => {
    it('should find currentConversationItem from pinned list when not in main list', async () => {
      const pinnedData = createConversationData({
        data: [createConversationItem({ id: 'pinned-conv', name: 'Pinned' })],
      })
      mockFetchConversations.mockImplementation(async (_a: unknown, _b: unknown, _c: unknown, pinned?: boolean) => {
        return pinned ? pinnedData : createConversationData({ data: [] })
      })
      mockFetchChatList.mockResolvedValue({ data: [] })
      localStorage.setItem(CONVERSATION_ID_INFO, JSON.stringify({ 'app-1': { DEFAULT: 'pinned-conv' } }))

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await waitFor(() => {
        expect(result.current.pinnedConversationList.length).toBeGreaterThan(0)
      }, { timeout: 3000 })
      await waitFor(() => {
        expect(result.current.currentConversationItem?.id).toBe('pinned-conv')
      }, { timeout: 3000 })
    })
  })

  describe('newConversation updates existing item', () => {
    it('should update an existing conversation in the list when its id matches', async () => {
      const initialItem = createConversationItem({ id: 'conversation-1', name: 'Old Name' })
      const renamedItem = createConversationItem({ id: 'conversation-1', name: 'New Generated Name' })
      mockFetchConversations.mockResolvedValue(createConversationData({ data: [initialItem] }))
      mockGenerationConversationName.mockResolvedValue(renamedItem)

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await waitFor(() => expect(result.current.conversationList.length).toBeGreaterThan(0))

      act(() => {
        result.current.handleNewConversationCompleted('conversation-1')
      })

      await waitFor(() => {
        const match = result.current.conversationList.find(c => c.id === 'conversation-1')
        expect(match?.name).toBe('New Generated Name')
      })
    })
  })

  describe('currentConversationLatestInputs', () => {
    it('should return inputs from latest chat message when conversation has data', async () => {
      const convId = 'conversation-with-inputs'
      localStorage.setItem(CONVERSATION_ID_INFO, JSON.stringify({ 'app-1': { DEFAULT: convId } }))
      mockFetchConversations.mockResolvedValue(
        createConversationData({ data: [createConversationItem({ id: convId })] }),
      )
      mockFetchChatList.mockResolvedValue({
        data: [{ id: 'm1', query: 'Q', answer: 'A', inputs: { key1: 'val1' } }],
      })

      const { result } = await renderWithClient(() => useEmbeddedChatbot(AppSourceType.webApp))

      await waitFor(() => expect(result.current.currentConversationItem?.id).toBe(convId), { timeout: 3000 })
      // After item is resolved, currentConversationInputs should be populated
      await waitFor(() => expect(result.current.currentConversationInputs).toBeDefined(), { timeout: 3000 })
    })
  })
})
