Files
simstudioai--sim/apps/sim/tools/jupyter/content-transforms.test.ts
T
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

120 lines
3.2 KiB
TypeScript

/**
* @vitest-environment node
*/
import { describe, expect, it } from 'vitest'
import { jupyterCopyContentTool } from '@/tools/jupyter/copy_content'
import { jupyterCreateFileTool } from '@/tools/jupyter/create_file'
import { jupyterGetContentTool } from '@/tools/jupyter/get_content'
import { jupyterListContentsTool } from '@/tools/jupyter/list_contents'
import { jupyterRenameContentTool } from '@/tools/jupyter/rename_content'
const AUTH = {
serverUrl: 'http://localhost:8888',
token: 'token',
}
const CONTENT_MODEL = {
name: 'notes.txt',
path: 'docs/notes.txt',
type: 'file',
writable: true,
created: '2026-07-09T10:00:00Z',
last_modified: '2026-07-09T11:00:00Z',
size: 5,
mimetype: 'text/plain',
format: 'text',
content: 'hello',
}
describe('Jupyter content transforms', () => {
it('preserves existing output shapes for valid Contents API models', async () => {
await expect(
jupyterCreateFileTool.transformResponse?.(Response.json(CONTENT_MODEL), {
...AUTH,
path: CONTENT_MODEL.path,
type: 'file',
})
).resolves.toMatchObject({
success: true,
output: {
name: CONTENT_MODEL.name,
path: CONTENT_MODEL.path,
type: 'file',
createdAt: CONTENT_MODEL.created,
lastModified: CONTENT_MODEL.last_modified,
},
})
await expect(
jupyterCopyContentTool.transformResponse?.(Response.json(CONTENT_MODEL), {
...AUTH,
path: CONTENT_MODEL.path,
copyFromPath: 'notes.txt',
})
).resolves.toMatchObject({
success: true,
output: {
name: CONTENT_MODEL.name,
path: CONTENT_MODEL.path,
createdAt: CONTENT_MODEL.created,
},
})
await expect(
jupyterRenameContentTool.transformResponse?.(Response.json(CONTENT_MODEL), {
...AUTH,
path: 'notes.txt',
newPath: CONTENT_MODEL.path,
})
).resolves.toMatchObject({
success: true,
output: {
name: CONTENT_MODEL.name,
path: CONTENT_MODEL.path,
lastModified: CONTENT_MODEL.last_modified,
},
})
await expect(
jupyterListContentsTool.transformResponse?.(
Response.json({ ...CONTENT_MODEL, path: 'docs', content: [CONTENT_MODEL] }),
{ ...AUTH, path: 'docs' }
)
).resolves.toMatchObject({
success: true,
output: {
path: 'docs',
items: [
{
name: CONTENT_MODEL.name,
path: CONTENT_MODEL.path,
type: 'file',
writable: true,
created: CONTENT_MODEL.created,
lastModified: CONTENT_MODEL.last_modified,
size: CONTENT_MODEL.size,
mimetype: CONTENT_MODEL.mimetype,
format: CONTENT_MODEL.format,
},
],
},
})
await expect(
jupyterGetContentTool.transformResponse?.(Response.json(CONTENT_MODEL), {
...AUTH,
path: CONTENT_MODEL.path,
})
).resolves.toMatchObject({
success: true,
output: {
name: CONTENT_MODEL.name,
path: CONTENT_MODEL.path,
mimetype: CONTENT_MODEL.mimetype,
text: CONTENT_MODEL.content,
file: null,
},
})
})
})