mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 06:19:58 +00:00
## Summary Removed incorrect tooltip displayed on the remaining credit balance in the subscription panel. ## Changes - **What**: Removed unused `refreshTooltip` destructure and i18n translation key - **Breaking**: None Fixes #6694 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7383-fix-remove-incorrect-tooltip-on-remaining-credit-balance-2c66d73d3650814eaee0f3c9006b7bd6) by [Unito](https://www.unito.io) --------- Co-authored-by: Claude <noreply@anthropic.com>
110 lines
3.0 KiB
TypeScript
110 lines
3.0 KiB
TypeScript
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
import { useSubscriptionActions } from '@/platform/cloud/subscription/composables/useSubscriptionActions'
|
|
|
|
// Mock dependencies
|
|
const mockFetchBalance = vi.fn()
|
|
const mockFetchStatus = vi.fn()
|
|
const mockShowTopUpCreditsDialog = vi.fn()
|
|
const mockExecute = vi.fn()
|
|
|
|
vi.mock('@/composables/auth/useFirebaseAuthActions', () => ({
|
|
useFirebaseAuthActions: () => ({
|
|
fetchBalance: mockFetchBalance
|
|
})
|
|
}))
|
|
|
|
vi.mock('@/platform/cloud/subscription/composables/useSubscription', () => ({
|
|
useSubscription: () => ({
|
|
fetchStatus: mockFetchStatus
|
|
})
|
|
}))
|
|
|
|
vi.mock('@/services/dialogService', () => ({
|
|
useDialogService: () => ({
|
|
showTopUpCreditsDialog: mockShowTopUpCreditsDialog
|
|
})
|
|
}))
|
|
|
|
vi.mock('@/stores/commandStore', () => ({
|
|
useCommandStore: () => ({
|
|
execute: mockExecute
|
|
})
|
|
}))
|
|
|
|
// Mock window.open
|
|
const mockOpen = vi.fn()
|
|
Object.defineProperty(window, 'open', {
|
|
writable: true,
|
|
value: mockOpen
|
|
})
|
|
|
|
describe('useSubscriptionActions', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
})
|
|
|
|
describe('handleAddApiCredits', () => {
|
|
it('should call showTopUpCreditsDialog', () => {
|
|
const { handleAddApiCredits } = useSubscriptionActions()
|
|
handleAddApiCredits()
|
|
expect(mockShowTopUpCreditsDialog).toHaveBeenCalledOnce()
|
|
})
|
|
})
|
|
|
|
describe('handleMessageSupport', () => {
|
|
it('should execute support command and manage loading state', async () => {
|
|
const { handleMessageSupport, isLoadingSupport } =
|
|
useSubscriptionActions()
|
|
|
|
expect(isLoadingSupport.value).toBe(false)
|
|
|
|
const promise = handleMessageSupport()
|
|
expect(isLoadingSupport.value).toBe(true)
|
|
|
|
await promise
|
|
expect(mockExecute).toHaveBeenCalledWith('Comfy.ContactSupport')
|
|
expect(isLoadingSupport.value).toBe(false)
|
|
})
|
|
|
|
it('should handle errors gracefully', async () => {
|
|
mockExecute.mockRejectedValueOnce(new Error('Command failed'))
|
|
const { handleMessageSupport, isLoadingSupport } =
|
|
useSubscriptionActions()
|
|
|
|
await handleMessageSupport()
|
|
expect(isLoadingSupport.value).toBe(false)
|
|
})
|
|
})
|
|
|
|
describe('handleRefresh', () => {
|
|
it('should call both fetchBalance and fetchStatus', async () => {
|
|
const { handleRefresh } = useSubscriptionActions()
|
|
await handleRefresh()
|
|
|
|
expect(mockFetchBalance).toHaveBeenCalledOnce()
|
|
expect(mockFetchStatus).toHaveBeenCalledOnce()
|
|
})
|
|
|
|
it('should handle errors gracefully', async () => {
|
|
mockFetchBalance.mockRejectedValueOnce(new Error('Fetch failed'))
|
|
const { handleRefresh } = useSubscriptionActions()
|
|
|
|
// Should not throw
|
|
await expect(handleRefresh()).resolves.toBeUndefined()
|
|
})
|
|
})
|
|
|
|
describe('handleLearnMoreClick', () => {
|
|
it('should open learn more URL', () => {
|
|
const { handleLearnMoreClick } = useSubscriptionActions()
|
|
handleLearnMoreClick()
|
|
|
|
expect(mockOpen).toHaveBeenCalledWith(
|
|
'https://docs.comfy.org/get_started/cloud',
|
|
'_blank'
|
|
)
|
|
})
|
|
})
|
|
})
|