mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
75 lines
2.6 KiB
TypeScript
75 lines
2.6 KiB
TypeScript
import { getTestScheduler } from 'jasmine-marbles';
|
|
import { TestScheduler } from 'rxjs/testing';
|
|
import { getMockRequestService } from '../../shared/mocks/request.service.mock';
|
|
import { ConfigService } from './config.service';
|
|
import { RequestService } from '../data/request.service';
|
|
import { GetRequest } from '../data/request.models';
|
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
|
import { HALEndpointServiceStub } from '../../shared/testing/hal-endpoint-service.stub';
|
|
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
|
import { getMockRemoteDataBuildService } from '../../shared/mocks/remote-data-build.service.mock';
|
|
import { FindListOptions } from '../data/find-list-options.model';
|
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
|
|
|
const LINK_NAME = 'test';
|
|
const BROWSE = 'search/findByCollection';
|
|
|
|
class TestService extends ConfigService {
|
|
protected linkPath = LINK_NAME;
|
|
protected browseEndpoint = BROWSE;
|
|
|
|
constructor(
|
|
protected requestService: RequestService,
|
|
protected rdbService: RemoteDataBuildService,
|
|
protected objectCache: ObjectCacheService,
|
|
protected halService: HALEndpointService,
|
|
) {
|
|
super(BROWSE, requestService, rdbService, objectCache, halService);
|
|
}
|
|
}
|
|
|
|
describe('ConfigService', () => {
|
|
let scheduler: TestScheduler;
|
|
let service: TestService;
|
|
let requestService: RequestService;
|
|
let rdbService: RemoteDataBuildService;
|
|
let halService: any;
|
|
|
|
const findOptions: FindListOptions = new FindListOptions();
|
|
|
|
const scopeName = 'traditional';
|
|
const scopeID = 'd9d30c0c-69b7-4369-8397-ca67c888974d';
|
|
const configEndpoint = 'https://rest.api/config';
|
|
const serviceEndpoint = `${configEndpoint}/${LINK_NAME}`;
|
|
const scopedEndpoint = `${serviceEndpoint}/${scopeName}`;
|
|
const searchEndpoint = `${serviceEndpoint}/${BROWSE}?uuid=${scopeID}`;
|
|
|
|
function initTestService(): TestService {
|
|
return new TestService(
|
|
requestService,
|
|
rdbService,
|
|
null,
|
|
halService,
|
|
);
|
|
}
|
|
|
|
beforeEach(() => {
|
|
scheduler = getTestScheduler();
|
|
requestService = getMockRequestService();
|
|
rdbService = getMockRemoteDataBuildService();
|
|
halService = new HALEndpointServiceStub(configEndpoint);
|
|
service = initTestService();
|
|
});
|
|
|
|
describe('findByHref', () => {
|
|
|
|
it('should send a new GetRequest', () => {
|
|
const expected = new GetRequest(requestService.generateRequestId(), scopedEndpoint);
|
|
scheduler.schedule(() => service.findByHref(scopedEndpoint).subscribe());
|
|
scheduler.flush();
|
|
|
|
expect(requestService.send).toHaveBeenCalledWith(expected, true);
|
|
});
|
|
});
|
|
});
|