详细变更如下: - 更新 .gitignore 文件,添加 pnpm-store 忽略规则 - 新增数据库迁移脚本,为 DetailRecord 添加可空的 conciergeAdvisorId 字段用于关联管家顾问 - 完善 Admin 后台玩法详情编辑器,支持选择关联的管家顾问并校验合法性 - 公共 API 支持返回已启用的管家顾问完整数据,不在详情表中冗余存储管家资料 - 小程序端新增详情页联系管家入口、个人页最近浏览历史功能 - 更新所有相关文档与测试用例,修复下拉选择框的 z-index 样式问题
90 lines
2.8 KiB
TypeScript
90 lines
2.8 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
||
|
||
import {
|
||
findWanfaRouteDetailFallback,
|
||
normalizeDetailPresentation,
|
||
} from "@/pages/detail/components/detailPresentation";
|
||
|
||
describe("wanfa route detail presentation", () => {
|
||
it("normalizes a complete public response", () => {
|
||
expect(
|
||
normalizeDetailPresentation({
|
||
key: "family-water",
|
||
eyebrow: " 玩法推荐 ",
|
||
duration: " 5天4晚 ",
|
||
title: " 亲子玩水 ",
|
||
subtitle: " 贵州路线 ",
|
||
intro: " 沿着山地深入探索。 ",
|
||
highlights: [" 核心景观串联 ", "", " 小团出行 "],
|
||
included: [" 行程内用车 "],
|
||
excluded: [" 往返大交通 "],
|
||
notes: [" 请准备雨具。 "],
|
||
gallery: [" https://example.test/cover.jpg "],
|
||
conciergeAdvisor: null,
|
||
}),
|
||
).toEqual({
|
||
key: "family-water",
|
||
eyebrow: "玩法推荐",
|
||
duration: "5天4晚",
|
||
title: "亲子玩水",
|
||
subtitle: "贵州路线",
|
||
intro: "沿着山地深入探索。",
|
||
highlights: ["核心景观串联", "小团出行"],
|
||
included: ["行程内用车"],
|
||
excluded: ["往返大交通"],
|
||
notes: ["请准备雨具。"],
|
||
gallery: ["https://example.test/cover.jpg"],
|
||
conciergeAdvisor: null,
|
||
});
|
||
});
|
||
|
||
it("normalizes a valid concierge advisor without inventing fallback data", () => {
|
||
expect(
|
||
normalizeDetailPresentation({
|
||
key: "family-water",
|
||
eyebrow: "玩法推荐",
|
||
duration: "5天4晚",
|
||
title: "亲子玩水",
|
||
subtitle: "贵州路线",
|
||
intro: "介绍",
|
||
highlights: [],
|
||
included: [],
|
||
excluded: [],
|
||
notes: [],
|
||
gallery: ["https://example.test/cover.jpg"],
|
||
conciergeAdvisor: {
|
||
avatar: " https://example.test/amanda.jpg ",
|
||
name: " Amanda ",
|
||
role: " SENIOR TRAVEL ADVISOR ",
|
||
details: [{ icon: " calendar ", label: " 服务经验:8年 " }],
|
||
qrImage: " https://example.test/amanda-qr.png ",
|
||
},
|
||
}),
|
||
).toMatchObject({
|
||
conciergeAdvisor: {
|
||
avatar: "https://example.test/amanda.jpg",
|
||
name: "Amanda",
|
||
role: "SENIOR TRAVEL ADVISOR",
|
||
details: [{ icon: "calendar", label: "服务经验:8年" }],
|
||
qrImage: "https://example.test/amanda-qr.png",
|
||
},
|
||
});
|
||
});
|
||
|
||
it("uses the route fallback for invalid or incomplete API data", () => {
|
||
const fallback = findWanfaRouteDetailFallback("family-water");
|
||
|
||
expect(fallback).not.toBeNull();
|
||
expect(
|
||
normalizeDetailPresentation(
|
||
{ key: "family-water", title: "", gallery: [] },
|
||
fallback,
|
||
),
|
||
).toEqual(fallback);
|
||
});
|
||
|
||
it("returns no fallback for an unknown route", () => {
|
||
expect(findWanfaRouteDetailFallback("missing-route")).toBeNull();
|
||
});
|
||
});
|