| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- import { describe, it, expect, beforeEach } from 'vitest';
- import { testClient } from 'hono/testing';
- import { IntegrationTestDatabase, setupIntegrationDatabaseHooksWithEntities } from '@d8d/shared-test-util';
- import { JWTUtil } from '@d8d/shared-utils';
- import { UserEntityMt, RoleMt } from '@d8d/user-module-mt';
- import { FileMt } from '@d8d/file-module-mt';
- import { SupplierMt } from '@d8d/supplier-module-mt';
- import { MerchantMt } from '@d8d/merchant-module-mt';
- import { publicGoodsRoutesMt } from '../../src/routes/index.mt';
- import { GoodsMt, GoodsCategoryMt } from '../../src/entities/index.mt';
- import { GoodsTestFactory } from '../factories/goods-test-factory';
- // 设置集成测试钩子
- setupIntegrationDatabaseHooksWithEntities([
- UserEntityMt, RoleMt, GoodsMt, GoodsCategoryMt, FileMt, SupplierMt, MerchantMt
- ])
- describe('公开商品API集成测试', () => {
- let client: ReturnType<typeof testClient<typeof publicGoodsRoutesMt>>;
- let testUser: UserEntityMt;
- let testCategory: GoodsCategoryMt;
- let testSupplier: SupplierMt;
- let testMerchant: MerchantMt;
- let testFactory: GoodsTestFactory;
- beforeEach(async () => {
- // 创建测试客户端
- client = testClient(publicGoodsRoutesMt);
- // 获取数据源并创建测试工厂
- const dataSource = await IntegrationTestDatabase.getDataSource();
- testFactory = new GoodsTestFactory(dataSource);
- // 使用测试工厂创建测试数据
- testUser = await testFactory.createTestUser();
- testCategory = await testFactory.createTestCategory(testUser.id);
- testSupplier = await testFactory.createTestSupplier(testUser.id);
- testMerchant = await testFactory.createTestMerchant(testUser.id);
- // 创建测试商品
- // 创建可用状态的商品
- const activeGoods1 = await testFactory.createTestGoods(testUser.id, {
- name: '可用商品1',
- price: 100.00,
- costPrice: 80.00,
- categoryId1: testCategory.id,
- categoryId2: testCategory.id,
- categoryId3: testCategory.id,
- supplierId: testSupplier.id,
- merchantId: testMerchant.id,
- state: 1,
- stock: 100
- });
- const activeGoods2 = await testFactory.createTestGoods(testUser.id, {
- name: '可用商品2',
- price: 200.00,
- costPrice: 160.00,
- categoryId1: testCategory.id,
- categoryId2: testCategory.id,
- categoryId3: testCategory.id,
- supplierId: testSupplier.id,
- merchantId: testMerchant.id,
- state: 1,
- stock: 50
- });
- const activeGoods3 = await testFactory.createTestGoods(testUser.id, {
- name: '可用商品3',
- price: 300.00,
- costPrice: 240.00,
- categoryId1: testCategory.id,
- categoryId2: testCategory.id,
- categoryId3: testCategory.id,
- goodsType: 2,
- supplierId: testSupplier.id,
- merchantId: testMerchant.id,
- state: 1,
- stock: 30
- });
- // 创建不可用状态的商品(不应该被公开路由返回)
- const inactiveGoods = await testFactory.createTestGoods(testUser.id, {
- name: '不可用商品',
- price: 400.00,
- costPrice: 320.00,
- categoryId1: testCategory.id,
- categoryId2: testCategory.id,
- categoryId3: testCategory.id,
- supplierId: testSupplier.id,
- merchantId: testMerchant.id,
- state: 2,
- stock: 10
- });
- });
- describe('GET /goods', () => {
- it('应该返回可用状态的商品列表', async () => {
- const response = await client.index.$get({
- query: {}
- });
- console.debug('公开商品列表响应状态:', response.status);
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data).toHaveProperty('data');
- expect(Array.isArray(data.data)).toBe(true);
- // 验证只返回可用状态的商品
- data.data.forEach((goods: any) => {
- expect(goods.state).toBe(1);
- });
- // 验证不包含不可用状态的商品
- const inactiveGoodsInResponse = data.data.find((goods: any) => goods.state === 2);
- expect(inactiveGoodsInResponse).toBeUndefined();
- }
- });
- it('应该支持按名称搜索', async () => {
- const response = await client.index.$get({
- query: { keyword: '可用商品1' }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(Array.isArray(data.data)).toBe(true);
- // 验证只返回匹配搜索的商品
- data.data.forEach((goods: any) => {
- expect(goods.name).toContain('可用商品1');
- expect(goods.state).toBe(1);
- });
- }
- });
- it('应该支持按分类过滤', async () => {
- const response = await client.index.$get({
- query: { filters: JSON.stringify({ categoryId1: testCategory.id }) }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(Array.isArray(data.data)).toBe(true);
- // 验证只返回指定分类的商品
- data.data.forEach((goods: any) => {
- expect(goods.categoryId1).toBe(testCategory.id);
- expect(goods.state).toBe(1);
- });
- }
- });
- it('应该支持按商品类型过滤', async () => {
- const response = await client.index.$get({
- query: { filters: JSON.stringify({ goodsType: 2 }) }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(Array.isArray(data.data)).toBe(true);
- // 验证只返回指定类型的商品
- data.data.forEach((goods: any) => {
- expect(goods.goodsType).toBe(2);
- expect(goods.state).toBe(1);
- });
- }
- });
- it('应该支持分页查询', async () => {
- const response = await client.index.$get({
- query: { page: 1, pageSize: 2 }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(Array.isArray(data.data)).toBe(true);
- expect(data.data.length).toBeLessThanOrEqual(2);
- // 验证只返回可用状态的商品
- data.data.forEach((goods: any) => {
- expect(goods.state).toBe(1);
- });
- }
- });
- it('应该无需认证即可访问', async () => {
- const response = await client.index.$get({
- query: {}
- });
- expect(response.status).toBe(200);
- });
- });
- describe('GET /goods/:id', () => {
- it('应该返回指定商品的详情', async () => {
- // 先获取一个可用商品的ID
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const goodsRepository = dataSource.getRepository(GoodsMt);
- const activeGoods = await goodsRepository.findOne({
- where: { state: 1 }
- });
- if (activeGoods) {
- const response = await client[':id'].$get({
- param: { id: activeGoods.id }
- });
- console.debug('公开商品详情响应状态:', response.status);
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.id).toBe(activeGoods.id);
- expect(data.name).toBe(activeGoods.name);
- expect(data.state).toBe(1); // 确保是可用状态
- }
- }
- });
- it('应该拒绝访问不可用状态的商品', async () => {
- // 先获取一个不可用商品的ID
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const goodsRepository = dataSource.getRepository(GoodsMt);
- const inactiveGoods = await goodsRepository.findOne({
- where: { state: 2 }
- });
- if (inactiveGoods) {
- const response = await client[':id'].$get({
- param: { id: inactiveGoods.id }
- });
- expect(response.status).toBe(404); // 不可用状态的商品应该返回404
- }
- });
- it('应该处理不存在的商品', async () => {
- const response = await client[':id'].$get({
- param: { id: 999999 }
- });
- expect(response.status).toBe(404);
- });
- });
- describe('POST /goods', () => {
- it('应该拒绝创建商品操作', async () => {
- const createData = {
- name: '尝试创建商品',
- price: 100.00,
- categoryId1: testCategory.id,
- state: 1
- };
- const response = await client.index.$post({
- json: createData
- });
- expect(response.status).toBe(404); // 只读模式下路由不存在
- });
- });
- describe('PUT /goods/:id', () => {
- it('应该拒绝更新商品操作', async () => {
- // 先获取一个可用商品的ID
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const goodsRepository = dataSource.getRepository(GoodsMt);
- const activeGoods = await goodsRepository.findOne({
- where: { state: 1 }
- });
- if (activeGoods) {
- const updateData = {
- name: '尝试更新商品'
- };
- const response = await client[':id'].$put({
- param: { id: activeGoods.id },
- json: updateData
- });
- expect(response.status).toBe(404); // 只读模式下路由不存在
- }
- });
- });
- describe('DELETE /goods/:id', () => {
- it('应该拒绝删除商品操作', async () => {
- // 先获取一个可用商品的ID
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const goodsRepository = dataSource.getRepository(GoodsMt);
- const activeGoods = await goodsRepository.findOne({
- where: { state: 1 }
- });
- if (activeGoods) {
- const response = await client[':id'].$delete({
- param: { id: activeGoods.id }
- });
- expect(response.status).toBe(404); // 只读模式下路由不存在
- }
- });
- });
- describe('公开路由权限验证测试', () => {
- it('应该验证公开路由无需认证', async () => {
- const response = await client.index.$get({
- query: {}
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(Array.isArray(data.data)).toBe(true);
- // 验证只返回可用状态的商品
- data.data.forEach((goods: any) => {
- expect(goods.state).toBe(1);
- });
- }
- });
- it('应该验证只支持查询操作', async () => {
- // 测试所有非查询操作都应该被拒绝
- const createResponse = await client.index.$post({
- json: { name: '测试' }
- });
- expect(createResponse.status).toBe(404);
- const updateResponse = await client[':id'].$put({
- param: { id: 1 },
- json: { name: '测试' }
- });
- expect(updateResponse.status).toBe(404);
- const deleteResponse = await client[':id'].$delete({
- param: { id: 1 }
- });
- expect(deleteResponse.status).toBe(404);
- });
- });
- describe('商品关联关系测试', () => {
- it('应该正确加载商品关联关系', async () => {
- const response = await client.index.$get({
- query: {}
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(Array.isArray(data.data)).toBe(true);
- // 验证至少返回一个商品
- if (data.data.length > 0) {
- const goods = data.data[0];
- // 验证基础字段
- expect(goods).toHaveProperty('id');
- expect(goods).toHaveProperty('name');
- expect(goods).toHaveProperty('price');
- expect(goods).toHaveProperty('state', 1);
- // 验证关联关系字段存在
- expect(goods).toHaveProperty('category1');
- expect(goods).toHaveProperty('supplier');
- expect(goods).toHaveProperty('merchant');
- }
- }
- });
- });
- });
|