test: 为mapper补充测试
All checks were successful
deploy to server / build-and-deploy (push) Successful in 2m56s
All checks were successful
deploy to server / build-and-deploy (push) Successful in 2m56s
This commit is contained in:
31
app/models/mappers/companyProfileMapper.test.ts
Normal file
31
app/models/mappers/companyProfileMapper.test.ts
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
import { expect, test, describe } from 'vitest';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: companyProfileMapper
|
||||||
|
*/
|
||||||
|
describe('companyProfileMapper', () => {
|
||||||
|
test('convert raw data to CompanyProfileView correctly', () => {
|
||||||
|
const rawData: CompanyProfile = {
|
||||||
|
id: 1,
|
||||||
|
translations: [
|
||||||
|
{ id: 10, content: 'This is raw data of company profile' },
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toCompanyProfileView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
content: 'This is raw data of company profile',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: CompanyProfile = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toCompanyProfileView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
content: '',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
30
app/models/mappers/contactInfoMapper.test.ts
Normal file
30
app/models/mappers/contactInfoMapper.test.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { describe, test, expect } from 'vitest';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: contactInfoMapper
|
||||||
|
*/
|
||||||
|
describe('contactInfoMapper', () => {
|
||||||
|
test('convert raw data to ContactInfoView correctly', () => {
|
||||||
|
const rawData: ContactInfo = {
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 10, content: 'This is raw data of contact info' }],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toContactInfoView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
content: 'This is raw data of contact info',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: ContactInfo = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toContactInfoView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
content: '',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
106
app/models/mappers/documentMapper.test.ts
Normal file
106
app/models/mappers/documentMapper.test.ts
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
import { describe, test, expect } from 'vitest';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toProductDocumentView
|
||||||
|
*/
|
||||||
|
describe('toProductDocumentView', () => {
|
||||||
|
test('convert raw data with fileId to ProductDocumentView correctly', () => {
|
||||||
|
const rawData: ProductDocument = {
|
||||||
|
id: 1,
|
||||||
|
file: 'rand-om__-uuid-1234',
|
||||||
|
translations: [{ id: 10, title: 'Document Title' }],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductDocumentView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
fileId: 'rand-om__-uuid-1234',
|
||||||
|
filename: undefined,
|
||||||
|
title: 'Document Title',
|
||||||
|
url: 'http://localhost:8055/assets/rand-om__-uuid-1234',
|
||||||
|
size: undefined,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with fileMeta to ProductDocumentView correctly', () => {
|
||||||
|
const rawData: ProductDocument = {
|
||||||
|
id: 1,
|
||||||
|
file: {
|
||||||
|
id: 'rand-om__-uuid-1234',
|
||||||
|
filename_download: 'document.pdf',
|
||||||
|
filesize: 2048,
|
||||||
|
},
|
||||||
|
translations: [{ id: 10, title: 'Document Title' }],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductDocumentView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
fileId: 'rand-om__-uuid-1234',
|
||||||
|
filename: 'document.pdf',
|
||||||
|
title: 'Document Title',
|
||||||
|
url: 'http://localhost:8055/assets/rand-om__-uuid-1234',
|
||||||
|
size: 2048,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: ProductDocument = {
|
||||||
|
id: 1,
|
||||||
|
file: 'rand-om__-uuid-1234',
|
||||||
|
translations: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductDocumentView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
fileId: 'rand-om__-uuid-1234',
|
||||||
|
filename: undefined,
|
||||||
|
title: '',
|
||||||
|
url: 'http://localhost:8055/assets/rand-om__-uuid-1234',
|
||||||
|
size: undefined,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toDocumentListView
|
||||||
|
*/
|
||||||
|
describe('toProductDocumentView', () => {
|
||||||
|
test('convert raw data with fileId to DocumentListView correctly', () => {
|
||||||
|
const rawData: ProductDocument = {
|
||||||
|
id: 1,
|
||||||
|
file: 'rand-om__-uuid-1234',
|
||||||
|
translations: [{ id: 10, title: 'Document Title' }],
|
||||||
|
products: [
|
||||||
|
{
|
||||||
|
id: 10,
|
||||||
|
products_id: {
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 1, name: 'Product A' }],
|
||||||
|
product_type: {
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 1, name: 'Type A' }],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toDocumentListView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
fileId: 'rand-om__-uuid-1234',
|
||||||
|
filename: undefined,
|
||||||
|
title: 'Document Title',
|
||||||
|
url: 'http://localhost:8055/assets/rand-om__-uuid-1234',
|
||||||
|
size: undefined,
|
||||||
|
products: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: 'Product A',
|
||||||
|
type: {
|
||||||
|
id: 1,
|
||||||
|
name: 'Type A',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
78
app/models/mappers/homepageMapper.test.ts
Normal file
78
app/models/mappers/homepageMapper.test.ts
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
import { describe, test, expect } from 'vitest';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toHomepageView
|
||||||
|
*/
|
||||||
|
describe('toHomepageView', () => {
|
||||||
|
test('convert raw data to HomepageView correctly', () => {
|
||||||
|
const rawData: Homepage = {
|
||||||
|
id: 1,
|
||||||
|
carousel: [
|
||||||
|
{ id: 1, directus_files_id: 'file-uuid-1' },
|
||||||
|
{ id: 2, directus_files_id: 'file-uuid-2' },
|
||||||
|
],
|
||||||
|
recommend_products: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 1, name: 'Product 1', summary: 'Summary 1' }],
|
||||||
|
cover: 'cover-file-uuid-1',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
translations: [{ id: 2, name: 'Product 2', summary: 'Summary 2' }],
|
||||||
|
cover: { id: 'cover-file-uuid-2' },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
recommend_solutions: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 1, title: 'Solution 1', summary: 'Summary 1' }],
|
||||||
|
cover: 'cover-file-uuid-1',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toHomepageView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
carousel: ['file-uuid-1', 'file-uuid-2'],
|
||||||
|
recommendProducts: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: 'Product 1',
|
||||||
|
summary: 'Summary 1',
|
||||||
|
cover: 'cover-file-uuid-1',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: 'Product 2',
|
||||||
|
summary: 'Summary 2',
|
||||||
|
cover: 'cover-file-uuid-2',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
recommendSolutions: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: 'Solution 1',
|
||||||
|
summary: 'Summary 1',
|
||||||
|
cover: 'cover-file-uuid-1',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: Homepage = {
|
||||||
|
id: 1,
|
||||||
|
carousel: [],
|
||||||
|
recommend_products: [{ id: 1, translations: [], cover: null }],
|
||||||
|
recommend_solutions: [{ id: 1, translations: [], cover: null }],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toHomepageView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
carousel: [],
|
||||||
|
recommendProducts: [{ id: 1, name: '', summary: '', cover: null }],
|
||||||
|
recommendSolutions: [{ id: 1, title: '', summary: '', cover: null }],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
168
app/models/mappers/productMapper.test.ts
Normal file
168
app/models/mappers/productMapper.test.ts
Normal file
@ -0,0 +1,168 @@
|
|||||||
|
import { describe, test, expect } from 'vitest';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toProductListView
|
||||||
|
*/
|
||||||
|
describe('toProductListView', () => {
|
||||||
|
test('convert raw data to ProductListView correctly', () => {
|
||||||
|
const rawData: Product = {
|
||||||
|
id: 1,
|
||||||
|
translations: [
|
||||||
|
{ id: 10, name: 'Product Name', summary: 'Product Summary' },
|
||||||
|
],
|
||||||
|
cover: 'cover-file-uuid-1234',
|
||||||
|
product_type: {
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 20, name: 'Type Name' }],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductListView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
name: 'Product Name',
|
||||||
|
summary: 'Product Summary',
|
||||||
|
cover: 'cover-file-uuid-1234',
|
||||||
|
product_type: 'Type Name',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: Product = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
cover: 'cover-file-uuid-1234',
|
||||||
|
product_type: {
|
||||||
|
id: 20,
|
||||||
|
translations: [],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductListView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
name: '',
|
||||||
|
summary: '',
|
||||||
|
cover: 'cover-file-uuid-1234',
|
||||||
|
product_type: '',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toProductSpecView
|
||||||
|
*/
|
||||||
|
describe('toProductSpecView', () => {
|
||||||
|
test('convert raw data to ProductSpecView correctly', () => {
|
||||||
|
const rawData: ProductSpec = {
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 1, key: 'Key', value: 'Value' }],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductSpecView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
key: 'Key',
|
||||||
|
value: 'Value',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: ProductSpec = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductSpecView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
key: '',
|
||||||
|
value: '',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toProductSpecGroupView
|
||||||
|
*/
|
||||||
|
describe('toProductSpecGroupView', () => {
|
||||||
|
test('convert raw data to ProductSpecGroupView correctly', () => {
|
||||||
|
const rawData: ProductSpecGroup = {
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 1, name: 'Group Name' }],
|
||||||
|
specs: [
|
||||||
|
{ id: 1, translations: [{ id: 1, key: 'Key1', value: 'Value1' }] },
|
||||||
|
{ id: 2, translations: [{ id: 2, key: 'Key2', value: 'Value2' }] },
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductSpecGroupView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
name: 'Group Name',
|
||||||
|
specs: [
|
||||||
|
{ id: 1, key: 'Key1', value: 'Value1' },
|
||||||
|
{ id: 2, key: 'Key2', value: 'Value2' },
|
||||||
|
],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: ProductSpecGroup = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
specs: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductSpecGroupView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
name: '',
|
||||||
|
specs: [],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toProductView
|
||||||
|
*/
|
||||||
|
describe('toProductView', () => {
|
||||||
|
test('convert raw data to ProductView correctly', () => {
|
||||||
|
const rawData: Product = {
|
||||||
|
id: 1,
|
||||||
|
translations: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: 'Product Name',
|
||||||
|
summary: 'Product Summary',
|
||||||
|
description: 'Product Description',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
name: 'Product Name',
|
||||||
|
summary: 'Product Summary',
|
||||||
|
description: 'Product Description',
|
||||||
|
product_type: '',
|
||||||
|
images: [],
|
||||||
|
documents: [],
|
||||||
|
faqs: [],
|
||||||
|
specs: [],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: Product = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
name: '',
|
||||||
|
summary: '',
|
||||||
|
description: '',
|
||||||
|
product_type: '',
|
||||||
|
images: [],
|
||||||
|
documents: [],
|
||||||
|
faqs: [],
|
||||||
|
specs: [],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@ -10,14 +10,15 @@
|
|||||||
export function toProductListView(raw: Product): ProductListView {
|
export function toProductListView(raw: Product): ProductListView {
|
||||||
const trans = raw.translations?.[0] ?? { name: '', summary: '' };
|
const trans = raw.translations?.[0] ?? { name: '', summary: '' };
|
||||||
|
|
||||||
|
const type = isObject<ProductType>(raw.product_type)
|
||||||
|
? raw.product_type.translations.length === 0
|
||||||
|
? ''
|
||||||
|
: raw.product_type.translations[0].name
|
||||||
|
: '';
|
||||||
|
|
||||||
return {
|
return {
|
||||||
id: raw.id,
|
id: raw.id,
|
||||||
product_type:
|
product_type: type,
|
||||||
typeof raw.product_type === 'string'
|
|
||||||
? raw.product_type
|
|
||||||
: typeof raw.product_type === 'object' && raw.product_type
|
|
||||||
? raw.product_type.translations[0].name || ''
|
|
||||||
: '',
|
|
||||||
name: trans.name,
|
name: trans.name,
|
||||||
summary: trans.summary,
|
summary: trans.summary,
|
||||||
cover: raw.cover.toString(),
|
cover: raw.cover.toString(),
|
||||||
|
|||||||
113
app/models/mappers/questionMapper.test.ts
Normal file
113
app/models/mappers/questionMapper.test.ts
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
import { describe, expect, test } from 'vitest';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toProductQuestionView
|
||||||
|
*/
|
||||||
|
describe('toProductQuestionView', () => {
|
||||||
|
test('convert raw data to ProductQuestionView correctly', () => {
|
||||||
|
const rawData: Question = {
|
||||||
|
id: 1,
|
||||||
|
translations: [
|
||||||
|
{ id: 1, title: 'Question Title', content: 'Question Answer' },
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductQuestionView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
title: 'Question Title',
|
||||||
|
content: 'Question Answer',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: Question = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toProductQuestionView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
title: '',
|
||||||
|
content: '',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toQuestionListView
|
||||||
|
*/
|
||||||
|
describe('toQuestionListView', () => {
|
||||||
|
test('convert raw data to QuestionListView correctly', () => {
|
||||||
|
const rawData: Question = {
|
||||||
|
id: 1,
|
||||||
|
translations: [
|
||||||
|
{ id: 1, title: 'Question Title', content: 'Question Answer' },
|
||||||
|
],
|
||||||
|
products: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
products_id: {
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 1, name: 'Product Name' }],
|
||||||
|
product_type: {
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 1, name: 'Type Name' }],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toQuestionListView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
title: 'Question Title',
|
||||||
|
content: 'Question Answer',
|
||||||
|
products: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: 'Product Name',
|
||||||
|
type: {
|
||||||
|
id: 1,
|
||||||
|
name: 'Type Name',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: Question = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
products: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
products_id: {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
product_type: {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toQuestionListView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
title: '',
|
||||||
|
content: '',
|
||||||
|
products: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: '',
|
||||||
|
type: {
|
||||||
|
id: 1,
|
||||||
|
name: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@ -40,7 +40,7 @@ export function toQuestionListView(raw: Question): QuestionListView {
|
|||||||
isObject<ProductType>(item.product_type) &&
|
isObject<ProductType>(item.product_type) &&
|
||||||
({
|
({
|
||||||
id: item.product_type.id,
|
id: item.product_type.id,
|
||||||
name: item.product_type.translations[0]?.name,
|
name: item.product_type.translations[0]?.name ?? '',
|
||||||
} satisfies QuestionListProductType);
|
} satisfies QuestionListProductType);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|||||||
88
app/models/mappers/solutionMapper.test.ts
Normal file
88
app/models/mappers/solutionMapper.test.ts
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
import { describe, test, expect } from 'vitest';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toSolutionListView
|
||||||
|
*/
|
||||||
|
describe('toSolutionListView', () => {
|
||||||
|
test('convert raw data to SolutionListView correctly', () => {
|
||||||
|
const rawData: Solution = {
|
||||||
|
id: 1,
|
||||||
|
translations: [
|
||||||
|
{ id: 1, title: 'Solution Title', summary: 'Solution Summary' },
|
||||||
|
],
|
||||||
|
type: {
|
||||||
|
id: 1,
|
||||||
|
translations: [{ id: 1, name: 'Type Name' }],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toSolutionListView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
title: 'Solution Title',
|
||||||
|
summary: 'Solution Summary',
|
||||||
|
solution_type: 'Type Name',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: Solution = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
type: {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toSolutionListView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
title: '',
|
||||||
|
summary: '',
|
||||||
|
solution_type: '',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元测试: toSolutionView
|
||||||
|
*/
|
||||||
|
describe('toSolutionView', () => {
|
||||||
|
test('convert raw data to SolutionView correctly', () => {
|
||||||
|
const rawData: Solution = {
|
||||||
|
id: 1,
|
||||||
|
translations: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: 'Solution Title',
|
||||||
|
summary: 'Solution Summary',
|
||||||
|
content: 'Solution Content',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
create_at: '2023-01-01T00:00:00Z',
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toSolutionView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
title: 'Solution Title',
|
||||||
|
summary: 'Solution Summary',
|
||||||
|
content: 'Solution Content',
|
||||||
|
createAt: '2023-01-01T00:00:00Z',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('convert raw data with missing translations', () => {
|
||||||
|
const rawData: Solution = {
|
||||||
|
id: 1,
|
||||||
|
translations: [],
|
||||||
|
create_at: '2023-01-01T00:00:00Z',
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(toSolutionView(rawData)).toEqual({
|
||||||
|
id: 1,
|
||||||
|
title: '',
|
||||||
|
summary: '',
|
||||||
|
content: '',
|
||||||
|
createAt: '2023-01-01T00:00:00Z',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@ -15,13 +15,17 @@ export function toSolutionListView(raw: Solution): SolutionListView {
|
|||||||
summary: '',
|
summary: '',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const type = isObject<SolutionType>(raw.type)
|
||||||
|
? raw.type.translations.length === 0
|
||||||
|
? ''
|
||||||
|
: raw.type.translations[0].name
|
||||||
|
: '';
|
||||||
|
|
||||||
return {
|
return {
|
||||||
id: raw.id,
|
id: raw.id,
|
||||||
title: trans.title,
|
title: trans.title,
|
||||||
summary: trans.summary,
|
summary: trans.summary,
|
||||||
solution_type: isObject<SolutionType>(raw.type)
|
solution_type: type,
|
||||||
? raw.type.translations[0].name
|
|
||||||
: '',
|
|
||||||
cover: isObject<DirectusFile>(raw.cover) ? raw.cover.id : raw.cover,
|
cover: isObject<DirectusFile>(raw.cover) ? raw.cover.id : raw.cover,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user