- 移除所有废弃的旧首页配置模块,包括destinationHero、demand相关、HomeExperience、vehicleService等表结构与代码,新增数据库迁移删除遗留表 - 重构管理端后台布局为标准RuoYi风格,新增Sidebar、Navbar、SettingsDrawer等组件,替换旧的过渡菜单实现 - 调整移动端响应断点为768px,更新布局相关测试用例,新增布局组件测试 - 删除OperationsTools发布/重置页面,移除/tools菜单入口,清理对应的API调用与测试代码 - 重构玩法模块编辑器:替换旧的图片手动输入框为图片上传组件,移除冗余的取消按钮 - 新增线索查询offset参数支持,完善查询参数处理逻辑 - 优化rbac菜单构建逻辑,新增可见性控制参数 - 修正管家编辑器提示文案,优化系统资源编辑器表单初始化逻辑 - 清理小程序端废弃的体验推荐组件与相关测试代码 - 更新文档与种子脚本,匹配新的API契约与使用说明
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { fallbackData, getSubmitErrorMessage, normalizeSiteConfig } from "@/lib/data";
|
|
import type { PublicSiteConfig } from "@/lib/types";
|
|
|
|
describe("WonderQ shared data helpers", () => {
|
|
it("uses local defaults when the site configuration is empty", () => {
|
|
expect(normalizeSiteConfig({}, fallbackData)).toEqual(fallbackData);
|
|
});
|
|
|
|
it("normalizes the supported home modules and keeps the local vehicle fallback", () => {
|
|
const config: PublicSiteConfig = {
|
|
heroSlides: [
|
|
{
|
|
id: "hero-1",
|
|
title: "后台首页主视觉",
|
|
kicker: "后台小标题",
|
|
image: "https://cdn.example.test/hero.jpg",
|
|
isActive: true,
|
|
sortOrder: 0,
|
|
},
|
|
],
|
|
vehicleOptions: [
|
|
{
|
|
id: "vehicle-1",
|
|
title: "舒适型用车",
|
|
description: "适合家庭出行",
|
|
image: "https://cdn.example.test/vehicle.jpg",
|
|
isActive: true,
|
|
sortOrder: 0,
|
|
},
|
|
],
|
|
};
|
|
|
|
const data = normalizeSiteConfig(config, fallbackData);
|
|
|
|
expect(data.heroSlides).toMatchObject([
|
|
{
|
|
id: "hero-1",
|
|
title: "后台首页主视觉",
|
|
image: "https://cdn.example.test/hero.jpg",
|
|
},
|
|
]);
|
|
expect(data.vehicleOptions).toMatchObject([
|
|
{
|
|
id: "vehicle-1",
|
|
title: "舒适型用车",
|
|
description: "适合家庭出行",
|
|
},
|
|
]);
|
|
expect(data.vehicleService.introTitle).toBe("旅游出行专属用车服务");
|
|
});
|
|
|
|
it("returns a stable submit error message", () => {
|
|
expect(getSubmitErrorMessage(new Error("网络异常"))).toBe("网络异常");
|
|
expect(getSubmitErrorMessage("unknown")).toBe("提交失败,请稍后再试。");
|
|
});
|
|
|
|
});
|