mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
196 lines
6.4 KiB
TypeScript
196 lines
6.4 KiB
TypeScript
import { HttpClient } from '@angular/common/http';
|
|
import { Store } from '@ngrx/store';
|
|
import { cold, getTestScheduler } from 'jasmine-marbles';
|
|
import { of as observableOf } from 'rxjs';
|
|
import { TestScheduler } from 'rxjs/testing';
|
|
import { getMockRequestService } from '../../shared/mocks/request.service.mock';
|
|
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
|
import { BrowseService } from '../browse/browse.service';
|
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
|
import { RestResponse } from '../cache/response.models';
|
|
import { ExternalSourceEntry } from '../shared/external-source-entry.model';
|
|
import { ItemDataService } from './item-data.service';
|
|
import { DeleteRequest, GetRequest, PostRequest } from './request.models';
|
|
import { RequestService } from './request.service';
|
|
import { getMockRemoteDataBuildService } from '../../shared/mocks/remote-data-build.service.mock';
|
|
import { CoreState } from '../core-state.model';
|
|
import { RequestEntry } from './request-entry.model';
|
|
import { FindListOptions } from './find-list-options.model';
|
|
import { HALEndpointServiceStub } from 'src/app/shared/testing/hal-endpoint-service.stub';
|
|
|
|
describe('ItemDataService', () => {
|
|
let scheduler: TestScheduler;
|
|
let service: ItemDataService;
|
|
let browseService: BrowseService;
|
|
const requestService = Object.assign(getMockRequestService(), {
|
|
generateRequestId(): string {
|
|
return scopeID;
|
|
},
|
|
getByHref(requestHref: string) {
|
|
const responseCacheEntry = new RequestEntry();
|
|
responseCacheEntry.response = new RestResponse(true, 200, 'OK');
|
|
return observableOf(responseCacheEntry);
|
|
},
|
|
removeByHrefSubstring(href: string) {
|
|
// Do nothing
|
|
},
|
|
}) as RequestService;
|
|
const rdbService = getMockRemoteDataBuildService();
|
|
|
|
const itemEndpoint = 'https://rest.api/core';
|
|
|
|
const store = {} as Store<CoreState>;
|
|
const objectCache = {} as ObjectCacheService;
|
|
const halEndpointService: any = new HALEndpointServiceStub(itemEndpoint);
|
|
const bundleService = jasmine.createSpyObj('bundleService', {
|
|
findByHref: {}
|
|
});
|
|
|
|
const scopeID = '4af28e99-6a9c-4036-a199-e1b587046d39';
|
|
const options = Object.assign(new FindListOptions(), {
|
|
scopeID: scopeID,
|
|
sort: {
|
|
field: '',
|
|
direction: undefined
|
|
}
|
|
});
|
|
|
|
const browsesEndpoint = 'https://rest.api/discover/browses';
|
|
const itemBrowseEndpoint = `${browsesEndpoint}/author/items`;
|
|
const scopedEndpoint = `${itemBrowseEndpoint}?scope=${scopeID}`;
|
|
const serviceEndpoint = `https://rest.api/core/items`;
|
|
const browseError = new Error('getBrowseURL failed');
|
|
const notificationsService = {} as NotificationsService;
|
|
const http = {} as HttpClient;
|
|
const comparator = {} as any;
|
|
const ScopedItemEndpoint = `https://rest.api/core/items/${scopeID}`;
|
|
|
|
function initMockBrowseService(isSuccessful: boolean) {
|
|
const obs = isSuccessful ?
|
|
cold('--a-', { a: itemBrowseEndpoint }) :
|
|
cold('--#-', undefined, browseError);
|
|
return jasmine.createSpyObj('bs', {
|
|
getBrowseURLFor: obs
|
|
});
|
|
}
|
|
|
|
function initTestService() {
|
|
return new ItemDataService(
|
|
requestService,
|
|
rdbService,
|
|
objectCache,
|
|
halEndpointService,
|
|
notificationsService,
|
|
comparator,
|
|
browseService,
|
|
bundleService,
|
|
);
|
|
}
|
|
|
|
describe('getBrowseEndpoint', () => {
|
|
beforeEach(() => {
|
|
scheduler = getTestScheduler();
|
|
});
|
|
|
|
it('should return the endpoint to fetch Items within the given scope and starting with the given string', () => {
|
|
browseService = initMockBrowseService(true);
|
|
service = initTestService();
|
|
|
|
const result = service.getBrowseEndpoint(options);
|
|
const expected = cold('--b-', { b: scopedEndpoint });
|
|
|
|
expect(result).toBeObservable(expected);
|
|
});
|
|
|
|
describe('if the dc.date.issue browse isn\'t configured for items', () => {
|
|
beforeEach(() => {
|
|
browseService = initMockBrowseService(false);
|
|
service = initTestService();
|
|
});
|
|
it('should throw an error', () => {
|
|
const result = service.getBrowseEndpoint(options);
|
|
const expected = cold('--#-', undefined, browseError);
|
|
|
|
expect(result).toBeObservable(expected);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('removeMappingFromCollection', () => {
|
|
let result;
|
|
|
|
beforeEach(() => {
|
|
service = initTestService();
|
|
result = service.removeMappingFromCollection('item-id', 'collection-id');
|
|
});
|
|
|
|
it('should send a DELETE request', () => {
|
|
result.subscribe(() => expect(requestService.send).toHaveBeenCalledWith(jasmine.any(DeleteRequest)));
|
|
});
|
|
});
|
|
|
|
describe('mapToCollection', () => {
|
|
let result;
|
|
|
|
beforeEach(() => {
|
|
service = initTestService();
|
|
result = service.mapToCollection('item-id', 'collection-href');
|
|
});
|
|
|
|
it('should send a POST request', () => {
|
|
result.subscribe(() => expect(requestService.send).toHaveBeenCalledWith(jasmine.any(PostRequest)));
|
|
});
|
|
});
|
|
|
|
describe('importExternalSourceEntry', () => {
|
|
let result;
|
|
|
|
const externalSourceEntry = Object.assign(new ExternalSourceEntry(), {
|
|
display: 'John, Doe',
|
|
value: 'John, Doe',
|
|
_links: { self: { href: 'http://test-rest.com/server/api/integration/externalSources/orcidV2/entryValues/0000-0003-4851-8004' } }
|
|
});
|
|
|
|
beforeEach(() => {
|
|
service = initTestService();
|
|
result = service.importExternalSourceEntry(externalSourceEntry, 'collection-id');
|
|
});
|
|
|
|
it('should send a POST request', (done) => {
|
|
result.subscribe(() => {
|
|
expect(requestService.send).toHaveBeenCalledWith(jasmine.any(PostRequest));
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('createBundle', () => {
|
|
const itemId = '3de6ea60-ec39-419b-ae6f-065930ac1429';
|
|
const bundleName = 'ORIGINAL';
|
|
let result;
|
|
|
|
beforeEach(() => {
|
|
service = initTestService();
|
|
result = service.createBundle(itemId, bundleName);
|
|
});
|
|
|
|
it('should send a POST request', (done) => {
|
|
result.subscribe(() => {
|
|
expect(requestService.send).toHaveBeenCalledWith(jasmine.any(PostRequest));
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when cache is invalidated', () => {
|
|
beforeEach(() => {
|
|
service = initTestService();
|
|
});
|
|
it('should call setStaleByHrefSubstring', () => {
|
|
service.invalidateItemCache('uuid');
|
|
expect(requestService.setStaleByHrefSubstring).toHaveBeenCalledWith('item/uuid');
|
|
});
|
|
});
|
|
|
|
});
|