mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-11 12:03:03 +00:00
120 lines
4.6 KiB
TypeScript
120 lines
4.6 KiB
TypeScript
import { ChangeDetectionStrategy, NO_ERRORS_SCHEMA } from '@angular/core';
|
|
import { ComponentFixture, fakeAsync, TestBed, tick, waitForAsync } from '@angular/core/testing';
|
|
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { of as observableOf } from 'rxjs';
|
|
|
|
import { Item } from '../../../../core/shared/item.model';
|
|
import { ClaimedSearchResultListElementComponent } from './claimed-search-result-list-element.component';
|
|
import { ClaimedTask } from '../../../../core/tasks/models/claimed-task-object.model';
|
|
import { MyDspaceItemStatusType } from '../../../object-collection/shared/mydspace-item-status/my-dspace-item-status-type';
|
|
import { WorkflowItem } from '../../../../core/submission/models/workflowitem.model';
|
|
import { createSuccessfulRemoteDataObject } from '../../../remote-data.utils';
|
|
import { ClaimedTaskSearchResult } from '../../../object-collection/shared/claimed-task-search-result.model';
|
|
import { TruncatableService } from '../../../truncatable/truncatable.service';
|
|
import { VarDirective } from '../../../utils/var.directive';
|
|
import { LinkService } from '../../../../core/cache/builders/link.service';
|
|
import { getMockLinkService } from '../../../mocks/link-service.mock';
|
|
import { By } from '@angular/platform-browser';
|
|
import { DSONameService } from '../../../../core/breadcrumbs/dso-name.service';
|
|
import { DSONameServiceMock } from '../../../mocks/dso-name.service.mock';
|
|
import { APP_CONFIG } from '../../../../../config/app-config.interface';
|
|
import { environment } from '../../../../../environments/environment';
|
|
|
|
let component: ClaimedSearchResultListElementComponent;
|
|
let fixture: ComponentFixture<ClaimedSearchResultListElementComponent>;
|
|
|
|
const mockResultObject: ClaimedTaskSearchResult = new ClaimedTaskSearchResult();
|
|
mockResultObject.hitHighlights = {};
|
|
|
|
const item = Object.assign(new Item(), {
|
|
bundles: observableOf({}),
|
|
metadata: {
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is just another title'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: null,
|
|
value: 'Article'
|
|
}
|
|
],
|
|
'dc.contributor.author': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Smith, Donald'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '2015-06-26'
|
|
}
|
|
]
|
|
}
|
|
});
|
|
const rdItem = createSuccessfulRemoteDataObject(item);
|
|
const workflowitem = Object.assign(new WorkflowItem(), { item: observableOf(rdItem) });
|
|
const rdWorkflowitem = createSuccessfulRemoteDataObject(workflowitem);
|
|
mockResultObject.indexableObject = Object.assign(new ClaimedTask(), { workflowitem: observableOf(rdWorkflowitem) });
|
|
const linkService = getMockLinkService();
|
|
|
|
describe('ClaimedSearchResultListElementComponent', () => {
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [NoopAnimationsModule],
|
|
declarations: [ClaimedSearchResultListElementComponent, VarDirective],
|
|
providers: [
|
|
{ provide: TruncatableService, useValue: {} },
|
|
{ provide: LinkService, useValue: linkService },
|
|
{ provide: DSONameService, useClass: DSONameServiceMock },
|
|
{ provide: APP_CONFIG, useValue: environment }
|
|
],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
}).overrideComponent(ClaimedSearchResultListElementComponent, {
|
|
set: { changeDetection: ChangeDetectionStrategy.Default }
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
fixture = TestBed.createComponent(ClaimedSearchResultListElementComponent);
|
|
component = fixture.componentInstance;
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
component.dso = mockResultObject.indexableObject;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should init workflowitem properly', (done) => {
|
|
component.workflowitemRD$.subscribe((workflowitemRD) => {
|
|
expect(linkService.resolveLinks).toHaveBeenCalledWith(
|
|
component.dso,
|
|
jasmine.objectContaining({ name: 'workflowitem' }),
|
|
jasmine.objectContaining({ name: 'action' })
|
|
);
|
|
expect(workflowitemRD.payload).toEqual(workflowitem);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should have properly status', () => {
|
|
expect(component.status).toEqual(MyDspaceItemStatusType.VALIDATION);
|
|
});
|
|
|
|
it('should forward claimed-task-actions processComplete event to reloadObject event emitter', fakeAsync(() => {
|
|
spyOn(component.reloadedObject, 'emit').and.callThrough();
|
|
const actionPayload: any = { reloadedObject: {}};
|
|
|
|
const actionsComponent = fixture.debugElement.query(By.css('ds-claimed-task-actions'));
|
|
actionsComponent.triggerEventHandler('processCompleted', actionPayload);
|
|
tick();
|
|
|
|
expect(component.reloadedObject.emit).toHaveBeenCalledWith(actionPayload.reloadedObject);
|
|
|
|
}));
|
|
});
|