mirror of
https://github.com/langgenius/dify.git
synced 2026-08-28 19:16:51 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: fatelei <fatelei@gmail.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: 盐粒 Yanli <yanli@dify.ai> Co-authored-by: Charles Yao <chongbinyao33@gmail.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com> Co-authored-by: yunlu.wen <yunlu.wen@dify.ai> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: Jingyi <jingyi.qi@dify.ai> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: hjlarry <hjlarry@163.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xiyuan Chen <52963600+GareArc@users.noreply.github.com> Co-authored-by: gigglewang <gigglewang@dify.ai> Co-authored-by: chariri <w@chariri.moe> Co-authored-by: Evan <2869018789@qq.com> Co-authored-by: zyssyz123 <916125788@qq.com>
140 lines
4.1 KiB
TypeScript
140 lines
4.1 KiB
TypeScript
import type { Mock } from 'vitest'
|
|
import type { UsagePlanInfo } from '../../type'
|
|
import { fireEvent, render, screen } from '@testing-library/react'
|
|
import * as React from 'react'
|
|
import { useAppContext } from '@/context/app-context'
|
|
import { useGetPricingPageLanguage } from '@/context/i18n'
|
|
import { useProviderContext } from '@/context/provider-context'
|
|
import { Plan } from '../../type'
|
|
import Pricing from '../index'
|
|
|
|
let mockLanguage: string | null = 'en'
|
|
|
|
vi.mock('../plans/self-hosted-plan-item/list', () => ({
|
|
default: ({ plan }: { plan: string }) => (
|
|
<div data-testid={`list-${plan}`}>
|
|
List for
|
|
{plan}
|
|
</div>
|
|
),
|
|
}))
|
|
|
|
vi.mock('@/next/link', () => ({
|
|
default: ({ children, href, className, target }: { children: React.ReactNode, href: string, className?: string, target?: string }) => (
|
|
<a href={href} className={className} target={target} data-testid="pricing-link">
|
|
{children}
|
|
</a>
|
|
),
|
|
}))
|
|
|
|
vi.mock('@/context/app-context', () => ({
|
|
useAppContext: vi.fn(),
|
|
}))
|
|
|
|
vi.mock('@/context/provider-context', () => ({
|
|
useProviderContext: vi.fn(),
|
|
}))
|
|
|
|
vi.mock('@/context/i18n', () => ({
|
|
useGetPricingPageLanguage: vi.fn(),
|
|
}))
|
|
|
|
const buildUsage = (): UsagePlanInfo => ({
|
|
buildApps: 0,
|
|
teamMembers: 0,
|
|
annotatedResponse: 0,
|
|
documentsUploadQuota: 0,
|
|
apiRateLimit: 0,
|
|
triggerEvents: 0,
|
|
vectorSpace: 0,
|
|
})
|
|
|
|
describe('Pricing', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
mockLanguage = 'en'
|
|
;(useAppContext as Mock).mockReturnValue({
|
|
isCurrentWorkspaceManager: true,
|
|
workspacePermissionKeys: ['billing.manage'],
|
|
})
|
|
;(useProviderContext as Mock).mockReturnValue({
|
|
plan: {
|
|
type: Plan.sandbox,
|
|
usage: buildUsage(),
|
|
total: buildUsage(),
|
|
},
|
|
enableEducationPlan: false,
|
|
isEducationAccount: false,
|
|
})
|
|
;(useGetPricingPageLanguage as Mock).mockImplementation(() => mockLanguage)
|
|
})
|
|
|
|
describe('Rendering', () => {
|
|
it('should render pricing header and localized footer link', () => {
|
|
render(<Pricing onCancel={vi.fn()} />)
|
|
|
|
expect(screen.getByRole('dialog', { name: 'billing.plansCommon.title.plans' })).toBeInTheDocument()
|
|
expect(screen.getByText('billing.plansCommon.title.plans')).toBeInTheDocument()
|
|
expect(screen.getByTestId('pricing-link')).toHaveAttribute('href', 'https://dify.ai/en/pricing#plans-and-features')
|
|
})
|
|
|
|
it('should default to yearly billing for education accounts', () => {
|
|
;(useAppContext as Mock).mockReturnValue({
|
|
isCurrentWorkspaceManager: false,
|
|
workspacePermissionKeys: ['billing.manage'],
|
|
})
|
|
;(useProviderContext as Mock).mockReturnValue({
|
|
plan: {
|
|
type: Plan.sandbox,
|
|
usage: buildUsage(),
|
|
total: buildUsage(),
|
|
},
|
|
enableEducationPlan: true,
|
|
isEducationAccount: true,
|
|
})
|
|
|
|
render(<Pricing onCancel={vi.fn()} />)
|
|
|
|
expect(screen.getByRole('switch')).toBeChecked()
|
|
})
|
|
|
|
it('should not default to yearly billing when billing manage permission is missing', () => {
|
|
;(useAppContext as Mock).mockReturnValue({
|
|
isCurrentWorkspaceManager: true,
|
|
workspacePermissionKeys: [],
|
|
})
|
|
;(useProviderContext as Mock).mockReturnValue({
|
|
plan: {
|
|
type: Plan.sandbox,
|
|
usage: buildUsage(),
|
|
total: buildUsage(),
|
|
},
|
|
enableEducationPlan: true,
|
|
isEducationAccount: true,
|
|
})
|
|
|
|
render(<Pricing onCancel={vi.fn()} />)
|
|
|
|
expect(screen.getByRole('switch')).not.toBeChecked()
|
|
})
|
|
})
|
|
|
|
describe('Props', () => {
|
|
it('should allow switching categories', () => {
|
|
render(<Pricing onCancel={vi.fn()} />)
|
|
|
|
fireEvent.click(screen.getByText('billing.plansCommon.self'))
|
|
expect(screen.queryByRole('switch')).not.toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
describe('Edge Cases', () => {
|
|
it('should fall back to default pricing URL when language is empty', () => {
|
|
mockLanguage = ''
|
|
render(<Pricing onCancel={vi.fn()} />)
|
|
|
|
expect(screen.getByTestId('pricing-link')).toHaveAttribute('href', 'https://dify.ai/pricing#plans-and-features')
|
|
})
|
|
})
|
|
})
|