6bf8bebf51
CI / Test and Build (push) Failing after 1s
CI / Migrate Dev DB (push) Has been skipped
CI / Migrate DB (push) Has been skipped
CodeQL / Analyze actions (push) Has been cancelled
CodeQL / Analyze javascript-typescript (push) Has been cancelled
CI / Detect Version (push) Has been cancelled
CI / Detect Desktop Changes (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/cron.Dockerfile, ubuntu-latest, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build AMD64 (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/cron.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/db.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/pii.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/realtime.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-8vcpu-ubuntu-2404-arm, ./docker/app.Dockerfile, linux-arm64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
Helm Chart / Lint, test, and validate chart (push) Has been cancelled
Helm Chart / Chart version bumped (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
CI / Build Dev ECR (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core) (push) Has been cancelled
CI / Promote Images (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/cron) (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 / Build Dev ECR (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Check Desktop Signing Secrets (push) Has been cancelled
CI / Desktop Release (push) Has been cancelled
CI / Create Desktop Prerelease (push) Has been cancelled
CI / Desktop Prerelease Build (push) Has been cancelled
CI / Publish Desktop Prerelease (push) Has been cancelled
CI / Prune Desktop Prereleases (push) Has been cancelled
Helm Chart / Install on kind and run helm test (push) Has been cancelled
386 lines
15 KiB
TypeScript
386 lines
15 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import {
|
|
dbChainMockFns,
|
|
flattenMockConditions,
|
|
hasMockCondition,
|
|
permissionsMock,
|
|
permissionsMockFns,
|
|
resetDbChainMock,
|
|
schemaMock,
|
|
} from '@sim/testing'
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
const {
|
|
mockApplyStorageUsageDeltasInTx,
|
|
mockEnsureUserStatsExists,
|
|
mockGetHighestPrioritySubscription,
|
|
mockMaybeNotifyStorageLimitForBillingContext,
|
|
mockResolveStorageBillingContext,
|
|
} = vi.hoisted(() => ({
|
|
mockApplyStorageUsageDeltasInTx: vi.fn(),
|
|
mockEnsureUserStatsExists: vi.fn(),
|
|
mockGetHighestPrioritySubscription: vi.fn(),
|
|
mockMaybeNotifyStorageLimitForBillingContext: vi.fn(),
|
|
mockResolveStorageBillingContext: vi.fn(),
|
|
}))
|
|
|
|
vi.mock('@/lib/workspaces/permissions/utils', () => permissionsMock)
|
|
vi.mock('@/lib/billing/storage', () => ({
|
|
applyStorageUsageDeltasInTx: mockApplyStorageUsageDeltasInTx,
|
|
maybeNotifyStorageLimitForBillingContext: mockMaybeNotifyStorageLimitForBillingContext,
|
|
resolveStorageBillingContext: mockResolveStorageBillingContext,
|
|
}))
|
|
vi.mock('@/lib/billing/core/subscription', () => ({
|
|
getHighestPrioritySubscription: mockGetHighestPrioritySubscription,
|
|
}))
|
|
vi.mock('@/lib/billing/core/usage', () => ({
|
|
ensureUserStatsExists: mockEnsureUserStatsExists,
|
|
}))
|
|
|
|
import {
|
|
getKnowledgeBases,
|
|
KnowledgeBasePermissionError,
|
|
updateKnowledgeBase,
|
|
} from '@/lib/knowledge/service'
|
|
|
|
/**
|
|
* The listing query authorizes on current workspace membership, never on stale creator
|
|
* identity: a user removed from a workspace must stop seeing knowledge bases they created
|
|
* there. The creator fallback exists only for legacy knowledge bases with no `workspaceId`.
|
|
*/
|
|
describe('getKnowledgeBases — creator fallback is scoped to legacy non-workspace KBs', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
resetDbChainMock()
|
|
})
|
|
|
|
/** Every disjunct that grants on `knowledgeBase.userId`, from the last select chain's WHERE. */
|
|
const capturedCreatorBranches = (): unknown[] => {
|
|
const [condition] = dbChainMockFns.where.mock.calls.at(-1) ?? []
|
|
const orNode = flattenMockConditions(condition).find((node) => node.type === 'or')
|
|
expect(orNode, 'WHERE clause has no or(...) branch').toBeDefined()
|
|
return (orNode?.conditions as unknown[]).filter((disjunct) =>
|
|
hasMockCondition(
|
|
disjunct,
|
|
(node) =>
|
|
node.type === 'eq' &&
|
|
node.left === schemaMock.knowledgeBase.userId &&
|
|
node.right === 'user-a'
|
|
)
|
|
)
|
|
}
|
|
|
|
/** The creator fallback must be the sole grant for legacy KBs and never reach workspace KBs. */
|
|
const expectCreatorBranchIsLegacyOnly = () => {
|
|
const branches = capturedCreatorBranches()
|
|
expect(branches).toHaveLength(1)
|
|
expect(
|
|
hasMockCondition(
|
|
branches[0],
|
|
(node) => node.type === 'isNull' && node.column === schemaMock.knowledgeBase.workspaceId
|
|
)
|
|
).toBe(true)
|
|
}
|
|
|
|
it('requires workspaceId IS NULL on the creator branch when no workspace filter is given', async () => {
|
|
await getKnowledgeBases('user-a', undefined, 'all')
|
|
|
|
expectCreatorBranchIsLegacyOnly()
|
|
})
|
|
|
|
it('keeps the same guard on the workspace-filtered branch', async () => {
|
|
await getKnowledgeBases('user-a', 'ws-1', 'active')
|
|
|
|
expectCreatorBranchIsLegacyOnly()
|
|
})
|
|
})
|
|
|
|
/**
|
|
* These tests guard the workspace mass-assignment fix:
|
|
* a user with write/admin on the *source* workspace must not be able to move a
|
|
* knowledge base into a workspace where they have no permission, and must not
|
|
* be able to clear `workspaceId` (which would orphan the KB to its original
|
|
* `userId`, who may not be the caller).
|
|
*/
|
|
describe('updateKnowledgeBase — workspace transfer authorization', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
dbChainMockFns.limit.mockReset()
|
|
resetDbChainMock()
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'u-1' }])
|
|
mockResolveStorageBillingContext.mockImplementation(async (workspaceId: string) => ({
|
|
workspaceId,
|
|
billedAccountUserId: `${workspaceId}-owner`,
|
|
billingEntity: { type: 'user', id: `${workspaceId}-owner` },
|
|
plan: 'team_25000',
|
|
customStorageLimitGB: null,
|
|
}))
|
|
mockApplyStorageUsageDeltasInTx.mockResolvedValue(100)
|
|
mockEnsureUserStatsExists.mockResolvedValue(undefined)
|
|
mockGetHighestPrioritySubscription.mockResolvedValue(null)
|
|
})
|
|
|
|
it('rejects workspaceId change without actorUserId', async () => {
|
|
await expect(
|
|
updateKnowledgeBase('kb-1', { workspaceId: 'ws-target' }, 'req-1')
|
|
).rejects.toBeInstanceOf(KnowledgeBasePermissionError)
|
|
expect(permissionsMockFns.mockGetUserEntityPermissions).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('rejects clearing workspaceId to null when actor is not the KB owner', async () => {
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'owner' }])
|
|
|
|
await expect(
|
|
updateKnowledgeBase('kb-1', { workspaceId: null }, 'req-1', { actorUserId: 'attacker' })
|
|
).rejects.toMatchObject({
|
|
code: 'KNOWLEDGE_BASE_FORBIDDEN',
|
|
message: 'Only the knowledge base owner can remove it from a workspace',
|
|
})
|
|
expect(permissionsMockFns.mockGetUserEntityPermissions).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('allows the KB owner to clear workspaceId to null (gate passes; target permission not checked)', async () => {
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'owner' }])
|
|
|
|
await expect(
|
|
updateKnowledgeBase('kb-1', { workspaceId: null }, 'req-1', { actorUserId: 'owner' })
|
|
).resolves.toBeDefined()
|
|
expect(permissionsMockFns.mockGetUserEntityPermissions).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('rejects transfer when actor has no permission on target workspace', async () => {
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'u-1' }])
|
|
permissionsMockFns.mockGetUserEntityPermissions.mockResolvedValueOnce(null)
|
|
|
|
await expect(
|
|
updateKnowledgeBase('kb-1', { workspaceId: 'ws-target' }, 'req-1', {
|
|
actorUserId: 'attacker',
|
|
})
|
|
).rejects.toMatchObject({
|
|
code: 'KNOWLEDGE_BASE_FORBIDDEN',
|
|
message: 'User does not have permission on the target workspace',
|
|
})
|
|
expect(permissionsMockFns.mockGetUserEntityPermissions).toHaveBeenCalledWith(
|
|
'attacker',
|
|
'workspace',
|
|
'ws-target'
|
|
)
|
|
})
|
|
|
|
it('rejects transfer when actor only has read permission on target workspace', async () => {
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'u-1' }])
|
|
permissionsMockFns.mockGetUserEntityPermissions.mockResolvedValueOnce('read')
|
|
|
|
await expect(
|
|
updateKnowledgeBase('kb-1', { workspaceId: 'ws-target' }, 'req-1', {
|
|
actorUserId: 'reader',
|
|
})
|
|
).rejects.toBeInstanceOf(KnowledgeBasePermissionError)
|
|
})
|
|
|
|
it('throws when knowledge base does not exist during transfer', async () => {
|
|
dbChainMockFns.limit.mockResolvedValueOnce([])
|
|
|
|
await expect(
|
|
updateKnowledgeBase('kb-missing', { workspaceId: 'ws-target' }, 'req-1', {
|
|
actorUserId: 'u-1',
|
|
})
|
|
).rejects.toThrow('Knowledge base kb-missing not found')
|
|
expect(permissionsMockFns.mockGetUserEntityPermissions).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('locks the knowledge base row (SELECT … FOR UPDATE) and enforces the pre-resolved permission', async () => {
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'u-1' }])
|
|
permissionsMockFns.mockGetUserEntityPermissions.mockResolvedValueOnce(null)
|
|
|
|
await expect(
|
|
updateKnowledgeBase('kb-1', { workspaceId: 'ws-target' }, 'req-1', {
|
|
actorUserId: 'attacker',
|
|
})
|
|
).rejects.toBeInstanceOf(KnowledgeBasePermissionError)
|
|
|
|
expect(dbChainMockFns.transaction).toHaveBeenCalledTimes(1)
|
|
expect(dbChainMockFns.for).toHaveBeenCalledWith('update')
|
|
})
|
|
})
|
|
|
|
/**
|
|
* These tests guard the file-authorization follow-through: KB file ownership is
|
|
* resolved from the trusted `workspace_files` binding, so when a KB moves to a
|
|
* new workspace the bindings for its stored files must move with it. Otherwise
|
|
* the bindings stay frozen at the upload-time workspace and the KB's files
|
|
* become unreadable after a move.
|
|
*/
|
|
describe('updateKnowledgeBase — file ownership binding re-point on workspace change', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
dbChainMockFns.limit.mockReset()
|
|
resetDbChainMock()
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'u-1' }])
|
|
mockResolveStorageBillingContext.mockImplementation(async (workspaceId: string) => ({
|
|
workspaceId,
|
|
billedAccountUserId: `${workspaceId}-owner`,
|
|
billingEntity: { type: 'user', id: `${workspaceId}-owner` },
|
|
plan: 'team_25000',
|
|
customStorageLimitGB: null,
|
|
}))
|
|
mockApplyStorageUsageDeltasInTx.mockResolvedValue(100)
|
|
mockEnsureUserStatsExists.mockResolvedValue(undefined)
|
|
mockGetHighestPrioritySubscription.mockResolvedValue(null)
|
|
})
|
|
|
|
// The mocked `@sim/db` cannot satisfy the post-transaction read-back select, so
|
|
// the call rejects after the transaction body commits. These tests assert the
|
|
// in-transaction binding statements, then swallow that read-back rejection.
|
|
const runIgnoringReadBack = (promise: Promise<unknown>) => promise.catch(() => undefined)
|
|
|
|
it('re-points file ownership bindings to the new workspace on a move', async () => {
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'u-1' }])
|
|
permissionsMockFns.mockGetUserEntityPermissions.mockResolvedValueOnce('admin')
|
|
|
|
await runIgnoringReadBack(
|
|
updateKnowledgeBase('kb-1', { workspaceId: 'ws-target' }, 'req-1', { actorUserId: 'u-1' })
|
|
)
|
|
|
|
// Two updates inside the txn: the KB row, then the file bindings.
|
|
expect(dbChainMockFns.update).toHaveBeenCalledTimes(2)
|
|
expect(dbChainMockFns.set).toHaveBeenCalledWith({ workspaceId: 'ws-target' })
|
|
})
|
|
|
|
it('transfers the SQL-summed non-connector bytes with pre-resolved payer contexts', async () => {
|
|
dbChainMockFns.limit
|
|
.mockResolvedValueOnce([{ workspaceId: 'ws-current', userId: 'u-1' }])
|
|
.mockResolvedValueOnce([{ workspaceId: 'ws-current', userId: 'u-1' }])
|
|
.mockResolvedValueOnce([{ bytes: 321 }])
|
|
.mockResolvedValueOnce([])
|
|
permissionsMockFns.mockGetUserEntityPermissions.mockResolvedValueOnce('admin')
|
|
|
|
await runIgnoringReadBack(
|
|
updateKnowledgeBase('kb-1', { workspaceId: 'ws-target' }, 'req-1', {
|
|
actorUserId: 'u-1',
|
|
})
|
|
)
|
|
|
|
expect(mockResolveStorageBillingContext).toHaveBeenCalledWith('ws-current')
|
|
expect(mockResolveStorageBillingContext).toHaveBeenCalledWith('ws-target')
|
|
expect(mockApplyStorageUsageDeltasInTx).toHaveBeenCalledWith(expect.anything(), {
|
|
workspaceDeltas: [
|
|
{
|
|
context: expect.objectContaining({ workspaceId: 'ws-current' }),
|
|
deltaBytes: -321,
|
|
},
|
|
{
|
|
context: expect.objectContaining({ workspaceId: 'ws-target' }),
|
|
deltaBytes: 321,
|
|
},
|
|
],
|
|
legacyDeltas: [],
|
|
})
|
|
})
|
|
|
|
it('moves billable bytes from a workspace payer to the owner personal counter', async () => {
|
|
dbChainMockFns.limit
|
|
.mockResolvedValueOnce([{ workspaceId: 'ws-current', userId: 'owner' }])
|
|
.mockResolvedValueOnce([{ workspaceId: 'ws-current', userId: 'owner' }])
|
|
.mockResolvedValueOnce([{ bytes: 321 }])
|
|
.mockResolvedValueOnce([])
|
|
|
|
await runIgnoringReadBack(
|
|
updateKnowledgeBase('kb-1', { workspaceId: null }, 'req-1', { actorUserId: 'owner' })
|
|
)
|
|
|
|
expect(mockEnsureUserStatsExists).toHaveBeenCalledWith('owner')
|
|
expect(mockApplyStorageUsageDeltasInTx).toHaveBeenCalledWith(expect.anything(), {
|
|
workspaceDeltas: [
|
|
{
|
|
context: expect.objectContaining({ workspaceId: 'ws-current' }),
|
|
deltaBytes: -321,
|
|
},
|
|
],
|
|
legacyDeltas: [{ userId: 'owner', subscription: null, deltaBytes: 321 }],
|
|
})
|
|
expect(mockMaybeNotifyStorageLimitForBillingContext).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('moves billable bytes from the owner personal counter to a workspace payer', async () => {
|
|
dbChainMockFns.limit
|
|
.mockResolvedValueOnce([{ workspaceId: null, userId: 'owner' }])
|
|
.mockResolvedValueOnce([{ workspaceId: null, userId: 'owner' }])
|
|
.mockResolvedValueOnce([{ bytes: 321 }])
|
|
.mockResolvedValueOnce([])
|
|
permissionsMockFns.mockGetUserEntityPermissions.mockResolvedValueOnce('admin')
|
|
mockApplyStorageUsageDeltasInTx.mockResolvedValueOnce(421)
|
|
|
|
await runIgnoringReadBack(
|
|
updateKnowledgeBase('kb-1', { workspaceId: 'ws-target' }, 'req-1', {
|
|
actorUserId: 'owner',
|
|
})
|
|
)
|
|
|
|
expect(mockApplyStorageUsageDeltasInTx).toHaveBeenCalledWith(expect.anything(), {
|
|
workspaceDeltas: [
|
|
{
|
|
context: expect.objectContaining({ workspaceId: 'ws-target' }),
|
|
deltaBytes: 321,
|
|
},
|
|
],
|
|
legacyDeltas: [{ userId: 'owner', subscription: null, deltaBytes: -321 }],
|
|
})
|
|
expect(mockMaybeNotifyStorageLimitForBillingContext).toHaveBeenCalledWith(
|
|
expect.objectContaining({ workspaceId: 'ws-target' }),
|
|
421
|
|
)
|
|
})
|
|
|
|
it('clears file ownership bindings when the KB is removed from its workspace', async () => {
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'owner' }])
|
|
|
|
await runIgnoringReadBack(
|
|
updateKnowledgeBase('kb-1', { workspaceId: null }, 'req-1', { actorUserId: 'owner' })
|
|
)
|
|
|
|
expect(dbChainMockFns.update).toHaveBeenCalledTimes(2)
|
|
expect(dbChainMockFns.set).toHaveBeenCalledWith({ workspaceId: null })
|
|
})
|
|
|
|
it('does not re-point bindings when promoting a personal (null-workspace) KB into a workspace', async () => {
|
|
// A null current workspace owns no bindings, so the move must not rewrite
|
|
// any binding — this prevents a key planted in a personal KB from being
|
|
// laundered into the destination workspace on move.
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: null, userId: 'owner' }])
|
|
permissionsMockFns.mockGetUserEntityPermissions.mockResolvedValueOnce('admin')
|
|
|
|
await runIgnoringReadBack(
|
|
updateKnowledgeBase('kb-1', { workspaceId: 'ws-target' }, 'req-1', { actorUserId: 'owner' })
|
|
)
|
|
|
|
// Only the KB row is updated; the binding re-point is skipped entirely.
|
|
expect(dbChainMockFns.update).toHaveBeenCalledTimes(1)
|
|
expect(dbChainMockFns.set).not.toHaveBeenCalledWith({ workspaceId: 'ws-target' })
|
|
})
|
|
|
|
it('does not touch bindings when the workspace is unchanged', async () => {
|
|
dbChainMockFns.limit.mockResolvedValue([{ workspaceId: 'ws-current', userId: 'u-1' }])
|
|
|
|
await runIgnoringReadBack(
|
|
updateKnowledgeBase('kb-1', { workspaceId: 'ws-current' }, 'req-1', { actorUserId: 'u-1' })
|
|
)
|
|
|
|
// Only the KB row is updated; no binding re-point statement runs.
|
|
expect(dbChainMockFns.update).toHaveBeenCalledTimes(1)
|
|
expect(dbChainMockFns.set).not.toHaveBeenCalledWith({ workspaceId: 'ws-current' })
|
|
})
|
|
|
|
it('does not touch bindings when no workspace change is requested', async () => {
|
|
dbChainMockFns.limit
|
|
.mockResolvedValueOnce([{ workspaceId: 'ws-current', userId: 'u-1' }]) // currentKb lock
|
|
.mockResolvedValueOnce([]) // duplicate-name check: none
|
|
|
|
await runIgnoringReadBack(updateKnowledgeBase('kb-1', { name: 'Renamed' }, 'req-1'))
|
|
|
|
expect(dbChainMockFns.update).toHaveBeenCalledTimes(1)
|
|
})
|
|
})
|