| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070 |
- {
- "timestamp": "2026-04-26T13:37:20.412Z",
- "testStrategy": {
- "api": "小程序端API接口测试,构造请求数据,验证响应,不进行UI点击",
- "web": "管理后台浏览器自动化测试,管理员和指导师登录,测试过程截图"
- },
- "accounts": {
- "admin": "13800138000 / admin123",
- "teacher": "13800138003 / teacher123",
- "note": "家长和孩子不登录Web后台"
- },
- "summary": {
- "api": {
- "total": 19,
- "passed": 19,
- "failed": 0
- },
- "web": {
- "total": 51,
- "passed": 0,
- "failed": 51
- }
- },
- "apiTests": [
- {
- "id": "API-001",
- "description": "家长登录接口",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/auth/login",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "phone": "13800138001",
- "code": "123456",
- "role": "parent"
- },
- "timestamp": "2026-04-26T13:34:13.066Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 1,
- "timestamp": "2026-04-26T13:34:13.067Z"
- },
- "error": null
- },
- {
- "id": "API-002",
- "description": "家长创建任务接口",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/tasks",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "childId": 2,
- "name": "完成语文作业",
- "points": 5,
- "category": "study",
- "deadline": "2026-04-15T18:00:00",
- "description": "完成课本第10页到第15页的练习题"
- },
- "timestamp": "2026-04-26T13:34:13.067Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.067Z"
- },
- "error": null
- },
- {
- "id": "API-003",
- "description": "获取孩子今日任务列表",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/tasks/today/2",
- "method": "GET",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "childId": 2,
- "date": "2026-04-26"
- },
- "timestamp": "2026-04-26T13:34:13.068Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.068Z"
- },
- "error": null
- },
- {
- "id": "API-004",
- "description": "孩子完成任务接口",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/tasks/1/complete",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "taskId": 1,
- "completedAt": "2026-04-26T13:34:13.068Z",
- "proof": {
- "type": "photo",
- "url": "https://example.com/photo.jpg",
- "description": "已完成作业拍照"
- }
- },
- "timestamp": "2026-04-26T13:34:13.069Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.069Z"
- },
- "error": null
- },
- {
- "id": "API-005",
- "description": "获取积分记录接口",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/points/records",
- "method": "GET",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "childId": 2,
- "startDate": "2026-04-01",
- "endDate": "2026-04-30"
- },
- "timestamp": "2026-04-26T13:34:13.069Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.069Z"
- },
- "error": null
- },
- {
- "id": "API-006",
- "description": "孩子添加心愿接口",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/rewards/wishlist",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "childId": 2,
- "name": "去游乐园玩",
- "category": "experience",
- "description": "周末全家一起去游乐园"
- },
- "timestamp": "2026-04-26T13:34:13.070Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.070Z"
- },
- "error": null
- },
- {
- "id": "API-007",
- "description": "孩子兑换奖励接口",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/rewards/1/exchange",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "rewardId": 1,
- "childId": 2,
- "pointsUsed": 50
- },
- "timestamp": "2026-04-26T13:34:13.070Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.070Z"
- },
- "error": null
- },
- {
- "id": "API-008",
- "description": "家长审批奖励兑换接口",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/rewards/1/approve",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "exchangeId": 1,
- "approved": true,
- "comment": "同意兑换,表现很好!"
- },
- "timestamp": "2026-04-26T13:34:13.071Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.071Z"
- },
- "error": null
- },
- {
- "id": "API-009",
- "description": "获取连续打卡天数接口",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/streak/2",
- "method": "GET",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "childId": 2
- },
- "timestamp": "2026-04-26T13:34:13.071Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.071Z"
- },
- "error": null
- },
- {
- "id": "API-010",
- "description": "获取家庭信息接口",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/family/info",
- "method": "GET",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "familyId": 1
- },
- "timestamp": "2026-04-26T13:34:13.073Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.073Z"
- },
- "error": null
- },
- {
- "id": "API-011",
- "description": "指导师首次登录角色选择",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/auth/role-select",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "userId": 1,
- "role": "teacher"
- },
- "timestamp": "2026-04-26T13:34:13.074Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.074Z"
- },
- "error": null
- },
- {
- "id": "API-012",
- "description": "指导师信息录入",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/user/profile",
- "method": "PUT",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "idCard": "110101199001011234",
- "gender": "male",
- "teacherPhoto": "https://example.com/photo.jpg",
- "teacherNo": "TEACHER20260001",
- "certificateImage": "https://example.com/cert.jpg"
- },
- "timestamp": "2026-04-26T13:34:13.074Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.074Z"
- },
- "error": null
- },
- {
- "id": "API-013",
- "description": "指导师查看关联家庭列表",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/guide/families",
- "method": "GET",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "teacherId": 1
- },
- "timestamp": "2026-04-26T13:34:13.075Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.075Z"
- },
- "error": null
- },
- {
- "id": "API-014",
- "description": "指导师审核家庭任务",
- "priority": "P0",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/guide/tasks/1/review",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "taskId": 1,
- "approved": true,
- "comment": "审核通过"
- },
- "timestamp": "2026-04-26T13:34:13.075Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.075Z"
- },
- "error": null
- },
- {
- "id": "API-015",
- "description": "舒尔特方格开始游戏",
- "priority": "P1",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/mini-games/schulte/start",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "childId": 2,
- "gridSize": 5
- },
- "timestamp": "2026-04-26T13:34:13.075Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 1,
- "timestamp": "2026-04-26T13:34:13.076Z"
- },
- "error": null
- },
- {
- "id": "API-016",
- "description": "猜数字(1a2b)开始游戏",
- "priority": "P1",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/mini-games/1a2b/start",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "childId": 2
- },
- "timestamp": "2026-04-26T13:34:13.076Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.076Z"
- },
- "error": null
- },
- {
- "id": "API-017",
- "description": "创建任务模板",
- "priority": "P1",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/task-templates",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "title": "每日阅读",
- "description": "阅读30分钟课外书籍",
- "category": "study",
- "points": 3,
- "duration": 30,
- "completeTypes": [
- "checkin",
- "text"
- ]
- },
- "timestamp": "2026-04-26T13:34:13.076Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.076Z"
- },
- "error": null
- },
- {
- "id": "API-018",
- "description": "创建小游戏类任务",
- "priority": "P1",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/tasks",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "childId": 2,
- "title": "完成舒尔特方格训练",
- "category": "小游戏类",
- "minigameCode": "schulte",
- "points": 5,
- "deadline": "2026-04-20T18:00:00",
- "needReview": 0
- },
- "timestamp": "2026-04-26T13:34:13.077Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.077Z"
- },
- "error": null
- },
- {
- "id": "API-019",
- "description": "完成小游戏任务获积分",
- "priority": "P1",
- "status": "passed",
- "request": {
- "url": "http://192.168.16.18:8080/api/tasks/1/complete",
- "method": "POST",
- "headers": {
- "Content-Type": "application/json"
- },
- "body": {
- "childId": 2,
- "completionTime": 45,
- "score": 80
- },
- "timestamp": "2026-04-26T13:34:13.077Z"
- },
- "response": {
- "status": 200,
- "statusText": "OK",
- "data": {
- "code": 200,
- "message": "success",
- "data": {}
- },
- "duration": 0,
- "timestamp": "2026-04-26T13:34:13.077Z"
- },
- "error": null
- }
- ],
- "webTests": [
- {
- "id": "WEB-001",
- "description": "管理员登录Web后台",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-001_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-002",
- "description": "管理员查看用户列表",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-002_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-003",
- "description": "管理员查看任务统计",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-003_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-004",
- "description": "指导师登录Web后台",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-004_01_teacher_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-005",
- "description": "指导师查看分配的家庭",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-005_01_teacher_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-006",
- "description": "管理员审核指导师注册",
- "priority": "P1",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-006_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-007",
- "description": "管理员查看街道统计",
- "priority": "P1",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-007_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-008",
- "description": "指导师审核家庭任务",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-008_01_teacher_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-009",
- "description": "指导师查看家庭任务详情",
- "priority": "P1",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-009_01_teacher_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-010",
- "description": "管理员查看用户列表",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-010_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-011",
- "description": "管理员查看用户详情",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-011_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-012",
- "description": "管理员编辑用户信息",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-012_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-013",
- "description": "管理员停用孩子账号",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-013_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-014",
- "description": "管理员启用孩子账号",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-014_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-015",
- "description": "管理员创建任务",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-015_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-016",
- "description": "管理员设置任务分类",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-016_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-017",
- "description": "管理员设置任务积分",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-017_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-018",
- "description": "管理员设置任务截止时间",
- "priority": "P0",
- "status": "failed",
- "screenshots": [
- "./screenshots/WEB-018_01_login_page.png"
- ],
- "error": {}
- },
- {
- "id": "WEB-019",
- "description": "管理员编辑任务",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-020",
- "description": "管理员删除任务",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-021",
- "description": "管理员使用任务模板",
- "priority": "P1",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-022",
- "description": "管理员查看任务历史",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-023",
- "description": "管理员查看任务统计",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-024",
- "description": "管理员查看奖励列表",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-025",
- "description": "管理员创建奖励",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-026",
- "description": "管理员设置奖励分类",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-027",
- "description": "管理员编辑奖励",
- "priority": "P2",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-028",
- "description": "管理员删除奖励",
- "priority": "P2",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-029",
- "description": "管理员查看奖励模板",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-030",
- "description": "管理员查看奖励兑换进度",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-031",
- "description": "管理员查看家庭列表",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-032",
- "description": "管理员查看家庭详情",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-033",
- "description": "管理员编辑家庭信息",
- "priority": "P1",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-034",
- "description": "管理员删除家庭",
- "priority": "P1",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-035",
- "description": "管理员查看孩子管理",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-036",
- "description": "管理员查看积分管理",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-037",
- "description": "管理员系统设置入口",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-038",
- "description": "管理员操作日志查看",
- "priority": "P1",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-039",
- "description": "管理员套餐审核",
- "priority": "P1",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-040",
- "description": "指导师登录Web后台",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-041",
- "description": "指导师查看我的家庭",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-042",
- "description": "指导师查看家庭任务详情",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-043",
- "description": "指导师审核任务",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-044",
- "description": "指导师任务审核通过",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-045",
- "description": "指导师任务审核拒绝",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-046",
- "description": "管理员登出",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-047",
- "description": "SQL注入测试",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-048",
- "description": "XSS测试",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-049",
- "description": "无效手机号测试",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-050",
- "description": "无效身份证测试",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- },
- {
- "id": "WEB-051",
- "description": "积分超范围测试",
- "priority": "P0",
- "status": "failed",
- "screenshots": [],
- "error": {}
- }
- ]
- }
|