Files
Web_FreeCAD_Bitbybit/tests/propertyBoolListTransaction.test.ts
wangdequan d11566403d
Some checks failed
real-verification / chrome (push) Has been cancelled
real-verification / freecad-oracle (push) Has been cancelled
real-verification / wasm (push) Has been cancelled
feat: close ordered pairs and property codec batches
2026-08-17 04:58:46 -04:00

91 lines
5.3 KiB
TypeScript

import { test } from 'node:test'
import assert from 'node:assert/strict'
import { createWebCadFacade } from '../src/facade/mockFacade'
import { encodeFreecadPropertyStatus } from '../src/facade/propertyStatus'
import type { DocumentSnapshot, FacadeEvent } from '../src/facade/types'
const fixture = (): DocumentSnapshot => ({
id: 'property-boollist-transaction',
label: 'PropertyBoolList Transaction',
version: 1,
dirty: false,
readOnly: false,
units: 'mm',
tree: [
{ id: 'BoolListProbe', label: 'Bool list probe', type: 'feature', state: 'valid' },
{ id: 'VisibilityProbe', label: 'Visibility probe', type: 'feature', state: 'valid' },
],
objects: [
{
id: 'BoolListProbe',
typeId: 'App::FeatureTest',
properties: [{ name: 'BoolList', label: 'Bool list', group: 'Test', scope: 'data', type: 'App::PropertyBoolList', value: [false], recompute: true }],
},
{
id: 'VisibilityProbe',
typeId: 'App::Link',
properties: [{ name: 'VisibilityList', label: 'Visibility list', group: 'Link', scope: 'data', type: 'App::PropertyBoolList', value: [true, true], nativeStatus: encodeFreecadPropertyStatus(['Immutable', 'Hidden', 'LockDynamic']), hidden: true, readOnly: true, recompute: true }],
},
],
dependencies: [],
recompute: { generation: 0, status: 'idle', objectStates: { BoolListProbe: 'up-to-date', VisibilityProbe: 'up-to-date' }, dirtyObjects: [], order: [], errors: [] },
})
const valueOf = (facade: ReturnType<typeof createWebCadFacade>, objectId = 'BoolListProbe', propertyName = 'BoolList') => facade.app.document.getObject(objectId)?.properties.find((property) => property.name === propertyName)?.value
test('App::PropertyBoolList transaction closes undo, redo, stale, cancel, failure and resource ownership', async () => {
const facade = createWebCadFacade({ initialDocument: fixture(), runtimeMode: 'mock' })
const events: FacadeEvent[] = []
facade.subscribe((event) => {
if (event.type === 'property.before-change' || event.type === 'property.changed' || event.type === 'transaction.committed') events.push(event)
})
const resourcesBefore = facade.geometry.capabilities()
const requested = [true, false, true]
facade.app.document.setProperty({ objectId: 'BoolListProbe', propertyName: 'BoolList', value: requested, expectedDocumentVersion: 1 })
requested[0] = false
assert.deepEqual(valueOf(facade), [true, false, true])
const exposed = valueOf(facade) as boolean[]
exposed[1] = true
assert.deepEqual(valueOf(facade), [true, false, true])
assert.equal(facade.app.document.getActive().version, 2)
assert.equal(facade.app.document.getActive().dirty, true)
assert.equal(facade.app.document.getActive().recompute?.objectStates.BoolListProbe, 'touched')
assert.deepEqual(events.map((event) => event.type), ['property.before-change', 'property.changed', 'transaction.committed'])
assert.equal(new Set(events.map((event) => 'transactionId' in event ? event.transactionId : '')).size, 1)
const committed = events[2]
assert.equal(committed.type, 'transaction.committed')
if (committed.type === 'transaction.committed') assert.deepEqual({ operation: committed.operation, beforeVersion: committed.beforeVersion, afterVersion: committed.afterVersion }, { operation: 'property.set', beforeVersion: 1, afterVersion: 2 })
facade.history.undo()
assert.deepEqual(valueOf(facade), [false])
assert.equal(facade.app.document.getActive().version, 1)
assert.equal(facade.history.canUndo(), false)
assert.equal(facade.history.canRedo(), true)
facade.history.redo()
assert.deepEqual(valueOf(facade), [true, false, true])
assert.equal(facade.app.document.getActive().version, 2)
assert.equal(facade.history.canUndo(), true)
assert.equal(facade.history.canRedo(), false)
const stableState = JSON.stringify(facade.app.document.getActive())
const stableEvents = events.length
assert.throws(() => facade.app.document.setProperty({ objectId: 'BoolListProbe', propertyName: 'BoolList', value: [], expectedDocumentVersion: 1 }), /Stale document version: expected 1, current 2/)
const cancelled = new AbortController()
cancelled.abort()
assert.throws(() => facade.app.document.setProperty({ objectId: 'BoolListProbe', propertyName: 'BoolList', value: [], expectedDocumentVersion: 2, signal: cancelled.signal }), (error: unknown) => error instanceof DOMException && error.name === 'AbortError')
assert.throws(() => facade.app.document.setProperty({ objectId: 'BoolListProbe', propertyName: 'BoolList', value: [true, 'false' as unknown as boolean] }), /boolean list/)
assert.throws(() => facade.app.document.setProperty({ objectId: 'VisibilityProbe', propertyName: 'VisibilityList', value: [false, true] }), /Visibility list is read-only/)
assert.equal(JSON.stringify(facade.app.document.getActive()), stableState)
assert.equal(events.length, stableEvents)
assert.equal(facade.history.canUndo(), true)
assert.equal(facade.history.canRedo(), false)
const resourcesAfter = facade.geometry.capabilities()
assert.deepEqual(
{ shapeCount: resourcesAfter.shapeCount, kernelReferenceCount: resourcesAfter.kernelReferenceCount, releasedShapeCount: resourcesAfter.releasedShapeCount },
{ shapeCount: resourcesBefore.shapeCount, kernelReferenceCount: resourcesBefore.kernelReferenceCount, releasedShapeCount: resourcesBefore.releasedShapeCount },
)
await facade.project.dispose()
})