d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
109 lines
3.8 KiB
TypeScript
109 lines
3.8 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
const { mockGetHighestPrioritySubscription, mockGetWorkspaceBilledAccountUserId, billingState } =
|
|
vi.hoisted(() => ({
|
|
mockGetHighestPrioritySubscription: vi.fn(),
|
|
mockGetWorkspaceBilledAccountUserId: vi.fn(),
|
|
billingState: { isBillingEnabled: true, isFreeApiDeploymentGateEnabled: true },
|
|
}))
|
|
|
|
vi.mock('@/lib/core/config/env-flags', () => ({
|
|
get isBillingEnabled() {
|
|
return billingState.isBillingEnabled
|
|
},
|
|
get isFreeApiDeploymentGateEnabled() {
|
|
return billingState.isFreeApiDeploymentGateEnabled
|
|
},
|
|
}))
|
|
|
|
vi.mock('@/lib/billing/core/subscription', () => ({
|
|
getHighestPrioritySubscription: mockGetHighestPrioritySubscription,
|
|
}))
|
|
|
|
vi.mock('@/lib/workspaces/utils', () => ({
|
|
getWorkspaceBilledAccountUserId: mockGetWorkspaceBilledAccountUserId,
|
|
}))
|
|
|
|
import {
|
|
isApiExecutionEntitled,
|
|
isWorkspaceApiExecutionEntitled,
|
|
} from '@/lib/billing/core/api-access'
|
|
|
|
describe('isApiExecutionEntitled', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
billingState.isBillingEnabled = true
|
|
billingState.isFreeApiDeploymentGateEnabled = true
|
|
})
|
|
|
|
it('is false for a free plan', async () => {
|
|
mockGetHighestPrioritySubscription.mockResolvedValue({ plan: 'free' })
|
|
expect(await isApiExecutionEntitled('user-1')).toBe(false)
|
|
})
|
|
|
|
it('is false when there is no subscription', async () => {
|
|
mockGetHighestPrioritySubscription.mockResolvedValue(null)
|
|
expect(await isApiExecutionEntitled('user-1')).toBe(false)
|
|
})
|
|
|
|
it.each(['pro', 'pro_6000', 'team', 'team_25000', 'enterprise'])(
|
|
'is true for paid plan %s',
|
|
async (plan) => {
|
|
mockGetHighestPrioritySubscription.mockResolvedValue({ plan })
|
|
expect(await isApiExecutionEntitled('user-1')).toBe(true)
|
|
}
|
|
)
|
|
|
|
it('is true on self-hosted regardless of plan, without a subscription lookup', async () => {
|
|
billingState.isBillingEnabled = false
|
|
expect(await isApiExecutionEntitled('user-1')).toBe(true)
|
|
expect(mockGetHighestPrioritySubscription).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('is true (gate off) when the feature flag is disabled, even with billing on', async () => {
|
|
billingState.isFreeApiDeploymentGateEnabled = false
|
|
expect(await isApiExecutionEntitled('user-1')).toBe(true)
|
|
expect(mockGetHighestPrioritySubscription).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('is true when userId is missing', async () => {
|
|
expect(await isApiExecutionEntitled(undefined)).toBe(true)
|
|
expect(mockGetHighestPrioritySubscription).not.toHaveBeenCalled()
|
|
})
|
|
})
|
|
|
|
describe('isWorkspaceApiExecutionEntitled', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
billingState.isBillingEnabled = true
|
|
billingState.isFreeApiDeploymentGateEnabled = true
|
|
})
|
|
|
|
it('is false when the workspace billed account is free', async () => {
|
|
mockGetWorkspaceBilledAccountUserId.mockResolvedValue('owner-1')
|
|
mockGetHighestPrioritySubscription.mockResolvedValue({ plan: 'free' })
|
|
expect(await isWorkspaceApiExecutionEntitled('ws-1')).toBe(false)
|
|
})
|
|
|
|
it('is true when the workspace billed account is paid', async () => {
|
|
mockGetWorkspaceBilledAccountUserId.mockResolvedValue('owner-1')
|
|
mockGetHighestPrioritySubscription.mockResolvedValue({ plan: 'team_6000' })
|
|
expect(await isWorkspaceApiExecutionEntitled('ws-1')).toBe(true)
|
|
})
|
|
|
|
it('skips the billed-account lookup on self-hosted', async () => {
|
|
billingState.isBillingEnabled = false
|
|
expect(await isWorkspaceApiExecutionEntitled('ws-1')).toBe(true)
|
|
expect(mockGetWorkspaceBilledAccountUserId).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('skips the lookup (gate off) when the feature flag is disabled', async () => {
|
|
billingState.isFreeApiDeploymentGateEnabled = false
|
|
expect(await isWorkspaceApiExecutionEntitled('ws-1')).toBe(true)
|
|
expect(mockGetWorkspaceBilledAccountUserId).not.toHaveBeenCalled()
|
|
})
|
|
})
|