mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 02:54:13 +00:00
90 lines
3.0 KiB
TypeScript
90 lines
3.0 KiB
TypeScript
import { ChangeDetectionStrategy, NO_ERRORS_SCHEMA } from '@angular/core';
|
|
import { waitForAsync, ComponentFixture, TestBed, fakeAsync, tick } 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 { MyDspaceItemStatusType } from '../../../object-collection/shared/mydspace-item-status/my-dspace-item-status-type';
|
|
import { ItemSearchResult } from '../../../object-collection/shared/item-search-result.model';
|
|
import { ItemSearchResultListElementSubmissionComponent } from './item-search-result-list-element-submission.component';
|
|
import { TruncatableService } from '../../../truncatable/truncatable.service';
|
|
import { By } from '@angular/platform-browser';
|
|
|
|
let component: ItemSearchResultListElementSubmissionComponent;
|
|
let fixture: ComponentFixture<ItemSearchResultListElementSubmissionComponent>;
|
|
|
|
const mockResultObject: ItemSearchResult = new ItemSearchResult();
|
|
mockResultObject.hitHighlights = {};
|
|
|
|
mockResultObject.indexableObject = 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'
|
|
}
|
|
]
|
|
}
|
|
});
|
|
|
|
describe('ItemMyDSpaceResultListElementComponent', () => {
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [NoopAnimationsModule],
|
|
declarations: [ItemSearchResultListElementSubmissionComponent],
|
|
providers: [
|
|
{ provide: TruncatableService, useValue: {} },
|
|
],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
}).overrideComponent(ItemSearchResultListElementSubmissionComponent, {
|
|
set: { changeDetection: ChangeDetectionStrategy.Default }
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
fixture = TestBed.createComponent(ItemSearchResultListElementSubmissionComponent);
|
|
component = fixture.componentInstance;
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
component.dso = mockResultObject.indexableObject;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should have properly status', () => {
|
|
expect(component.status).toEqual(MyDspaceItemStatusType.ARCHIVED);
|
|
});
|
|
|
|
it('should forward item-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-item-actions'));
|
|
actionsComponent.triggerEventHandler('processCompleted', actionPayload);
|
|
tick();
|
|
|
|
expect(component.reloadedObject.emit).toHaveBeenCalledWith(actionPayload.reloadedObject);
|
|
|
|
}));
|
|
});
|