Files
simstudioai--sim/apps/sim/tools/safe-assign.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

95 lines
2.9 KiB
TypeScript

import { describe, expect, it } from 'vitest'
import { isSafeKey, safeAssign } from '@/tools/safe-assign'
describe('isSafeKey', () => {
it.concurrent('should return false for __proto__', () => {
expect(isSafeKey('__proto__')).toBe(false)
})
it.concurrent('should return false for constructor', () => {
expect(isSafeKey('constructor')).toBe(false)
})
it.concurrent('should return false for prototype', () => {
expect(isSafeKey('prototype')).toBe(false)
})
it.concurrent('should return true for normal keys', () => {
expect(isSafeKey('name')).toBe(true)
expect(isSafeKey('email')).toBe(true)
expect(isSafeKey('customField')).toBe(true)
expect(isSafeKey('data')).toBe(true)
expect(isSafeKey('__internal')).toBe(true)
})
})
describe('safeAssign', () => {
it.concurrent('should assign safe properties', () => {
const target = { a: 1 }
const source = { b: 2, c: 3 }
const result = safeAssign(target, source)
expect(result).toEqual({ a: 1, b: 2, c: 3 })
expect(result).toBe(target)
})
it.concurrent('should filter out __proto__ key', () => {
const target = { a: 1 }
const source = { b: 2, __proto__: { polluted: true } } as Record<string, unknown>
const result = safeAssign(target, source)
expect(result).toEqual({ a: 1, b: 2 })
expect((result as any).__proto__).toBe(Object.prototype)
expect((Object.prototype as any).polluted).toBeUndefined()
})
it.concurrent('should filter out constructor key', () => {
const target = { a: 1 }
const source = { b: 2, constructor: { prototype: { polluted: true } } }
const result = safeAssign(target, source)
expect(result).toEqual({ a: 1, b: 2 })
expect((Object.prototype as any).polluted).toBeUndefined()
})
it.concurrent('should filter out prototype key', () => {
const target = { a: 1 }
const source = { b: 2, prototype: { polluted: true } }
const result = safeAssign(target, source)
expect(result).toEqual({ a: 1, b: 2 })
expect((Object.prototype as any).polluted).toBeUndefined()
})
it.concurrent('should handle null source', () => {
const target = { a: 1 }
const result = safeAssign(target, null as any)
expect(result).toEqual({ a: 1 })
})
it.concurrent('should handle undefined source', () => {
const target = { a: 1 }
const result = safeAssign(target, undefined as any)
expect(result).toEqual({ a: 1 })
})
it.concurrent('should handle non-object source', () => {
const target = { a: 1 }
const result = safeAssign(target, 'string' as any)
expect(result).toEqual({ a: 1 })
})
it.concurrent('should prevent prototype pollution attack', () => {
const maliciousPayload = JSON.parse('{"__proto__": {"isAdmin": true}, "normal": "value"}')
const target = {}
safeAssign(target, maliciousPayload)
const newObj = {}
expect((newObj as any).isAdmin).toBeUndefined()
expect((target as any).normal).toBe('value')
})
})