| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369 |
- 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 { UserEntity, Role } from '@d8d/user-module';
- import { File } from '@d8d/file-module';
- import { BankName } from '@d8d/bank-names-module';
- import disabledPersonRoutes from '../../src/routes/disabled-person.routes';
- import { DisabledPerson } from '../../src/entities/disabled-person.entity';
- import { DisabledBankCard } from '../../src/entities/disabled-bank-card.entity';
- import { DisabledPhoto } from '../../src/entities/disabled-photo.entity';
- import { DisabledRemark } from '../../src/entities/disabled-remark.entity';
- import { DisabledVisit } from '../../src/entities/disabled-visit.entity';
- // 设置集成测试钩子 - 包含所有相关实体
- setupIntegrationDatabaseHooksWithEntities([
- UserEntity,
- Role,
- File,
- BankName,
- DisabledPerson,
- DisabledBankCard,
- DisabledPhoto,
- DisabledRemark,
- DisabledVisit
- ])
- describe('残疾人管理API集成测试', () => {
- let client: ReturnType<typeof testClient<typeof disabledPersonRoutes>>;
- let testToken: string;
- let testUser: UserEntity;
- let testFile: File;
- beforeEach(async () => {
- // 创建测试客户端
- client = testClient(disabledPersonRoutes);
- // 获取数据源
- const dataSource = await IntegrationTestDatabase.getDataSource();
- // 创建测试用户
- const userRepository = dataSource.getRepository(UserEntity);
- testUser = userRepository.create({
- username: `test_user_${Date.now()}`,
- password: 'test_password',
- nickname: '测试用户',
- registrationSource: 'web'
- });
- await userRepository.save(testUser);
- // 创建测试文件(用于照片集成测试)
- const fileRepository = dataSource.getRepository(File);
- testFile = fileRepository.create({
- name: 'test_photo.jpg',
- path: 'test_photo.jpg',
- type: 'image/jpeg',
- size: 1024,
- uploadUserId: testUser.id,
- uploadTime: new Date()
- });
- await fileRepository.save(testFile);
- // 生成测试用户的token
- testToken = JWTUtil.generateToken({
- id: testUser.id,
- username: testUser.username,
- roles: [{name:'user'}]
- });
- });
- describe('POST /createDisabledPerson', () => {
- it('应该成功创建残疾人基本信息', async () => {
- const createData = {
- name: '张三',
- gender: '男',
- idCard: '110101199001011234',
- disabilityId: 'D123456789',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市东城区',
- phone: '13800138000',
- province: '北京市',
- city: '北京市',
- // 新增字段
- canDirectContact: 1,
- isInBlackList: 0,
- jobStatus: 1,
- specificDisability: '左眼视力0.1,右眼视力0.2,需要助听器',
- // 日期字段
- idValidDate: new Date('2030-12-31'),
- disabilityValidDate: new Date('2030-12-31')
- };
- const response = await client.createDisabledPerson.$post({
- json: createData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.name).toBe(createData.name);
- expect(data.idCard).toBe(createData.idCard);
- expect(data.disabilityId).toBe(createData.disabilityId);
- // 验证新增字段
- expect(data.canDirectContact).toBe(createData.canDirectContact);
- expect(data.isInBlackList).toBe(createData.isInBlackList);
- expect(data.jobStatus).toBe(createData.jobStatus);
- expect(data.specificDisability).toBe(createData.specificDisability);
- // 验证日期字段
- expect(data.idValidDate).toBeDefined();
- expect(data.disabilityValidDate).toBeDefined();
- if (data.idValidDate) {
- expect(new Date(data.idValidDate).toISOString().split('T')[0]).toBe('2030-12-31');
- }
- if (data.disabilityValidDate) {
- expect(new Date(data.disabilityValidDate).toISOString().split('T')[0]).toBe('2030-12-31');
- }
- }
- });
- it('应该验证身份证号唯一性', async () => {
- // 先创建一个残疾人
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- const existingPerson = disabledPersonRepository.create({
- name: '李四',
- gender: '女',
- idCard: '110101199001011235',
- disabilityId: 'D123456788',
- disabilityType: '视力残疾',
- disabilityLevel: '二级',
- idAddress: '北京市西城区',
- phone: '13900139000',
- province: '北京市',
- city: '北京市',
- // 新增字段
- canDirectContact: 0,
- isInBlackList: 0,
- jobStatus: 2,
- // 日期字段
- idValidDate: new Date('2035-05-15'),
- disabilityValidDate: new Date('2035-05-15')
- });
- await disabledPersonRepository.save(existingPerson);
- // 尝试创建相同身份证号的残疾人
- const createData = {
- name: '王五',
- gender: '男',
- idCard: '110101199001011235', // 重复的身份证号
- disabilityId: 'D123456777',
- disabilityType: '听力残疾',
- disabilityLevel: '三级',
- idAddress: '北京市朝阳区',
- phone: '13700137000',
- province: '北京市',
- city: '北京市',
- // 新增字段
- canDirectContact: 1,
- isInBlackList: 1,
- jobStatus: 3,
- // 日期字段
- idValidDate: new Date('2043-08-20'),
- disabilityValidDate: new Date('2043-08-20')
- };
- const response = await client.createDisabledPerson.$post({
- json: createData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(400);
- });
- it('应该验证必填字段', async () => {
- const createData = {
- name: '', // 空字符串,应该验证失败
- gender: '男',
- idCard: '110101199001011236',
- disabilityId: 'D123456776',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市海淀区',
- phone: '13600136000',
- province: '北京市',
- city: '北京市',
- // 新增字段(可选字段,不影响必填验证)
- canDirectContact: 1,
- isInBlackList: 0,
- jobStatus: 1,
- // 日期字段(可选字段,不影响必填验证)
- idValidDate: new Date('2028-03-10'),
- disabilityValidDate: new Date('2028-03-10')
- };
- const response = await client.createDisabledPerson.$post({
- json: createData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(400);
- });
- it('应该验证具体残疾部位和情况字段为空值', async () => {
- const createData = {
- name: '空值测试',
- gender: '男',
- idCard: '110101199001011236',
- disabilityId: 'D123456776',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市海淀区',
- phone: '13600136000',
- province: '北京市',
- city: '北京市',
- canDirectContact: 1,
- isInBlackList: 0,
- jobStatus: 1,
- // specificDisability 字段不提供,测试空值
- idValidDate: new Date('2028-03-10'),
- disabilityValidDate: new Date('2028-03-10')
- };
- const response = await client.createDisabledPerson.$post({
- json: createData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.name).toBe(createData.name);
- expect(data.specificDisability).toBeNull(); // 应该为null,因为数据库字段nullable: true
- }
- });
- it('应该验证具体残疾部位和情况字段为有效值', async () => {
- const createData = {
- name: '有效值测试',
- gender: '女',
- idCard: '110101199001011237',
- disabilityId: 'D123456775',
- disabilityType: '视力残疾',
- disabilityLevel: '二级',
- idAddress: '北京市朝阳区',
- phone: '13700137000',
- province: '北京市',
- city: '北京市',
- canDirectContact: 0,
- isInBlackList: 0,
- jobStatus: 0,
- specificDisability: '双眼视力均为0.05,需要导盲犬辅助',
- idValidDate: new Date('2030-06-15'),
- disabilityValidDate: new Date('2030-06-15')
- };
- const response = await client.createDisabledPerson.$post({
- json: createData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.name).toBe(createData.name);
- expect(data.specificDisability).toBe(createData.specificDisability);
- }
- });
- it('应该验证具体残疾部位和情况字段边界值(500字符)', async () => {
- // 生成500字符的字符串
- const maxLengthText = 'A'.repeat(500);
- const createData = {
- name: '边界值测试',
- gender: '男',
- idCard: '110101199001011238',
- disabilityId: 'D123456774',
- disabilityType: '听力残疾',
- disabilityLevel: '三级',
- idAddress: '北京市丰台区',
- phone: '13800138001',
- province: '北京市',
- city: '北京市',
- canDirectContact: 1,
- isInBlackList: 0,
- jobStatus: 1,
- specificDisability: maxLengthText,
- idValidDate: new Date('2032-08-20'),
- disabilityValidDate: new Date('2032-08-20')
- };
- const response = await client.createDisabledPerson.$post({
- json: createData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.name).toBe(createData.name);
- expect(data.specificDisability).toBe(createData.specificDisability);
- expect(data.specificDisability.length).toBe(500);
- }
- });
- it('应该验证具体残疾部位和情况字段超过500字符限制', async () => {
- // 生成501字符的字符串
- const tooLongText = 'A'.repeat(501);
- const createData = {
- name: '超长测试',
- gender: '女',
- idCard: '110101199001011239',
- disabilityId: 'D123456773',
- disabilityType: '言语残疾',
- disabilityLevel: '四级',
- idAddress: '北京市石景山区',
- phone: '13900139001',
- province: '北京市',
- city: '北京市',
- canDirectContact: 0,
- isInBlackList: 0,
- jobStatus: 0,
- specificDisability: tooLongText,
- idValidDate: new Date('2034-12-31'),
- disabilityValidDate: new Date('2034-12-31')
- };
- const response = await client.createDisabledPerson.$post({
- json: createData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(400); // 应该返回400,因为超过长度限制
- });
- });
- describe('POST /deleteDisabledPerson', () => {
- it('应该成功删除残疾人', async () => {
- // 先创建一个残疾人
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- const person = disabledPersonRepository.create({
- name: '测试删除人员',
- gender: '男',
- idCard: '110101199001011237',
- disabilityId: 'D123456775',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市石景山区',
- phone: '13500135000',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person);
- const deleteData = {
- id: person.id
- };
- const response = await client.deleteDisabledPerson.$post({
- json: deleteData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.success).toBe(true);
- // 验证残疾人已被删除
- const deletedPerson = await disabledPersonRepository.findOne({ where: { id: person.id } });
- expect(deletedPerson).toBeNull();
- }
- });
- it('应该处理不存在的残疾人ID', async () => {
- const deleteData = {
- id: 99999 // 不存在的ID
- };
- const response = await client.deleteDisabledPerson.$post({
- json: deleteData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(404);
- });
- });
- describe('POST /updateDisabledPerson', () => {
- it('应该成功更新残疾人信息', async () => {
- // 先创建一个残疾人
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- const person = disabledPersonRepository.create({
- name: '原始姓名',
- gender: '男',
- idCard: '110101199001011238',
- disabilityId: 'D123456774',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市通州区',
- phone: '13400134000',
- province: '北京市',
- city: '北京市',
- // 新增字段初始值
- canDirectContact: 1,
- isInBlackList: 0,
- jobStatus: 1,
- // 日期字段初始值
- idValidDate: new Date('2023-01-01'),
- disabilityValidDate: new Date('2023-01-01')
- });
- await disabledPersonRepository.save(person);
- const updateData = {
- id: person.id,
- name: '更新后的姓名',
- gender: '女',
- phone: '13300133000',
- // 更新新增字段
- canDirectContact: 0,
- isInBlackList: 1,
- jobStatus: 1,
- // 更新日期字段
- idValidDate: new Date('2033-01-01'), // 更新有效期
- disabilityValidDate: new Date('2033-01-01') // 更新有效期
- };
- const response = await client.updateDisabledPerson.$post({
- json: updateData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.name).toBe(updateData.name);
- expect(data.gender).toBe(updateData.gender);
- expect(data.phone).toBe(updateData.phone);
- // 验证新增字段已更新
- expect(data.canDirectContact).toBe(updateData.canDirectContact);
- expect(data.isInBlackList).toBe(updateData.isInBlackList);
- expect(data.jobStatus).toBe(updateData.jobStatus);
- // 验证日期字段
- expect(data.idValidDate).toBeDefined();
- expect(data.disabilityValidDate).toBeDefined();
- if (data.idValidDate) {
- expect(new Date(data.idValidDate).toISOString().split('T')[0]).toBe('2033-01-01');
- }
- if (data.disabilityValidDate) {
- expect(new Date(data.disabilityValidDate).toISOString().split('T')[0]).toBe('2033-01-01');
- }
- }
- });
- it('应该验证身份证号唯一性(更新时)', async () => {
- // 创建两个残疾人
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- const person1 = disabledPersonRepository.create({
- name: '人员A',
- gender: '男',
- idCard: '110101199001011239',
- disabilityId: 'D123456773',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市顺义区',
- phone: '13200132000',
- province: '北京市',
- city: '北京市',
- // 新增字段
- canDirectContact: 1,
- isInBlackList: 0,
- jobStatus: 1,
- // 日期字段
- idValidDate: new Date('2028-06-15'),
- disabilityValidDate: new Date('2028-06-15')
- });
- await disabledPersonRepository.save(person1);
- const person2 = disabledPersonRepository.create({
- name: '人员B',
- gender: '女',
- idCard: '110101199001011240',
- disabilityId: 'D123456772',
- disabilityType: '视力残疾',
- disabilityLevel: '二级',
- idAddress: '北京市大兴区',
- phone: '13100131000',
- province: '北京市',
- city: '北京市',
- // 新增字段
- canDirectContact: 0,
- isInBlackList: 1,
- jobStatus: 2,
- // 日期字段
- idValidDate: new Date('2034-09-20'),
- disabilityValidDate: new Date('2034-09-20')
- });
- await disabledPersonRepository.save(person2);
- // 尝试将人员2的身份证号改为人员1的身份证号
- const updateData = {
- id: person2.id,
- idCard: '110101199001011239' // 重复的身份证号
- };
- const response = await client.updateDisabledPerson.$post({
- json: updateData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(400);
- });
- it('应该处理不存在的残疾人', async () => {
- const updateData = {
- id: 99999, // 不存在的ID
- name: '新姓名'
- };
- const response = await client.updateDisabledPerson.$post({
- json: updateData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(404);
- });
- });
- describe('GET /getAllDisabledPersons', () => {
- it('应该成功获取残疾人列表(分页)', async () => {
- // 创建一些测试数据
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- for (let i = 1; i <= 5; i++) {
- const person = disabledPersonRepository.create({
- name: `残疾人${i}`,
- gender: i % 2 === 0 ? '女' : '男',
- idCard: `1101011990010112${40 + i}`,
- disabilityId: `D1234567${70 + i}`,
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: `北京市测试区${i}`,
- phone: `138001380${i}`,
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person);
- }
- const response = await client.getAllDisabledPersons.$get({
- query: {
- skip: 0,
- take: 10
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.data).toHaveLength(5);
- expect(data.total).toBe(5);
- expect(data.data[0].name).toBe('残疾人5'); // 按ID降序排列
- }
- });
- it('应该处理分页参数', async () => {
- // 创建更多测试数据
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- for (let i = 1; i <= 15; i++) {
- const person = disabledPersonRepository.create({
- name: `分页人员${i}`,
- gender: i % 2 === 0 ? '女' : '男',
- idCard: `1101011990010113${i}`,
- disabilityId: `D1234568${i}`,
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: `北京市分页区${i}`,
- phone: `138001381${i}`,
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person);
- }
- const response = await client.getAllDisabledPersons.$get({
- query: {
- skip: 5,
- take: 5
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.data).toHaveLength(5);
- expect(data.total).toBe(15);
- }
- });
- it('应该支持残疾类型筛选', async () => {
- // 创建测试数据
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- // 创建不同残疾类型的人员
- const person1 = disabledPersonRepository.create({
- name: '视力残疾人',
- gender: '男',
- idCard: '110101199001011351',
- disabilityId: 'D123456851',
- disabilityType: '视力残疾',
- disabilityLevel: '一级',
- idAddress: '北京市测试区',
- phone: '1380013851',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person1);
- const person2 = disabledPersonRepository.create({
- name: '肢体残疾人',
- gender: '女',
- idCard: '110101199001011352',
- disabilityId: 'D123456852',
- disabilityType: '肢体残疾',
- disabilityLevel: '二级',
- idAddress: '北京市测试区',
- phone: '1380013852',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person2);
- // 测试视力残疾筛选
- const response = await client.getAllDisabledPersons.$get({
- query: {
- disabilityType: '视力残疾',
- skip: 0,
- take: 10
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.data).toHaveLength(1);
- expect(data.data[0].disabilityType).toBe('视力残疾');
- }
- });
- it('应该支持残疾级别筛选', async () => {
- // 创建测试数据
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- // 创建不同残疾级别的人员
- const person1 = disabledPersonRepository.create({
- name: '一级残疾人',
- gender: '男',
- idCard: '110101199001011361',
- disabilityId: 'D123456861',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市测试区',
- phone: '1380013861',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person1);
- const person2 = disabledPersonRepository.create({
- name: '二级残疾人',
- gender: '女',
- idCard: '110101199001011362',
- disabilityId: 'D123456862',
- disabilityType: '肢体残疾',
- disabilityLevel: '二级',
- idAddress: '北京市测试区',
- phone: '1380013862',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person2);
- // 测试一级残疾筛选
- const response = await client.getAllDisabledPersons.$get({
- query: {
- disabilityLevel: '一级',
- skip: 0,
- take: 10
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.data).toHaveLength(1);
- expect(data.data[0].disabilityLevel).toBe('一级');
- }
- });
- it('应该支持省份筛选', async () => {
- // 创建测试数据
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- // 创建不同省份的人员
- const person1 = disabledPersonRepository.create({
- name: '北京人员',
- gender: '男',
- idCard: '110101199001011371',
- disabilityId: 'D123456871',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市测试区',
- phone: '1380013871',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person1);
- const person2 = disabledPersonRepository.create({
- name: '上海人员',
- gender: '女',
- idCard: '310101199001011372',
- disabilityId: 'D123456872',
- disabilityType: '肢体残疾',
- disabilityLevel: '二级',
- idAddress: '上海市测试区',
- phone: '1380013872',
- province: '上海市',
- city: '上海市'
- });
- await disabledPersonRepository.save(person2);
- // 测试北京筛选
- const response = await client.getAllDisabledPersons.$get({
- query: {
- province: '北京市',
- skip: 0,
- take: 10
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.data).toHaveLength(1);
- expect(data.data[0].province).toBe('北京市');
- }
- });
- it('应该支持多条件组合筛选', async () => {
- // 创建测试数据
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- // 创建符合多个条件的人员
- const person1 = disabledPersonRepository.create({
- name: '北京一级视力残疾人',
- gender: '男',
- idCard: '110101199001011381',
- disabilityId: 'D123456881',
- disabilityType: '视力残疾',
- disabilityLevel: '一级',
- idAddress: '北京市测试区',
- phone: '1380013881',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person1);
- // 创建不符合全部条件的人员
- const person2 = disabledPersonRepository.create({
- name: '北京二级肢体残疾人',
- gender: '女',
- idCard: '110101199001011382',
- disabilityId: 'D123456882',
- disabilityType: '肢体残疾',
- disabilityLevel: '二级',
- idAddress: '北京市测试区',
- phone: '1380013882',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person2);
- // 测试多条件组合筛选:北京 + 一级 + 视力残疾
- const response = await client.getAllDisabledPersons.$get({
- query: {
- province: '北京市',
- disabilityType: '视力残疾',
- disabilityLevel: '一级',
- skip: 0,
- take: 10
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.data).toHaveLength(1);
- expect(data.data[0].name).toBe('北京一级视力残疾人');
- }
- });
- });
- describe('GET /searchDisabledPersons', () => {
- it('应该成功按姓名搜索残疾人', async () => {
- // 创建测试数据
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- const person1 = disabledPersonRepository.create({
- name: '张三',
- gender: '男',
- idCard: '110101199001011241',
- disabilityId: 'D123456771',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市昌平区',
- phone: '13000130001',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person1);
- const person2 = disabledPersonRepository.create({
- name: '李四',
- gender: '女',
- idCard: '110101199001011242',
- disabilityId: 'D123456770',
- disabilityType: '视力残疾',
- disabilityLevel: '二级',
- idAddress: '北京市平谷区',
- phone: '13000130002',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person2);
- const response = await client.searchDisabledPersons.$get({
- query: {
- keyword: '张三',
- skip: 0,
- take: 10
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.data).toHaveLength(1);
- expect(data.data[0].name).toBe('张三');
- }
- });
- it('应该验证搜索关键词不能为空', async () => {
- const response = await client.searchDisabledPersons.$get({
- query: {
- keyword: '', // 空关键词
- skip: 0,
- take: 10
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(400);
- });
- });
- describe('GET /getDisabledPerson/{id}', () => {
- it('应该成功获取单个残疾人详情', async () => {
- // 先创建一个残疾人
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- const person = disabledPersonRepository.create({
- name: '测试人员详情',
- gender: '男',
- idCard: '110101199001011243',
- disabilityId: 'D123456769',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市怀柔区',
- phone: '13000130003',
- province: '北京市',
- city: '北京市',
- canDirectContact: 1,
- isMarried: 1
- });
- await disabledPersonRepository.save(person);
- const response = await client.getDisabledPerson[':id'].$get({
- param: {
- id: person.id
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data?.name).toBe('测试人员详情');
- expect(data?.canDirectContact).toBe(1);
- }
- });
- it('应该处理不存在的残疾人ID', async () => {
- const response = await client.getDisabledPerson[':id'].$get({
- param: {
- id: 99999 // 不存在的ID
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200); // 返回200,但数据为null
- if (response.status === 200) {
- const data = await response.json();
- expect(data).toBeNull();
- }
- });
- });
- describe('GET /getDisabledPersonByIdCard', () => {
- it('应该成功根据身份证号查询残疾人', async () => {
- // 先创建一个残疾人
- const dataSource = await IntegrationTestDatabase.getDataSource();
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- const person = disabledPersonRepository.create({
- name: '身份证查询测试',
- gender: '女',
- idCard: '110101199001011244',
- disabilityId: 'D123456768',
- disabilityType: '听力残疾',
- disabilityLevel: '三级',
- idAddress: '北京市密云区',
- phone: '13000130004',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person);
- const response = await client.findByIdCard[':idCard'].$get({
- param: {
- idCard: '110101199001011244'
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data?.name).toBe('身份证查询测试');
- expect(data?.idCard).toBe('110101199001011244');
- }
- });
- it('应该处理不存在的身份证号', async () => {
- const response = await client.findByIdCard[':idCard'].$get({
- param: {
- idCard: '999999999999999999' // 不存在的身份证号
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200); // 返回200,但数据为null
- if (response.status === 200) {
- const data = await response.json();
- expect(data).toBeNull();
- }
- });
- });
- describe('POST /createAggregatedDisabledPerson', () => {
- it('应该成功创建聚合残疾人信息(包含所有关联数据)', async () => {
- const createData = {
- personInfo: {
- name: '聚合创建测试',
- gender: '男',
- idCard: '110101199001011245',
- disabilityId: 'D123456767',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市延庆区',
- phone: '13000130005',
- province: '北京市',
- city: '北京市',
- // 新增字段
- canDirectContact: 1,
- isInBlackList: 0,
- jobStatus: 1,
- specificDisability: '左腿截肢,右腿行动不便,需要轮椅',
- // 日期字段
- idValidDate: new Date('2045-11-30'),
- disabilityValidDate: new Date('2045-11-30')
- },
- bankCards: [
- {
- subBankName: '北京分行',
- bankName: '中国工商银行',
- cardNumber: '6222021234567890123',
- cardholderName: '聚合创建测试',
- fileId: testFile.id,
- isDefault: 0
- }
- ],
- photos: [
- {
- photoType: '身份证照片',
- fileId: testFile.id // 使用测试文件ID
- }
- ],
- remarks: [
- {
- remarkContent: '家庭经济困难,需要帮助',
- operatorId: 1
- }
- ],
- visits: [
- {
- visitDate: '2025-12-02T10:00:00Z',
- visitType: '电话回访',
- visitContent: '初次回访,了解基本情况',
- visitorId: 1
- }
- ]
- };
- const response = await client.createAggregatedDisabledPerson.$post({
- json: createData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data.personInfo.name).toBe('聚合创建测试');
- // 验证新增字段
- expect(data.personInfo.canDirectContact).toBe(1);
- expect(data.personInfo.isInBlackList).toBe(0);
- expect(data.personInfo.jobStatus).toBe(1);
- expect(data.personInfo.specificDisability).toBe('左腿截肢,右腿行动不便,需要轮椅');
- // 验证日期字段
- expect(data.personInfo.idValidDate).toBeDefined();
- expect(data.personInfo.disabilityValidDate).toBeDefined();
- if (data.personInfo.idValidDate) {
- expect(new Date(data.personInfo.idValidDate).toISOString().split('T')[0]).toBe('2045-11-30');
- }
- if (data.personInfo.disabilityValidDate) {
- expect(new Date(data.personInfo.disabilityValidDate).toISOString().split('T')[0]).toBe('2045-11-30');
- }
- expect(data.bankCards).toHaveLength(1);
- expect(data.photos).toHaveLength(1);
- expect(data.remarks).toHaveLength(1);
- expect(data.visits).toHaveLength(1);
- // 验证文件集成
- expect(data.photos[0].fileId).toBe(testFile.id);
- }
- });
- it('应该验证文件ID的有效性', async () => {
- const createData = {
- personInfo: {
- name: '文件验证测试',
- gender: '女',
- idCard: '110101199001011246',
- disabilityId: 'D123456766',
- disabilityType: '视力残疾',
- disabilityLevel: '二级',
- idAddress: '北京市房山区',
- phone: '13000130006',
- province: '北京市',
- city: '北京市',
- // 新增字段
- canDirectContact: 0,
- isInBlackList: 1,
- jobStatus: 2,
- // 日期字段
- idValidDate: new Date('2036-07-25'),
- disabilityValidDate: new Date('2036-07-25')
- },
- photos: [
- {
- photoType: '身份证照片',
- fileId: 99999 // 不存在的文件ID
- }
- ]
- };
- const response = await client.createAggregatedDisabledPerson.$post({
- json: createData
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(400); // 应该返回400,因为文件ID无效
- });
- });
- describe('GET /getAggregatedDisabledPerson/{personId}', () => {
- it('应该成功获取聚合残疾人信息', async () => {
- // 先创建一个完整的残疾人数据(包含所有关联数据)
- const dataSource = await IntegrationTestDatabase.getDataSource();
- // 创建残疾人
- const disabledPersonRepository = dataSource.getRepository(DisabledPerson);
- const person = disabledPersonRepository.create({
- name: '聚合查询测试',
- gender: '男',
- idCard: '110101199001011247',
- disabilityId: 'D123456765',
- disabilityType: '肢体残疾',
- disabilityLevel: '一级',
- idAddress: '北京市门头沟区',
- phone: '13000130007',
- province: '北京市',
- city: '北京市'
- });
- await disabledPersonRepository.save(person);
- // 创建银行卡
- const bankCardRepository = dataSource.getRepository(DisabledBankCard);
- const bankCard = bankCardRepository.create({
- personId: person.id,
- subBankName: '北京分行',
- bankName: '中国建设银行',
- cardNumber: '6227001234567890123',
- cardholderName: '聚合查询测试',
- fileId: testFile.id,
- isDefault: 0
- });
- await bankCardRepository.save(bankCard);
- // 创建照片(使用测试文件)
- const photoRepository = dataSource.getRepository(DisabledPhoto);
- const photo = photoRepository.create({
- personId: person.id,
- photoType: '身份证照片',
- fileId: testFile.id
- });
- await photoRepository.save(photo);
- // 创建备注
- const remarkRepository = dataSource.getRepository(DisabledRemark);
- const remark = remarkRepository.create({
- personId: person.id,
- remarkContent: '目前无工作,需要就业帮助',
- operatorId: 1
- });
- await remarkRepository.save(remark);
- // 创建回访记录
- const visitRepository = dataSource.getRepository(DisabledVisit);
- const visit = visitRepository.create({
- personId: person.id,
- visitDate: new Date('2025-12-01T14:30:00Z'),
- visitType: '上门回访',
- visitContent: '了解就业需求',
- visitorId: 2
- });
- await visitRepository.save(visit);
- const response = await client.getAggregatedDisabledPerson[':id'].$get({
- param: {
- id: person.id
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- // 调试:打印响应状态和错误信息
- console.debug('响应状态:', response.status);
- if (response.status !== 200) {
- const errorText = await response.text();
- console.debug('错误响应:', errorText);
- }
- expect(response.status).toBe(200);
- if (response.status === 200) {
- const data = await response.json();
- expect(data).not.toBeNull();
- expect(data!.personInfo.name).toBe('聚合查询测试');
- expect(data!.bankCards).toHaveLength(1);
- expect(data!.photos).toHaveLength(1);
- expect(data!.remarks).toHaveLength(1);
- expect(data!.visits).toHaveLength(1);
- // 验证文件数据完整性
- expect(data!.photos[0].fileId).toBe(testFile.id);
- }
- });
- it('应该处理不存在的残疾人ID', async () => {
- const response = await client.getAggregatedDisabledPerson[':id'].$get({
- param: {
- id: 99999 // 不存在的ID
- }
- }, {
- headers: {
- 'Authorization': `Bearer ${testToken}`
- }
- });
- expect(response.status).toBe(404);
- });
- });
- describe('认证测试', () => {
- it('应该验证所有端点需要认证', async () => {
- // 测试没有token的情况
- const response = await client.createDisabledPerson.$post({
- json: {
- name: '测试人员',
- gender: '男',
- idCard: '110101199001011235',
- disabilityId: 'D123456789',
- disabilityType: '视力残疾',
- disabilityLevel: '一级',
- idAddress: '北京市东城区',
- phone: '13800138000',
- province: '北京市',
- city: '北京市'
- }
- });
- expect(response.status).toBe(401);
- });
- it('应该验证无效token', async () => {
- const response = await client.createDisabledPerson.$post({
- json: {
- name: '测试人员',
- gender: '男',
- idCard: '110101199001011236',
- disabilityId: 'D123456790',
- disabilityType: '视力残疾',
- disabilityLevel: '一级',
- idAddress: '北京市东城区',
- phone: '13800138001',
- province: '北京市',
- city: '北京市'
- }
- }, {
- headers: {
- 'Authorization': 'Bearer invalid_token'
- }
- });
- expect(response.status).toBe(401);
- });
- });
- });
|