feature_list.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. {
  2. "project_name": "AI有声书生成工具 - 第二期",
  3. "base_config": {
  4. "backend_port": 3000,
  5. "frontend_port": 5173,
  6. "db_host": "localhost",
  7. "db_port": 3306,
  8. "auth_enabled": false
  9. },
  10. "features": [
  11. {
  12. "id": 1,
  13. "description": "播放记录 - 数据库表设计",
  14. "status": "done",
  15. "passes": true,
  16. "backend_test_steps": [
  17. "1. curl -X POST http://localhost:3000/api/player/progress -H 'Content-Type: application/json' -d '{\"userId\":\"test-user\",\"audioId\":\"audio-001\",\"progress\":30.5,\"duration\":180}' - 验证创建播放记录",
  18. "2. curl http://localhost:3000/api/player/progress?userId=test-user - 验证查询播放记录列表",
  19. "3. curl -X PUT http://localhost:3000/api/player/progress/audio-001 -H 'Content-Type: application/json' -d '{\"progress\":60.0}' - 验证更新播放进度",
  20. "4. curl -X DELETE http://localhost:3000/api/player/progress/audio-001 - 验证删除播放记录"
  21. ],
  22. "frontend_test_steps": [
  23. "1. 打开播放器页面",
  24. "2. 点击播放音频",
  25. "3. 等待5秒后查看播放进度是否自动保存",
  26. "4. 刷新页面验证续播位置是否正确"
  27. ]
  28. },
  29. {
  30. "id": 2,
  31. "description": "播放记录 - 前端播放器集成",
  32. "backend_test_steps": [
  33. "1. curl http://localhost:3000/api/player/progress?userId=test-user - 验证获取播放进度接口正常"
  34. ],
  35. "frontend_test_steps": [
  36. "1. 打开player页面",
  37. "2. 选择一个有播放进度的音频",
  38. "3. 验证是否从上次进度位置开始播放",
  39. "4. 验证播放进度每5秒自动保存"
  40. ],
  41. "status": "done",
  42. "passes": true
  43. },
  44. {
  45. "id": 3,
  46. "description": "收藏功能 - 数据库表设计",
  47. "backend_test_steps": [
  48. "1. curl -X POST http://localhost:3000/api/favorites -H 'Content-Type: application/json' -d '{\"userId\":\"test-user\",\"audioId\":\"audio-002\"}' - 验证添加收藏",
  49. "2. curl http://localhost:3000/api/favorites?userId=test-user - 验证查询收藏列表",
  50. "3. curl -X DELETE http://localhost:3000/api/favorites/audio-002 - 验证取消收藏",
  51. "4. curl -X POST http://localhost:3000/api/favorites -H 'Content-Type: application/json' -d '{\"userId\":\"test-user\",\"audioId\":\"audio-003\"}' - 重新添加收藏用于后续测试"
  52. ],
  53. "frontend_test_steps": [
  54. "1. 打开player页面",
  55. "2. 点击收藏按钮",
  56. "3. 验证收藏状态变为已收藏",
  57. "4. 进入favorites页面",
  58. "5. 验证收藏的音频显示在列表中",
  59. "6. 点击取消收藏按钮",
  60. "7. 验证列表中该音频已移除"
  61. ],
  62. "status": "done",
  63. "passes": true
  64. },
  65. {
  66. "id": 4,
  67. "description": "收藏功能 - favorites页面开发",
  68. "backend_test_steps": [
  69. "1. curl http://localhost:3000/api/favorites?userId=test-user - 验证收藏列表查询"
  70. ],
  71. "frontend_test_steps": [
  72. "1. 进入favorites收藏页面",
  73. "2. 验证页面正常加载,显示收藏列表",
  74. "3. 点击某个音频进入播放器",
  75. "4. 返回favorites页面验证列表刷新正常"
  76. ],
  77. "status": "done",
  78. "passes": true
  79. },
  80. {
  81. "id": 5,
  82. "description": "定时关闭 - 前端定时器实现",
  83. "backend_test_steps": [],
  84. "frontend_test_steps": [
  85. "1. 打开player页面并开始播放",
  86. "2. 点击定时关闭按钮",
  87. "3. 选择15分钟定时",
  88. "4. 验证倒计时显示正确",
  89. "5. 等待或快进到定时时间",
  90. "6. 验证播放自动暂停"
  91. ],
  92. "status": "done",
  93. "passes": true
  94. },
  95. {
  96. "id": 6,
  97. "description": "播放速度记忆 - 用户偏好API",
  98. "backend_test_steps": [
  99. "1. curl -X POST http://localhost:3000/api/user/preferences -H 'Content-Type: application/json' -d '{\"userId\":\"test-user\",\"playSpeed\":1.5}' - 验证创建用户偏好",
  100. "2. curl http://localhost:3000/api/user/preferences?userId=test-user - 验证查询用户偏好",
  101. "3. curl -X PUT http://localhost:3000/api/user/preferences -H 'Content-Type: application/json' -d '{\"userId\":\"test-user\",\"playSpeed\":2.0}' - 验证更新播放速度",
  102. "4. curl -X PUT http://localhost:3000/api/user/preferences -H 'Content-Type: application/json' -d '{\"userId\":\"test-user\",\"playSpeed\":1.0}' - 恢复默认速度"
  103. ],
  104. "frontend_test_steps": [
  105. "1. 打开player页面",
  106. "2. 调整播放速度为1.5x",
  107. "3. 刷新页面",
  108. "4. 验证播放速度仍为1.5x"
  109. ],
  110. "status": "done",
  111. "passes": true
  112. },
  113. {
  114. "id": 7,
  115. "description": "分享功能 - 微信JSSDK集成",
  116. "backend_test_steps": [
  117. "1. curl http://localhost:3000/api/share?audioId=audio-001 - 验证生成分享链接接口"
  118. ],
  119. "frontend_test_steps": [
  120. "1. 打开player页面",
  121. "2. 点击分享按钮",
  122. "3. 验证分享面板正常弹出",
  123. "4. 验证分享卡片显示标题、封面、简介"
  124. ],
  125. "status": "done",
  126. "passes": true
  127. },
  128. {
  129. "id": 8,
  130. "description": "分享功能 - 分享卡片生成",
  131. "backend_test_steps": [
  132. "1. curl http://localhost:3000/api/share?audioId=7 - 验证分享信息接口返回正确数据"
  133. ],
  134. "frontend_test_steps": [
  135. "1. 打开player页面",
  136. "2. 点击分享到微信好友",
  137. "3. 验证分享内容包含音频标题",
  138. "4. 点击分享到朋友圈",
  139. "5. 验证朋友圈分享内容正确"
  140. ],
  141. "status": "done",
  142. "passes": true
  143. },
  144. {
  145. "id": 9,
  146. "description": "加载优化 - 骨架屏组件",
  147. "backend_test_steps": [],
  148. "frontend_test_steps": [
  149. "1. 刷新首页",
  150. "2. 验证骨架屏正常显示",
  151. "3. 验证数据加载完成后骨架屏消失",
  152. "4. 验证内容正常渲染"
  153. ],
  154. "status": "done",
  155. "passes": true
  156. },
  157. {
  158. "id": 10,
  159. "description": "加载优化 - 图片懒加载",
  160. "backend_test_steps": [],
  161. "frontend_test_steps": [
  162. "1. 进入包含多张图片的列表页面",
  163. "2. 验证首屏图片正常加载",
  164. "3. 滚动页面",
  165. "4. 验证下方图片进入可视区时加载",
  166. "5. 滚动回顶部",
  167. "6. 验证图片已缓存不会重复加载"
  168. ],
  169. "status": "done",
  170. "passes": true
  171. },
  172. {
  173. "id": 11,
  174. "description": "全局搜索 - 搜索API",
  175. "backend_test_steps": [
  176. "1. curl http://localhost:3000/api/search?q=test - 验证搜索接口",
  177. "2. curl http://localhost:3000/api/search?q=故事 - 验证中文搜索",
  178. "3. curl http://localhost:3000/api/search?q= - 验证空关键词处理"
  179. ],
  180. "frontend_test_steps": [
  181. "1. 进入search搜索页面",
  182. "2. 输入搜索关键词",
  183. "3. 验证搜索结果列表正常显示",
  184. "4. 验证搜索结果相关性"
  185. ],
  186. "status": "done",
  187. "passes": true
  188. },
  189. {
  190. "id": 12,
  191. "description": "全局搜索 - search页面开发",
  192. "backend_test_steps": [
  193. "1. curl http://localhost:3000/api/search?q=小说 - 验证搜索结果正确返回"
  194. ],
  195. "frontend_test_steps": [
  196. "1. 进入search搜索页面",
  197. "2. 验证搜索历史记录显示",
  198. "3. 验证热门推荐显示",
  199. "4. 输入关键词进行搜索",
  200. "5. 点击搜索结果进入player页面"
  201. ],
  202. "status": "done",
  203. "passes": true
  204. },
  205. {
  206. "id": 13,
  207. "description": "内容分类 - 分类管理API",
  208. "backend_test_steps": [
  209. "1. curl http://localhost:3000/api/categories - 验证获取分类列表",
  210. "2. curl http://localhost:3000/api/categories/1 - 验证获取分类下音频",
  211. "3. curl http://localhost:3000/api/categories/999 - 验证无效分类ID处理"
  212. ],
  213. "frontend_test_steps": [
  214. "1. 进入index首页",
  215. "2. 验证分类标签显示正确",
  216. "3. 点击某个分类",
  217. "4. 验证只显示该分类下的音频"
  218. ],
  219. "status": "done",
  220. "passes": true
  221. },
  222. {
  223. "id": 14,
  224. "description": "内容分类 - 分类筛选",
  225. "backend_test_steps": [
  226. "1. curl http://localhost:3000/api/categories/2 - 验证分类2音频列表"
  227. ],
  228. "frontend_test_steps": [
  229. "1. 在index页面切换不同分类标签",
  230. "2. 验证列表内容随分类变化",
  231. "3. 验证分类筛选准确性"
  232. ],
  233. "status": "done",
  234. "passes": true
  235. },
  236. {
  237. "id": 15,
  238. "description": "音质选择 - 音质切换逻辑",
  239. "backend_test_steps": [
  240. "1. curl -X PUT http://localhost:3000/api/user/preferences -H 'Content-Type: application/json' -d '{\"userId\":\"test-user\",\"quality\":\"high\"}' - 验证设置高品质",
  241. "2. curl http://localhost:3000/api/user/preferences?userId=test-user - 验证获取偏好确认"
  242. ],
  243. "frontend_test_steps": [
  244. "1. 打开player页面",
  245. "2. 点击音质选择按钮",
  246. "3. 切换到高音质",
  247. "4. 验证音质切换生效",
  248. "5. 刷新页面验证音质设置已保存"
  249. ],
  250. "status": "done",
  251. "passes": true
  252. },
  253. {
  254. "id": 16,
  255. "description": "离线缓存 - 下载管理",
  256. "backend_test_steps": [
  257. "1. curl http://localhost:3000/api/downloads - 验证获取下载列表",
  258. "2. curl http://localhost:3000/api/downloads/check - 验证检查下载状态"
  259. ],
  260. "frontend_test_steps": [
  261. "1. 进入favorites页面",
  262. "2. 选择一个音频点击下载",
  263. "3. 验证下载进度显示",
  264. "4. 验证下载完成后状态更新"
  265. ],
  266. "status": "done",
  267. "passes": true
  268. },
  269. {
  270. "id": 17,
  271. "description": "离线缓存 - 离线播放",
  272. "backend_test_steps": [
  273. "1. curl http://localhost:3000/api/downloads - 验证下载列表接口"
  274. ],
  275. "frontend_test_steps": [
  276. "1. 进入favorites页面",
  277. "2. 验证已下载音频显示下载状态",
  278. "3. 关闭网络连接",
  279. "4. 点击已下载音频进行播放",
  280. "5. 验证离线播放正常"
  281. ],
  282. "status": "done",
  283. "passes": true
  284. },
  285. {
  286. "id": 18,
  287. "description": "评论打分 - 评论API",
  288. "backend_test_steps": [
  289. "1. curl -X POST http://localhost:3000/api/comments -H 'Content-Type: application/json' -d '{\"userId\":\"test-user\",\"audioId\":\"audio-004\",\"content\":\"很好听\",\"rating\":5}' - 验证发表评论",
  290. "2. curl http://localhost:3000/api/comments/audio-004 - 验证获取评论列表",
  291. "3. curl -X POST http://localhost:3000/api/comments -H 'Content-Type: application/json' -d '{\"userId\":\"test-user2\",\"audioId\":\"audio-004\",\"content\":\"不错\",\"rating\":4}' - 添加更多评论"
  292. ],
  293. "frontend_test_steps": [
  294. "1. 打开player页面",
  295. "2. 滑动到评论区",
  296. "3. 验证评论列表显示",
  297. "4. 输入评论内容并打分",
  298. "5. 点击提交",
  299. "6. 验证新评论显示在列表中"
  300. ],
  301. "status": "done",
  302. "passes": true
  303. },
  304. {
  305. "id": 19,
  306. "description": "消息通知 - 通知API",
  307. "backend_test_steps": [
  308. "1. curl http://localhost:3000/api/notifications - 验证获取通知列表",
  309. "2. curl -X POST http://localhost:3000/api/notifications/read -H 'Content-Type: application/json' -d '{\"id\":\"notif-001\"}' - 验证标记已读"
  310. ],
  311. "frontend_test_steps": [
  312. "1. 进入任意页面",
  313. "2. 验证通知图标显示",
  314. "3. 点击通知图标",
  315. "4. 验证通知列表正常显示",
  316. "5. 点击某条通知",
  317. "6. 验证已读状态更新"
  318. ],
  319. "status": "done",
  320. "passes": true
  321. }
  322. ]
  323. }