mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
101 lines
3.7 KiB
TypeScript
101 lines
3.7 KiB
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { ChangeDetectionStrategy, NO_ERRORS_SCHEMA } from '@angular/core';
|
|
import { RelatedItemsComponent } from './related-items-component';
|
|
import { Item } from '../../../core/shared/item.model';
|
|
import { PaginatedList } from '../../../core/data/paginated-list';
|
|
import { PageInfo } from '../../../core/shared/page-info.model';
|
|
import { By } from '@angular/platform-browser';
|
|
import { createRelationshipsObservable } from '../item-types/shared/item.component.spec';
|
|
import { createSuccessfulRemoteDataObject$ } from '../../../shared/remote-data.utils';
|
|
import { RelationshipService } from '../../../core/data/relationship.service';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { VarDirective } from '../../../shared/utils/var.directive';
|
|
import { of as observableOf } from 'rxjs';
|
|
|
|
const parentItem: Item = Object.assign(new Item(), {
|
|
bundles: createSuccessfulRemoteDataObject$(new PaginatedList(new PageInfo(), [])),
|
|
metadata: [],
|
|
relationships: createRelationshipsObservable()
|
|
});
|
|
const mockItem1: Item = Object.assign(new Item(), {
|
|
bundles: createSuccessfulRemoteDataObject$(new PaginatedList(new PageInfo(), [])),
|
|
metadata: [],
|
|
relationships: createRelationshipsObservable()
|
|
});
|
|
const mockItem2: Item = Object.assign(new Item(), {
|
|
bundles: createSuccessfulRemoteDataObject$(new PaginatedList(new PageInfo(), [])),
|
|
metadata: [],
|
|
relationships: createRelationshipsObservable()
|
|
});
|
|
const mockItems = [mockItem1, mockItem2];
|
|
const relationType = 'isItemOfItem';
|
|
let relationshipService: RelationshipService;
|
|
|
|
describe('RelatedItemsComponent', () => {
|
|
let comp: RelatedItemsComponent;
|
|
let fixture: ComponentFixture<RelatedItemsComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
relationshipService = jasmine.createSpyObj('relationshipService',
|
|
{
|
|
getRelatedItemsByLabel: createSuccessfulRemoteDataObject$(new PaginatedList(new PageInfo(), mockItems)),
|
|
}
|
|
);
|
|
|
|
TestBed.configureTestingModule({
|
|
imports: [TranslateModule.forRoot()],
|
|
declarations: [RelatedItemsComponent, VarDirective],
|
|
providers: [
|
|
{ provide: RelationshipService, useValue: relationshipService }
|
|
],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
}).overrideComponent(RelatedItemsComponent, {
|
|
set: {changeDetection: ChangeDetectionStrategy.Default}
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(async(() => {
|
|
fixture = TestBed.createComponent(RelatedItemsComponent);
|
|
comp = fixture.componentInstance;
|
|
comp.parentItem = parentItem;
|
|
comp.relationType = relationType;
|
|
fixture.detectChanges();
|
|
}));
|
|
|
|
it(`should load ${mockItems.length} item-type-switcher components`, () => {
|
|
const fields = fixture.debugElement.queryAll(By.css('ds-listable-object-component-loader'));
|
|
expect(fields.length).toBe(mockItems.length);
|
|
});
|
|
|
|
it('should contain one page of items', () => {
|
|
expect(comp.objects.length).toEqual(1);
|
|
});
|
|
|
|
describe('when increase is called', () => {
|
|
beforeEach(() => {
|
|
comp.increase();
|
|
});
|
|
|
|
it('should add a new page to the list', () => {
|
|
expect(comp.objects.length).toEqual(2);
|
|
});
|
|
|
|
it('should call relationship-service\'s getRelatedItemsByLabel with the correct arguments (second page)', () => {
|
|
expect(relationshipService.getRelatedItemsByLabel).toHaveBeenCalledWith(parentItem, relationType, Object.assign(comp.options, { elementsPerPage: comp.incrementBy, currentPage: 2 }));
|
|
});
|
|
});
|
|
|
|
describe('when decrease is called', () => {
|
|
beforeEach(() => {
|
|
// Add a second page
|
|
comp.objects.push(observableOf(undefined));
|
|
comp.decrease();
|
|
});
|
|
|
|
it('should decrease the list of pages', () => {
|
|
expect(comp.objects.length).toEqual(1);
|
|
});
|
|
});
|
|
|
|
});
|