mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-01 05:49:54 +00:00
Introduces cents<->usd<->credit converters plus basic formatters and adds test. Lays groundwork to start converting UI components into displaying comfy credits. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7061-add-shared-comfy-credit-conversion-helpers-2bb6d73d3650810bb34fdf9bb3fc115b) by [Unito](https://www.unito.io) --------- Co-authored-by: Claude <noreply@anthropic.com>
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
import { describe, expect, vi } from 'vitest'
|
|
|
|
import { LGraphNode } from '@/lib/litegraph/src/litegraph'
|
|
import type { LGraphBadge } from '@/lib/litegraph/src/LGraphBadge'
|
|
import type { LGraphIcon } from '@/lib/litegraph/src/LGraphIcon'
|
|
|
|
import { subgraphTest } from '../../litegraph/subgraph/fixtures/subgraphFixtures'
|
|
|
|
import { usePriceBadge } from '@/composables/node/usePriceBadge'
|
|
|
|
vi.mock('@/stores/workspace/colorPaletteStore', () => ({
|
|
useColorPaletteStore: () => ({
|
|
completedActivePalette: {
|
|
light_theme: false,
|
|
colors: { litegraph_base: {} }
|
|
}
|
|
})
|
|
}))
|
|
|
|
vi.mock('@/composables/useFeatureFlags', () => ({
|
|
useFeatureFlags: () => ({
|
|
flags: {
|
|
subscriptionTiersEnabled: false // Test legacy badge behavior
|
|
}
|
|
})
|
|
}))
|
|
|
|
const { updateSubgraphCredits } = usePriceBadge()
|
|
|
|
const mockNode = new LGraphNode('mock node')
|
|
const mockIcon: Partial<LGraphIcon> = { unicode: '\ue96b' }
|
|
const badge: Partial<LGraphBadge> = {
|
|
icon: mockIcon as LGraphIcon,
|
|
text: '$0.05/Run'
|
|
}
|
|
mockNode.badges = [badge as LGraphBadge]
|
|
|
|
function getBadgeText(node: LGraphNode): string {
|
|
const badge = node.badges[0]
|
|
return (typeof badge === 'function' ? badge() : badge).text
|
|
}
|
|
|
|
describe('subgraph pricing', () => {
|
|
subgraphTest(
|
|
'should not display badge for subgraphs without API nodes',
|
|
({ subgraphWithNode }) => {
|
|
const { subgraphNode } = subgraphWithNode
|
|
updateSubgraphCredits(subgraphNode)
|
|
expect(subgraphNode.badges.length).toBe(0)
|
|
}
|
|
)
|
|
subgraphTest(
|
|
'should return the price of a single contained API node',
|
|
({ subgraphWithNode }) => {
|
|
const { subgraphNode, subgraph } = subgraphWithNode
|
|
subgraph.add(mockNode)
|
|
updateSubgraphCredits(subgraphNode)
|
|
expect(subgraphNode.badges.length).toBe(1)
|
|
expect(getBadgeText(subgraphNode)).toBe('$0.05/Run')
|
|
}
|
|
)
|
|
subgraphTest(
|
|
'should return the number of api nodes if more than one exists',
|
|
({ subgraphWithNode }) => {
|
|
const { subgraphNode, subgraph } = subgraphWithNode
|
|
for (let i = 0; i < 5; i++) subgraph.add(mockNode)
|
|
updateSubgraphCredits(subgraphNode)
|
|
expect(subgraphNode.badges.length).toBe(1)
|
|
expect(getBadgeText(subgraphNode)).toBe('Partner Nodes x 5')
|
|
}
|
|
)
|
|
})
|