mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
252 lines
9.7 KiB
TypeScript
252 lines
9.7 KiB
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
import { TranslateLoader, TranslateModule } from '@ngx-translate/core';
|
|
import { TranslateLoaderMock } from '../../shared/mocks/translate-loader.mock';
|
|
import { ItemDataService } from '../../core/data/item-data.service';
|
|
import { ChangeDetectionStrategy, NO_ERRORS_SCHEMA, PLATFORM_ID } from '@angular/core';
|
|
import { ItemPageComponent } from './item-page.component';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { ActivatedRouteStub } from '../../shared/testing/active-router.stub';
|
|
import { MetadataService } from '../../core/metadata/metadata.service';
|
|
import { VarDirective } from '../../shared/utils/var.directive';
|
|
import { Item } from '../../core/shared/item.model';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { By } from '@angular/platform-browser';
|
|
import { createRelationshipsObservable } from './item-types/shared/item.component.spec';
|
|
import { of as observableOf } from 'rxjs';
|
|
import {
|
|
createFailedRemoteDataObject$,
|
|
createPendingRemoteDataObject$,
|
|
createSuccessfulRemoteDataObject,
|
|
createSuccessfulRemoteDataObject$
|
|
} from '../../shared/remote-data.utils';
|
|
import { AuthService } from '../../core/auth/auth.service';
|
|
import { createPaginatedList } from '../../shared/testing/utils.test';
|
|
import { AuthorizationDataService } from '../../core/data/feature-authorization/authorization-data.service';
|
|
import { ServerResponseService } from '../../core/services/server-response.service';
|
|
import { SignpostingDataService } from '../../core/data/signposting-data.service';
|
|
import { LinkDefinition, LinkHeadService } from '../../core/services/link-head.service';
|
|
import { SignpostingLink } from '../../core/data/signposting-links.model';
|
|
import { NotifyInfoService } from '../../core/coar-notify/notify-info/notify-info.service';
|
|
|
|
const mockItem: Item = Object.assign(new Item(), {
|
|
bundles: createSuccessfulRemoteDataObject$(createPaginatedList([])),
|
|
metadata: [],
|
|
relationships: createRelationshipsObservable()
|
|
});
|
|
|
|
const mockWithdrawnItem: Item = Object.assign(new Item(), {
|
|
bundles: createSuccessfulRemoteDataObject$(createPaginatedList([])),
|
|
metadata: [],
|
|
relationships: createRelationshipsObservable(),
|
|
isWithdrawn: true
|
|
});
|
|
|
|
const mocklink = {
|
|
href: 'http://test.org',
|
|
rel: 'rel1',
|
|
type: 'type1'
|
|
};
|
|
|
|
const mocklink2 = {
|
|
href: 'http://test2.org',
|
|
rel: 'rel2',
|
|
type: undefined
|
|
};
|
|
|
|
const mockSignpostingLinks: SignpostingLink[] = [mocklink, mocklink2];
|
|
|
|
describe('ItemPageComponent', () => {
|
|
let comp: ItemPageComponent;
|
|
let fixture: ComponentFixture<ItemPageComponent>;
|
|
let authService: AuthService;
|
|
let authorizationDataService: AuthorizationDataService;
|
|
let serverResponseService: jasmine.SpyObj<ServerResponseService>;
|
|
let signpostingDataService: jasmine.SpyObj<SignpostingDataService>;
|
|
let linkHeadService: jasmine.SpyObj<LinkHeadService>;
|
|
let notifyInfoService: jasmine.SpyObj<NotifyInfoService>;
|
|
|
|
const mockMetadataService = {
|
|
/* eslint-disable no-empty,@typescript-eslint/no-empty-function */
|
|
processRemoteData: () => {
|
|
}
|
|
/* eslint-enable no-empty, @typescript-eslint/no-empty-function */
|
|
};
|
|
const mockRoute = Object.assign(new ActivatedRouteStub(), {
|
|
data: observableOf({ dso: createSuccessfulRemoteDataObject(mockItem) })
|
|
});
|
|
|
|
const getCoarLdnLocalInboxUrls = ['http://InboxUrls.org', 'http://InboxUrls2.org'];
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
authService = jasmine.createSpyObj('authService', {
|
|
isAuthenticated: observableOf(true),
|
|
setRedirectUrl: {}
|
|
});
|
|
authorizationDataService = jasmine.createSpyObj('authorizationDataService', {
|
|
isAuthorized: observableOf(false),
|
|
});
|
|
serverResponseService = jasmine.createSpyObj('ServerResponseService', {
|
|
setHeader: jasmine.createSpy('setHeader'),
|
|
});
|
|
|
|
signpostingDataService = jasmine.createSpyObj('SignpostingDataService', {
|
|
getLinks: observableOf([mocklink, mocklink2]),
|
|
});
|
|
|
|
linkHeadService = jasmine.createSpyObj('LinkHeadService', {
|
|
addTag: jasmine.createSpy('setHeader'),
|
|
removeTag: jasmine.createSpy('removeTag'),
|
|
});
|
|
|
|
notifyInfoService = jasmine.createSpyObj('NotifyInfoService', {
|
|
getInboxRelationLink: 'http://www.w3.org/ns/ldp#inbox',
|
|
isCoarConfigEnabled: observableOf(true),
|
|
getCoarLdnLocalInboxUrls: observableOf(getCoarLdnLocalInboxUrls),
|
|
});
|
|
|
|
TestBed.configureTestingModule({
|
|
imports: [TranslateModule.forRoot({
|
|
loader: {
|
|
provide: TranslateLoader,
|
|
useClass: TranslateLoaderMock
|
|
}
|
|
}), BrowserAnimationsModule],
|
|
declarations: [ItemPageComponent, VarDirective],
|
|
providers: [
|
|
{ provide: ActivatedRoute, useValue: mockRoute },
|
|
{ provide: ItemDataService, useValue: {} },
|
|
{ provide: MetadataService, useValue: mockMetadataService },
|
|
{ provide: Router, useValue: {} },
|
|
{ provide: AuthService, useValue: authService },
|
|
{ provide: AuthorizationDataService, useValue: authorizationDataService },
|
|
{ provide: ServerResponseService, useValue: serverResponseService },
|
|
{ provide: SignpostingDataService, useValue: signpostingDataService },
|
|
{ provide: LinkHeadService, useValue: linkHeadService },
|
|
{ provide: NotifyInfoService, useValue: notifyInfoService},
|
|
{ provide: PLATFORM_ID, useValue: 'server' },
|
|
],
|
|
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
}).overrideComponent(ItemPageComponent, {
|
|
set: { changeDetection: ChangeDetectionStrategy.Default }
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
fixture = TestBed.createComponent(ItemPageComponent);
|
|
comp = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
}));
|
|
|
|
describe('when the item is loading', () => {
|
|
beforeEach(() => {
|
|
comp.itemRD$ = createPendingRemoteDataObject$();
|
|
// comp.itemRD$ = observableOf(new RemoteData(true, true, true, null, undefined));
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should display a loading component', () => {
|
|
const loading = fixture.debugElement.query(By.css('ds-themed-loading'));
|
|
expect(loading.nativeElement).toBeDefined();
|
|
});
|
|
});
|
|
|
|
describe('when the item failed loading', () => {
|
|
beforeEach(() => {
|
|
comp.itemRD$ = createFailedRemoteDataObject$('server error', 500);
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should display an error component', () => {
|
|
const error = fixture.debugElement.query(By.css('ds-error'));
|
|
expect(error.nativeElement).toBeDefined();
|
|
});
|
|
});
|
|
|
|
describe('when the item is withdrawn and the user is an admin', () => {
|
|
beforeEach(() => {
|
|
comp.isAdmin$ = observableOf(true);
|
|
comp.itemRD$ = createSuccessfulRemoteDataObject$(mockWithdrawnItem);
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should display the item', () => {
|
|
const objectLoader = fixture.debugElement.query(By.css('ds-listable-object-component-loader'));
|
|
expect(objectLoader.nativeElement).toBeDefined();
|
|
});
|
|
|
|
it('should add the signposting links', () => {
|
|
expect(serverResponseService.setHeader).toHaveBeenCalled();
|
|
expect(linkHeadService.addTag).toHaveBeenCalledTimes(4);
|
|
});
|
|
|
|
|
|
it('should add link tags correctly', () => {
|
|
|
|
expect(comp.signpostingLinks).toEqual([mocklink, mocklink2]);
|
|
|
|
// Check if linkHeadService.addTag() was called with the correct arguments
|
|
expect(linkHeadService.addTag).toHaveBeenCalledTimes(mockSignpostingLinks.length + getCoarLdnLocalInboxUrls.length);
|
|
let expected: LinkDefinition = mockSignpostingLinks[0] as LinkDefinition;
|
|
expect(linkHeadService.addTag).toHaveBeenCalledWith(expected);
|
|
expected = {
|
|
href: 'http://test2.org',
|
|
rel: 'rel2'
|
|
};
|
|
expect(linkHeadService.addTag).toHaveBeenCalledWith(expected);
|
|
});
|
|
|
|
it('should set Link header on the server', () => {
|
|
expect(serverResponseService.setHeader).toHaveBeenCalledWith('Link', '<http://test.org> ; rel="rel1" ; type="type1" , <http://test2.org> ; rel="rel2" , <http://InboxUrls.org> ; rel="http://www.w3.org/ns/ldp#inbox", <http://InboxUrls2.org> ; rel="http://www.w3.org/ns/ldp#inbox"');
|
|
});
|
|
|
|
});
|
|
describe('when the item is withdrawn and the user is not an admin', () => {
|
|
beforeEach(() => {
|
|
comp.itemRD$ = createSuccessfulRemoteDataObject$(mockWithdrawnItem);
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should not display the item', () => {
|
|
const objectLoader = fixture.debugElement.query(By.css('ds-listable-object-component-loader'));
|
|
expect(objectLoader).toBeNull();
|
|
});
|
|
});
|
|
|
|
describe('when the item is not withdrawn and the user is an admin', () => {
|
|
beforeEach(() => {
|
|
comp.isAdmin$ = observableOf(true);
|
|
comp.itemRD$ = createSuccessfulRemoteDataObject$(mockItem);
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should display the item', () => {
|
|
const objectLoader = fixture.debugElement.query(By.css('ds-listable-object-component-loader'));
|
|
expect(objectLoader.nativeElement).toBeDefined();
|
|
});
|
|
|
|
it('should add the signposti`ng links`', () => {
|
|
expect(serverResponseService.setHeader).toHaveBeenCalled();
|
|
expect(linkHeadService.addTag).toHaveBeenCalledTimes(4);
|
|
});
|
|
});
|
|
|
|
describe('when the item is not withdrawn and the user is not an admin', () => {
|
|
beforeEach(() => {
|
|
comp.itemRD$ = createSuccessfulRemoteDataObject$(mockItem);
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should display the item', () => {
|
|
const objectLoader = fixture.debugElement.query(By.css('ds-listable-object-component-loader'));
|
|
expect(objectLoader.nativeElement).toBeDefined();
|
|
});
|
|
|
|
it('should add the signposting links', () => {
|
|
expect(serverResponseService.setHeader).toHaveBeenCalled();
|
|
expect(linkHeadService.addTag).toHaveBeenCalledTimes(4);
|
|
});
|
|
});
|
|
|
|
});
|