Files
Aislo/B07_DesignDetail/openwebcad/test/entities/circle/circle.test.ts
T
eomsangdonandClaude Fable 5 6e195afb69 feat(B07,B08): 워크플로 순서 교환 — 상세설계를 수량산출 앞으로
횡단설계(B06) 다음을 상세설계 → 수량산출 → 설계도서 순으로 재배열하고,
폴더 번호가 흐름과 일치하도록 이름을 맞바꾼다.

- B08_DesignDetail → B07_DesignDetail, B07_Quantity → B08_Quantity
  (파일 접두어·식별자·라우트·locale 키 전량 스왑)
- STAGE_KEYS 4=DESIGN_DETAIL, 5=QUANTITY 스왑 + 라우터 stage 리터럴 교체
- CAD 마운트 /b08-cad → /b07-cad (main.py·vite proxy·iframe URL),
  openwebcad Toolbar 라벨 B07로 수정 후 재빌드
- 유지: openwebcad postMessage 프로토콜 aislo:b08:*·패키지명(내부 식별자)
- 기존 프로젝트 storage 폴더 rename + project_manifest 갱신,
  DB project_workflow_stages stage_no 4↔5 행 스왑 완료

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-29 16:16:46 +09:00

40 lines
1.5 KiB
TypeScript

/* eslint-disable @typescript-eslint/no-explicit-any */
/*
* Draw a rectangle to the screen and check if the json export contains the correct data using the vitest testing framework
*/
import {expect, test} from 'vitest';
import {getEntities} from '../../../src/state';
import {EntityName, type JsonEntity} from '../../../src/entities/Entity';
import {initApplication} from '../../helpers/init-application';
import {CANVAS_HEIGHT} from '../../helpers/tests.consts';
import type {CircleJsonData} from '../../../src/entities/CircleEntity';
import circleRecording from './circle.recording.json';
import {replayRecording} from '../../helpers/replay-recording';
test('Draw circle', async () => {
const inputController = initApplication();
replayRecording(inputController, circleRecording);
const entities = getEntities();
expect(entities).toHaveLength(1);
const circleEntity = entities[0];
expect(circleEntity.getType()).toBe(EntityName.Circle);
const circleJson =
(await circleEntity.toJson()) as JsonEntity<CircleJsonData>;
expect(circleJson.lineColor).toBe('#fff');
expect(circleJson.lineWidth).toBe(1);
expect(circleJson.type).toBe('Circle');
expect(circleJson.shapeData.center.x).toBe(325);
expect(circleJson.shapeData.center.y).toBe(CANVAS_HEIGHT - 257);
const diffX = 424 - 257;
const diffY = 366 - 325;
expect(circleJson.shapeData.radius).toBe(
Math.sqrt(diffX * diffX + diffY * diffY),
);
});