mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
439 lines
12 KiB
TypeScript
439 lines
12 KiB
TypeScript
import { FormFieldModel } from '../models/form-field.model';
|
|
import { RowParser } from './row-parser';
|
|
import { DynamicRowGroupModel } from '../ds-dynamic-form-ui/models/ds-dynamic-row-group-model';
|
|
import { DynamicRowArrayModel } from '../ds-dynamic-form-ui/models/ds-dynamic-row-array-model';
|
|
import { FormRowModel } from '../../../../core/config/models/config-submission-form.model';
|
|
import { getMockTranslateService } from 'src/app/shared/mocks/translate.service.mock';
|
|
import { TestBed } from '@angular/core/testing';
|
|
import { TranslateService } from '@ngx-translate/core';
|
|
import { Injector } from '@angular/core';
|
|
|
|
describe('RowParser test suite', () => {
|
|
|
|
let row1: FormRowModel;
|
|
let row2: FormRowModel;
|
|
let row3: FormRowModel;
|
|
let row4: FormRowModel;
|
|
let row5: FormRowModel;
|
|
let row6: FormRowModel;
|
|
let row7: FormRowModel;
|
|
let row8: FormRowModel;
|
|
let row9: FormRowModel;
|
|
let row10: FormRowModel;
|
|
let injector: Injector;
|
|
|
|
const submissionId = '1234';
|
|
const scopeUUID = 'testScopeUUID';
|
|
const initFormValues = {};
|
|
const submissionScope = 'WORKSPACE';
|
|
const readOnly = false;
|
|
const typeField = 'dc_type';
|
|
|
|
beforeEach(() => {
|
|
let translateService = getMockTranslateService();
|
|
injector = Injector.create({
|
|
providers: [
|
|
{ provide: TranslateService, useValue: translateService },
|
|
],
|
|
});
|
|
row1 = {
|
|
fields: [
|
|
{
|
|
input: { type: 'lookup' },
|
|
label: 'Journal',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Enter the name of the journal where the item has been\n\t\t\t\t\tpublished, if any.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'journal',
|
|
controlledVocabulary: 'JOURNALAuthority',
|
|
closed: false
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel,
|
|
{
|
|
input: { type: 'onebox' },
|
|
label: 'Issue',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: ' Enter issue number.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'issue'
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel,
|
|
{
|
|
input: { type: 'name' },
|
|
label: 'Name',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Enter full name.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'name'
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
row2 = {
|
|
fields: [
|
|
{
|
|
input: {
|
|
type: 'onebox',
|
|
regex: '^[a-zA-Z0-9]+$'
|
|
},
|
|
label: 'Title',
|
|
mandatory: 'false',
|
|
repeatable: true,
|
|
hints: 'Enter the name of the events, if any.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'title',
|
|
controlledVocabulary: 'EVENTAuthority',
|
|
closed: false
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
|
|
row3 = {
|
|
fields: [
|
|
{
|
|
input: { type: 'onebox' },
|
|
label: 'Title',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Enter the name of the events, if any.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'title',
|
|
controlledVocabulary: 'EVENTAuthority',
|
|
closed: false
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel,
|
|
{
|
|
input: { type: 'onebox' },
|
|
label: 'Other title',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Enter the name of the events, if any.',
|
|
scope: 'WORKFLOW',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'otherTitle',
|
|
controlledVocabulary: 'EVENTAuthority',
|
|
closed: false
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
|
|
row4 = {
|
|
fields: [
|
|
{
|
|
input: {
|
|
type: 'dropdown'
|
|
},
|
|
label: 'Type',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Select the tyupe.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'type',
|
|
controlledVocabulary: 'common_types_dataset',
|
|
closed: false
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel,
|
|
{
|
|
input: { type: 'series' },
|
|
label: 'Series/Report No.',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Enter the series and number assigned to this item by your community.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'series',
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
|
|
row5 = {
|
|
fields: [
|
|
{
|
|
input: {
|
|
type: 'lookup-name'
|
|
},
|
|
label: 'Author',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Enter the name of the author.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'author',
|
|
controlledVocabulary: 'RPAuthority',
|
|
closed: false
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
|
|
row6 = {
|
|
fields: [
|
|
{
|
|
input: {
|
|
type: 'list'
|
|
},
|
|
label: 'Type',
|
|
mandatory: 'false',
|
|
repeatable: true,
|
|
hints: 'Select the type.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'type',
|
|
controlledVocabulary: 'type_programme',
|
|
closed: false
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
|
|
row7 = {
|
|
fields: [
|
|
{
|
|
input: {
|
|
type: 'date'
|
|
},
|
|
label: 'Date of Issue.',
|
|
mandatory: 'true',
|
|
repeatable: false,
|
|
hints: 'Please give the date of previous publication or public distribution. You can leave out the day and/or month if they aren\'t applicable.',
|
|
mandatoryMessage: 'You must enter at least the year.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'date',
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
|
|
row8 = {
|
|
fields: [
|
|
{
|
|
input: {
|
|
type: 'tag'
|
|
},
|
|
label: 'Keywords',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Local controlled vocabulary.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'subject',
|
|
controlledVocabulary: 'JOURNALAuthority',
|
|
closed: false
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
|
|
row9 = {
|
|
fields: [
|
|
{
|
|
input: {
|
|
type: 'textarea'
|
|
},
|
|
label: 'Description',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Enter a description.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'description'
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
|
|
row10 = {
|
|
fields: [
|
|
{
|
|
input: {
|
|
type: 'group'
|
|
},
|
|
rows: [
|
|
{
|
|
fields: [
|
|
{
|
|
input: {
|
|
type: 'onebox'
|
|
},
|
|
label: 'Author',
|
|
mandatory: 'false',
|
|
repeatable: false,
|
|
hints: 'Enter the name of the author.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'author'
|
|
}
|
|
],
|
|
languageCodes: []
|
|
},
|
|
{
|
|
input: {
|
|
type: 'onebox'
|
|
},
|
|
label: 'Affiliation',
|
|
mandatory: false,
|
|
repeatable: true,
|
|
hints: 'Enter the affiliation of the author.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'affiliation'
|
|
}
|
|
],
|
|
languageCodes: []
|
|
}
|
|
]
|
|
}
|
|
],
|
|
label: 'Authors',
|
|
mandatory: 'true',
|
|
repeatable: false,
|
|
mandatoryMessage: 'Entering at least the first author is mandatory.',
|
|
hints: 'Enter the names of the authors of this item.',
|
|
selectableMetadata: [
|
|
{
|
|
metadata: 'author'
|
|
}
|
|
],
|
|
languageCodes: []
|
|
} as FormFieldModel
|
|
]
|
|
} as FormRowModel;
|
|
});
|
|
|
|
it('should init parser properly', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
expect(parser instanceof RowParser).toBe(true);
|
|
});
|
|
|
|
describe('parse', () => {
|
|
it('should return a DynamicRowGroupModel object', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row1, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect(rowModel instanceof DynamicRowGroupModel).toBe(true);
|
|
});
|
|
|
|
it('should return a row with three fields', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row1, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect((rowModel as DynamicRowGroupModel).group.length).toBe(3);
|
|
});
|
|
|
|
it('should return a DynamicRowArrayModel object', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row2, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect(rowModel instanceof DynamicRowArrayModel).toBe(true);
|
|
});
|
|
|
|
it('should return a row that contains only scoped fields', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row3, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect((rowModel as DynamicRowGroupModel).group.length).toBe(1);
|
|
});
|
|
|
|
it('should be able to parse a dropdown combo field', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row4, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect(rowModel).toBeDefined();
|
|
});
|
|
|
|
it('should be able to parse a lookup-name field', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row5, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect(rowModel).toBeDefined();
|
|
});
|
|
|
|
it('should be able to parse a list field', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row6, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect(rowModel).toBeDefined();
|
|
});
|
|
|
|
it('should be able to parse a date field', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row7, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect(rowModel).toBeDefined();
|
|
});
|
|
|
|
it('should be able to parse a tag field', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row8, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect(rowModel).toBeDefined();
|
|
});
|
|
|
|
it('should be able to parse a textarea field', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row9, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect(rowModel).toBeDefined();
|
|
});
|
|
|
|
it('should be able to parse a group field', () => {
|
|
const parser = new RowParser(injector);
|
|
|
|
const rowModel = parser.parse(submissionId, row10, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
|
|
|
expect(rowModel).toBeDefined();
|
|
});
|
|
});
|
|
});
|