forked from hazza/dspace-angular
116 lines
3.5 KiB
TypeScript
116 lines
3.5 KiB
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { Location } from '@angular/common';
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
import { NO_ERRORS_SCHEMA } from '@angular/core';
|
|
import { DynamicFormService, DynamicInputModel } from '@ng-dynamic-forms/core';
|
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
import { DynamicFormControlModel } from '@ng-dynamic-forms/core/src/model/dynamic-form-control.model';
|
|
import { Community } from '../../../core/shared/community.model';
|
|
import { ResourceType } from '../../../core/shared/resource-type';
|
|
import { ComColFormComponent } from './comcol-form.component';
|
|
import { DSpaceObject } from '../../../core/shared/dspace-object.model';
|
|
import { hasValue } from '../../empty.util';
|
|
import { Metadatum } from '../../../core/shared/metadatum.model';
|
|
|
|
describe('ComColFormComponent', () => {
|
|
let comp: ComColFormComponent<DSpaceObject>;
|
|
let fixture: ComponentFixture<ComColFormComponent<DSpaceObject>>;
|
|
let location: Location;
|
|
const formServiceStub: any = {
|
|
createFormGroup: (fModel: DynamicFormControlModel[]) => {
|
|
const controls = {};
|
|
if (hasValue(fModel)) {
|
|
fModel.forEach((controlModel) => {
|
|
controls[controlModel.id] = new FormControl((controlModel as any).value);
|
|
});
|
|
return new FormGroup(controls);
|
|
}
|
|
return undefined;
|
|
}
|
|
};
|
|
const titleMD = { key: 'dc.title', value: 'Community Title' } as Metadatum;
|
|
const randomMD = { key: 'dc.random', value: 'Random metadata excluded from form' } as Metadatum;
|
|
const abstractMD = {
|
|
key: 'dc.description.abstract',
|
|
value: 'Community description'
|
|
} as Metadatum;
|
|
const newTitleMD = { key: 'dc.title', value: 'New Community Title' } as Metadatum;
|
|
const formModel = [
|
|
new DynamicInputModel({
|
|
id: 'title',
|
|
name: newTitleMD.key,
|
|
value: 'New Community Title'
|
|
}),
|
|
new DynamicInputModel({
|
|
id: 'abstract',
|
|
name: abstractMD.key,
|
|
value: abstractMD.value
|
|
})
|
|
];
|
|
|
|
/* tslint:disable:no-empty */
|
|
const locationStub = {
|
|
back: () => {
|
|
}
|
|
};
|
|
/* tslint:enable:no-empty */
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [TranslateModule.forRoot(), RouterTestingModule],
|
|
declarations: [ComColFormComponent],
|
|
providers: [
|
|
{ provide: Location, useValue: locationStub },
|
|
{ provide: DynamicFormService, useValue: formServiceStub }
|
|
],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ComColFormComponent);
|
|
comp = fixture.componentInstance;
|
|
comp.formModel = [];
|
|
comp.dso = new Community();
|
|
fixture.detectChanges();
|
|
location = (comp as any).location;
|
|
});
|
|
|
|
describe('onSubmit', () => {
|
|
beforeEach(() => {
|
|
spyOn(comp.submitForm, 'emit');
|
|
comp.formModel = formModel;
|
|
});
|
|
|
|
it('should emit the new version of the community', () => {
|
|
comp.dso = Object.assign(
|
|
new Community(),
|
|
{
|
|
metadata: [
|
|
titleMD,
|
|
randomMD
|
|
]
|
|
}
|
|
);
|
|
|
|
comp.onSubmit();
|
|
|
|
expect(comp.submitForm.emit).toHaveBeenCalledWith(
|
|
Object.assign(
|
|
{},
|
|
new Community(),
|
|
{
|
|
metadata: [
|
|
randomMD,
|
|
newTitleMD,
|
|
abstractMD
|
|
],
|
|
type: ResourceType.Community
|
|
},
|
|
)
|
|
);
|
|
})
|
|
});
|
|
});
|