Files
sam-scenarios/shipment-dispatch.json
김보곤 d8638a0fb3 refactor: 회계/인사/게시판/출고 시나리오 A/B등급 개선 (12개)
- accounting-client (9→18): A등급, 거래처 CRUD
- accounting-bank-transaction (3→15): B등급, 조회/필터
- accounting-card-history (3→15): B등급, 조회/필터
- accounting-expense-forecast (3→15): B등급, 조회/필터
- accounting-bad-debt (3→18): A등급, 악성채권 CRUD
- accounting-sales (3→15): B등급, 매출 조회
- accounting-purchase (3→15): B등급, 매입 조회
- shipment-dispatch (3→18): A등급, 배차 CRUD
- board-management (3→18): A등급, 게시판 CRUD
- hr-department (6→18): A등급, 부서 CRUD
- hr-card (4→18): A등급, 카드 CRUD
- hr-attendance-status (4→15): B등급, 근태현황 조회

공통 개선:
- searchWithinParent, closeOtherMenus 플래그 추가
- expectedAPIs 추가
- rollbackPlan 추가
- A등급: testData + CRUD 흐름 완성
2026-02-03 14:00:30 +09:00

266 lines
7.1 KiB
JSON

{
"id": "shipment-dispatch",
"name": "배차차량관리 테스트",
"screenshotPolicy": {
"onErrorOnly": true,
"captureOn": ["error", "fail", "timeout", "404", "500", "blocked"]
},
"description": "출고관리 > 배차차량관리 메뉴의 배차 CRUD 기능 테스트",
"baseUrl": "https://dev.codebridge-x.com",
"menuNavigation": {
"level1": "출고관리",
"level2": "배차차량관리",
"expectedUrl": "/outbound/vehicle-dispatches",
"searchWithinParent": true,
"closeOtherMenus": true
},
"auth": {
"username": "TestUser5",
"password": "password123!"
},
"testData": {
"create": {
"vehicleNumber": "E2E_99가9999",
"dispatchDate": "{today}",
"driver": "E2E_TEST_기사"
}
},
"steps": [
{
"id": 1,
"name": "메뉴 진입: 출고관리 > 배차차량관리",
"action": "menu_navigate",
"level1": "출고관리",
"level2": "배차차량관리",
"expected": {
"url_contains": "/outbound",
"visible": ["배차", "차량"]
}
},
{
"id": 2,
"name": "필수 검증 #5: 목업 페이지 감지",
"action": "verify_not_mockup",
"checks": [
"배차 목록 표시",
"배차 등록 버튼 존재",
"날짜 필터 존재"
],
"expected": "정상 페이지 (목업 아님)"
},
{
"id": 3,
"name": "배차 테이블 구조 확인",
"action": "verify_table",
"checks": [
"차량번호 컬럼",
"배차일 컬럼",
"기사명 컬럼",
"상태 컬럼",
"출고지/도착지 컬럼"
],
"expected": "배차 테이블 표시"
},
{
"id": 4,
"name": "배차 통계 확인",
"action": "verify_elements",
"checks": [
"금일 배차 현황",
"출고 대기 건수",
"배차 완료 건수"
],
"expected": "배차 통계 표시"
},
{
"id": 5,
"phase": "CREATE",
"name": "[CREATE] 배차 등록 버튼 클릭",
"action": "click",
"target": "button:has-text('등록'), button:has-text('추가'), button:has-text('배차')",
"expected": {
"modal_open": true
}
},
{
"id": 6,
"phase": "CREATE",
"name": "[CREATE] 차량 선택",
"action": "click",
"target": "select[name*='vehicle'], input[placeholder*='차량']",
"expected": "차량 선택 가능"
},
{
"id": 7,
"phase": "CREATE",
"name": "[CREATE] 배차일 입력",
"action": "click",
"target": "input[type='date'], input[name*='date']",
"expected": "배차일 선택"
},
{
"id": 8,
"phase": "CREATE",
"name": "[CREATE] 기사 선택",
"action": "click",
"target": "select[name*='driver'], input[placeholder*='기사']",
"expected": "기사 선택 가능"
},
{
"id": 9,
"phase": "CREATE",
"name": "[CREATE] 필수 검증 #2: 배차 저장",
"action": "click",
"target": "button:has-text('저장'), button:has-text('등록'), button:has-text('확인')",
"critical": true,
"verify": {
"url_maintained": true,
"no_error_page": true,
"api_call": "POST /api/v1/outbound/dispatches",
"toast": "등록|저장|완료|성공"
},
"expected": "배차 등록 완료"
},
{
"id": 10,
"phase": "READ",
"name": "[READ] 등록된 배차 검색",
"action": "fill",
"target": "input[type='search'], input[placeholder*='검색']",
"value": "E2E_99가",
"submit": true
},
{
"id": 11,
"phase": "READ",
"name": "[READ] 등록된 배차 확인",
"action": "verify_detail",
"checks": [
"E2E_99가 목록에 표시"
],
"expected": "등록된 배차 확인"
},
{
"id": 12,
"phase": "READ",
"name": "[READ] 배차 상세 조회",
"action": "click",
"target": "table tbody tr:has-text('E2E_99가')",
"expected": {
"detail_view": true
}
},
{
"id": 13,
"name": "상세 정보 확인",
"action": "verify_elements",
"checks": [
"차량 정보 표시",
"기사 정보 표시",
"출고 품목 정보"
],
"expected": "상세 정보 표시"
},
{
"id": 14,
"phase": "UPDATE",
"name": "[UPDATE] 배차 수정",
"action": "click",
"target": "button:has-text('수정'), button:has-text('편집')",
"expected": {
"edit_mode": true
}
},
{
"id": 15,
"phase": "UPDATE",
"name": "[UPDATE] 정보 변경",
"action": "fill",
"target": "textarea[name*='memo'], textarea[placeholder*='비고']",
"value": "E2E 테스트 배차 메모",
"clear": true
},
{
"id": 16,
"phase": "UPDATE",
"name": "[UPDATE] 변경 저장",
"action": "click",
"target": "button:has-text('저장'), button:has-text('확인')",
"verify": {
"api_call": "PUT /api/v1/outbound/dispatches",
"toast": "수정|저장|완료|성공"
},
"expected": "배차 수정 완료"
},
{
"id": 17,
"phase": "DELETE",
"name": "[DELETE] 배차 취소/삭제",
"action": "click",
"target": "button:has-text('삭제'), button:has-text('취소'), button:has-text('제거')",
"expected": {
"confirm_dialog": true
}
},
{
"id": 18,
"phase": "DELETE",
"name": "[DELETE] 삭제 확인",
"action": "click",
"target": "[role='alertdialog'] button:has-text('확인'), [role='dialog'] button:has-text('삭제')",
"verify": {
"api_call": "DELETE /api/v1/outbound/dispatches",
"toast": "삭제|취소|완료|성공"
},
"expected": "배차 삭제 완료"
}
],
"expectedAPIs": [
{
"method": "GET",
"endpoint": "/api/v1/outbound/dispatches",
"description": "배차 목록 조회"
},
{
"method": "POST",
"endpoint": "/api/v1/outbound/dispatches",
"description": "배차 등록"
},
{
"method": "GET",
"endpoint": "/api/v1/outbound/dispatches/:id",
"description": "배차 상세 조회"
},
{
"method": "PUT",
"endpoint": "/api/v1/outbound/dispatches/:id",
"description": "배차 수정"
},
{
"method": "DELETE",
"endpoint": "/api/v1/outbound/dispatches/:id",
"description": "배차 삭제"
}
],
"requiredVerifications": [
{
"id": 2,
"name": "저장 버튼",
"steps": [9, 16],
"criteria": "API 호출 + 성공 토스트 + 데이터 반영"
},
{
"id": 5,
"name": "목업 페이지 감지",
"steps": [2],
"criteria": "배차 목록, 등록 버튼, 날짜 필터 존재"
}
],
"rollbackPlan": {
"onCreateFail": "등록 모달 닫고 재시도",
"onUpdateFail": "페이지 새로고침 후 재시도",
"onDeleteFail": "수동 삭제 필요",
"cleanupRequired": "E2E_99가* 패턴 배차 데이터 삭제"
}
}