mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
68405: javadoc, test, and cleanup
This commit is contained in:

committed by
Art Lowel

parent
42d6527ca9
commit
6bffa68bbb
28
src/app/+community-page/community-page.resolver.spec.ts
Normal file
28
src/app/+community-page/community-page.resolver.spec.ts
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
import { of as observableOf } from 'rxjs';
|
||||||
|
import { first } from 'rxjs/operators';
|
||||||
|
import { CommunityPageResolver } from './community-page.resolver';
|
||||||
|
|
||||||
|
describe('CommunityPageResolver', () => {
|
||||||
|
describe('resolve', () => {
|
||||||
|
let resolver: CommunityPageResolver;
|
||||||
|
let communityService: any;
|
||||||
|
const uuid = '1234-65487-12354-1235';
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
communityService = {
|
||||||
|
findById: (id: string) => observableOf({ payload: { id }, hasSucceeded: true })
|
||||||
|
};
|
||||||
|
resolver = new CommunityPageResolver(communityService);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should resolve a community with the correct id', () => {
|
||||||
|
resolver.resolve({ params: { id: uuid } } as any, undefined)
|
||||||
|
.pipe(first())
|
||||||
|
.subscribe(
|
||||||
|
(resolved) => {
|
||||||
|
expect(resolved.payload.id).toEqual(uuid);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
@@ -22,7 +22,6 @@ import { EditRelationshipComponent } from './item-relationships/edit-relationshi
|
|||||||
import { EditRelationshipListComponent } from './item-relationships/edit-relationship-list/edit-relationship-list.component';
|
import { EditRelationshipListComponent } from './item-relationships/edit-relationship-list/edit-relationship-list.component';
|
||||||
import { ItemMoveComponent } from './item-move/item-move.component';
|
import { ItemMoveComponent } from './item-move/item-move.component';
|
||||||
import { VirtualMetadataComponent } from './virtual-metadata/virtual-metadata.component';
|
import { VirtualMetadataComponent } from './virtual-metadata/virtual-metadata.component';
|
||||||
import { MySimpleItemActionComponent } from './simple-item-action/abstract-simple-item-action.component.spec';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Module that contains all components related to the Edit Item page administrator functionality
|
* Module that contains all components related to the Edit Item page administrator functionality
|
||||||
@@ -54,7 +53,6 @@ import { MySimpleItemActionComponent } from './simple-item-action/abstract-simpl
|
|||||||
ItemCollectionMapperComponent,
|
ItemCollectionMapperComponent,
|
||||||
ItemMoveComponent,
|
ItemMoveComponent,
|
||||||
VirtualMetadataComponent,
|
VirtualMetadataComponent,
|
||||||
MySimpleItemActionComponent
|
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class EditItemPageModule {
|
export class EditItemPageModule {
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
|
|
||||||
import { combineLatest as observableCombineLatest, Observable, of as observableOf, race as observableRace } from 'rxjs';
|
import { combineLatest as observableCombineLatest, Observable, of as observableOf, race as observableRace } from 'rxjs';
|
||||||
import { distinctUntilChanged, map, startWith, switchMap } from 'rxjs/operators';
|
import { distinctUntilChanged, map, startWith, switchMap } from 'rxjs/operators';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
hasNoValue,
|
hasNoValue,
|
||||||
hasValue,
|
hasValue,
|
||||||
@@ -40,6 +38,12 @@ export class RemoteDataBuildService {
|
|||||||
protected requestService: RequestService) {
|
protected requestService: RequestService) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a single {@link RemoteData} object based on the response of a request to the REST server, with a list of
|
||||||
|
* {@link FollowLinkConfig} that indicate which embedded info should be added to the object
|
||||||
|
* @param href$ Observable href of object we want to retrieve
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} that indicate which embedded info should be added
|
||||||
|
*/
|
||||||
buildSingle<T extends CacheableObject>(href$: string | Observable<string>, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<T>> {
|
buildSingle<T extends CacheableObject>(href$: string | Observable<string>, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<T>> {
|
||||||
if (typeof href$ === 'string') {
|
if (typeof href$ === 'string') {
|
||||||
href$ = observableOf(href$);
|
href$ = observableOf(href$);
|
||||||
@@ -118,6 +122,12 @@ export class RemoteDataBuildService {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a list of {@link RemoteData} objects based on the response of a request to the REST server, with a list of
|
||||||
|
* {@link FollowLinkConfig} that indicate which embedded info should be added to the objects
|
||||||
|
* @param href$ Observable href of objects we want to retrieve
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} that indicate which embedded info should be added
|
||||||
|
*/
|
||||||
buildList<T extends CacheableObject>(href$: string | Observable<string>, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<PaginatedList<T>>> {
|
buildList<T extends CacheableObject>(href$: string | Observable<string>, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<PaginatedList<T>>> {
|
||||||
if (typeof href$ === 'string') {
|
if (typeof href$ === 'string') {
|
||||||
href$ = observableOf(href$);
|
href$ = observableOf(href$);
|
||||||
|
@@ -243,6 +243,10 @@ export class CollectionDataService extends ComColDataService<Collection> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns {@link RemoteData} of {@link Collection} that is the owing collection of the given item
|
||||||
|
* @param item Item we want the owning collection of
|
||||||
|
*/
|
||||||
findOwningCollectionFor(item: Item): Observable<RemoteData<Collection>> {
|
findOwningCollectionFor(item: Item): Observable<RemoteData<Collection>> {
|
||||||
return this.findByHref(item._links.owningCollection.href);
|
return this.findByHref(item._links.owningCollection.href);
|
||||||
}
|
}
|
||||||
|
@@ -167,13 +167,12 @@ describe('ComColDataService', () => {
|
|||||||
expect(objectCache.getObjectByUUID).toHaveBeenCalledWith(scopeID);
|
expect(objectCache.getObjectByUUID).toHaveBeenCalledWith(scopeID);
|
||||||
});
|
});
|
||||||
|
|
||||||
// TODO fix
|
it('should return the endpoint to fetch resources within the given scope', () => {
|
||||||
// it('should return the endpoint to fetch resources within the given scope', () => {
|
const result = service.getBrowseEndpoint(options);
|
||||||
// const result = service.getBrowseEndpoint(options);
|
const expected = '--e-';
|
||||||
// const expected = '--e-';
|
|
||||||
//
|
scheduler.expectObservable(result).toBe(expected, { e: scopedEndpoint });
|
||||||
// scheduler.expectObservable(result).toBe(expected, { e: scopedEndpoint });
|
});
|
||||||
// });
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('if the scope Community can\'t be found', () => {
|
describe('if the scope Community can\'t be found', () => {
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
import { HttpClient } from '@angular/common/http';
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import { Store } from '@ngrx/store';
|
||||||
|
import { Operation } from 'fast-json-patch';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
import {
|
import {
|
||||||
distinctUntilChanged,
|
distinctUntilChanged,
|
||||||
@@ -13,13 +14,30 @@ import {
|
|||||||
take,
|
take,
|
||||||
tap
|
tap
|
||||||
} from 'rxjs/operators';
|
} from 'rxjs/operators';
|
||||||
import { Store } from '@ngrx/store';
|
|
||||||
|
|
||||||
import { hasValue, isNotEmpty, isNotEmptyOperator } from '../../shared/empty.util';
|
import { hasValue, isNotEmpty, isNotEmptyOperator } from '../../shared/empty.util';
|
||||||
|
import { NotificationOptions } from '../../shared/notifications/models/notification-options.model';
|
||||||
|
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
||||||
import { FollowLinkConfig } from '../../shared/utils/follow-link-config.model';
|
import { FollowLinkConfig } from '../../shared/utils/follow-link-config.model';
|
||||||
|
import { getMapsToType } from '../cache/builders/build-decorators';
|
||||||
|
import { NormalizedObjectBuildService } from '../cache/builders/normalized-object-build.service';
|
||||||
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
||||||
|
import { NormalizedObject } from '../cache/models/normalized-object.model';
|
||||||
|
import { SearchParam } from '../cache/models/search-param.model';
|
||||||
|
import { CacheableObject } from '../cache/object-cache.reducer';
|
||||||
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
||||||
|
import { ErrorResponse, RestResponse } from '../cache/response.models';
|
||||||
|
import { CoreState } from '../core.reducers';
|
||||||
|
import { DSpaceRESTv2Serializer } from '../dspace-rest-v2/dspace-rest-v2.serializer';
|
||||||
|
import { DSpaceObject } from '../shared/dspace-object.model';
|
||||||
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
||||||
|
import {
|
||||||
|
configureRequest,
|
||||||
|
getRemoteDataPayload,
|
||||||
|
getResponseFromEntry,
|
||||||
|
getSucceededRemoteData
|
||||||
|
} from '../shared/operators';
|
||||||
import { URLCombiner } from '../url-combiner/url-combiner';
|
import { URLCombiner } from '../url-combiner/url-combiner';
|
||||||
|
import { ChangeAnalyzer } from './change-analyzer';
|
||||||
import { PaginatedList } from './paginated-list';
|
import { PaginatedList } from './paginated-list';
|
||||||
import { RemoteData } from './remote-data';
|
import { RemoteData } from './remote-data';
|
||||||
import {
|
import {
|
||||||
@@ -30,24 +48,9 @@ import {
|
|||||||
FindListRequest,
|
FindListRequest,
|
||||||
GetRequest
|
GetRequest
|
||||||
} from './request.models';
|
} from './request.models';
|
||||||
import { RequestService } from './request.service';
|
|
||||||
import { NormalizedObject } from '../cache/models/normalized-object.model';
|
|
||||||
import { SearchParam } from '../cache/models/search-param.model';
|
|
||||||
import { Operation } from 'fast-json-patch';
|
|
||||||
import { ObjectCacheService } from '../cache/object-cache.service';
|
|
||||||
import { DSpaceObject } from '../shared/dspace-object.model';
|
|
||||||
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
|
||||||
import { configureRequest, getRemoteDataPayload, getResponseFromEntry, getSucceededRemoteData } from '../shared/operators';
|
|
||||||
import { ErrorResponse, RestResponse } from '../cache/response.models';
|
|
||||||
import { NotificationOptions } from '../../shared/notifications/models/notification-options.model';
|
|
||||||
import { DSpaceRESTv2Serializer } from '../dspace-rest-v2/dspace-rest-v2.serializer';
|
|
||||||
import { CacheableObject } from '../cache/object-cache.reducer';
|
|
||||||
import { RequestEntry } from './request.reducer';
|
import { RequestEntry } from './request.reducer';
|
||||||
import { NormalizedObjectBuildService } from '../cache/builders/normalized-object-build.service';
|
import { RequestService } from './request.service';
|
||||||
import { ChangeAnalyzer } from './change-analyzer';
|
|
||||||
import { RestRequestMethod } from './rest-request-method';
|
import { RestRequestMethod } from './rest-request-method';
|
||||||
import { getMapsToType } from '../cache/builders/build-decorators';
|
|
||||||
import { CoreState } from '../core.reducers';
|
|
||||||
|
|
||||||
export abstract class DataService<T extends CacheableObject> {
|
export abstract class DataService<T extends CacheableObject> {
|
||||||
protected abstract requestService: RequestService;
|
protected abstract requestService: RequestService;
|
||||||
@@ -60,6 +63,7 @@ export abstract class DataService<T extends CacheableObject> {
|
|||||||
protected abstract notificationsService: NotificationsService;
|
protected abstract notificationsService: NotificationsService;
|
||||||
protected abstract http: HttpClient;
|
protected abstract http: HttpClient;
|
||||||
protected abstract comparator: ChangeAnalyzer<T>;
|
protected abstract comparator: ChangeAnalyzer<T>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allows subclasses to reset the response cache time.
|
* Allows subclasses to reset the response cache time.
|
||||||
*/
|
*/
|
||||||
@@ -148,10 +152,21 @@ export abstract class DataService<T extends CacheableObject> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns {@link RemoteData} of all object with a list of {@link FollowLinkConfig}, to indicate which embedded
|
||||||
|
* info should be added to the objects
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} to indicate which embedded info should be retrieved and added
|
||||||
|
*/
|
||||||
findAll(options: FindListOptions = {}, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<PaginatedList<T>>> {
|
findAll(options: FindListOptions = {}, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<PaginatedList<T>>> {
|
||||||
return this.findList(this.getFindAllHref(options), options, ...linksToFollow);
|
return this.findList(this.getFindAllHref(options), options, ...linksToFollow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an observable of {@link RemoteData} of an object, based on href observable,
|
||||||
|
* with a list of {@link FollowLinkConfig}, to add embedded info to the object
|
||||||
|
* @param href$ Observable of href of object we want to retrieve
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} to indicate which embedded info should be retrieved and added
|
||||||
|
*/
|
||||||
protected findList(href$, options: FindListOptions, ...linksToFollow: Array<FollowLinkConfig<T>>) {
|
protected findList(href$, options: FindListOptions, ...linksToFollow: Array<FollowLinkConfig<T>>) {
|
||||||
href$.pipe(
|
href$.pipe(
|
||||||
first((href: string) => hasValue(href)))
|
first((href: string) => hasValue(href)))
|
||||||
@@ -175,6 +190,12 @@ export abstract class DataService<T extends CacheableObject> {
|
|||||||
return `${endpoint}/${resourceID}`;
|
return `${endpoint}/${resourceID}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an observable of {@link RemoteData} of an object, based on its ID, with a list of {@link FollowLinkConfig},
|
||||||
|
* to add embedded info to the object
|
||||||
|
* @param id ID of object we want to retrieve
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} to indicate which embedded info should be retrieved and added
|
||||||
|
*/
|
||||||
findById(id: string, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<T>> {
|
findById(id: string, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<T>> {
|
||||||
|
|
||||||
const hrefObs = this.halService.getEndpoint(this.linkPath).pipe(
|
const hrefObs = this.halService.getEndpoint(this.linkPath).pipe(
|
||||||
@@ -193,6 +214,12 @@ export abstract class DataService<T extends CacheableObject> {
|
|||||||
return this.rdbService.buildSingle<T>(hrefObs, ...linksToFollow);
|
return this.rdbService.buildSingle<T>(hrefObs, ...linksToFollow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an observable of {@link RemoteData} of an object, based on an href, with a list of {@link FollowLinkConfig},
|
||||||
|
* to add embedded info to the object
|
||||||
|
* @param href Href of object we want to retrieve
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} to indicate which embedded info should be retrieved and added
|
||||||
|
*/
|
||||||
findByHref(href: string, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<T>> {
|
findByHref(href: string, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<T>> {
|
||||||
const requestHref = this.buildHrefFromFindOptions(href, {}, []);
|
const requestHref = this.buildHrefFromFindOptions(href, {}, []);
|
||||||
const request = new GetRequest(this.requestService.generateRequestId(), requestHref);
|
const request = new GetRequest(this.requestService.generateRequestId(), requestHref);
|
||||||
@@ -203,6 +230,12 @@ export abstract class DataService<T extends CacheableObject> {
|
|||||||
return this.rdbService.buildSingle<T>(href, ...linksToFollow);
|
return this.rdbService.buildSingle<T>(href, ...linksToFollow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a list of observables of {@link RemoteData} of objects, based on an href, with a list of {@link FollowLinkConfig},
|
||||||
|
* to add embedded info to the object
|
||||||
|
* @param id ID of object we want to retrieve
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} to indicate which embedded info should be retrieved and added
|
||||||
|
*/
|
||||||
findAllByHref(href: string, findListOptions: FindListOptions = {}, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<PaginatedList<T>>> {
|
findAllByHref(href: string, findListOptions: FindListOptions = {}, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<PaginatedList<T>>> {
|
||||||
const requestHref = this.buildHrefFromFindOptions(href, findListOptions, []);
|
const requestHref = this.buildHrefFromFindOptions(href, findListOptions, []);
|
||||||
const request = new GetRequest(this.requestService.generateRequestId(), requestHref);
|
const request = new GetRequest(this.requestService.generateRequestId(), requestHref);
|
||||||
@@ -274,13 +307,13 @@ export abstract class DataService<T extends CacheableObject> {
|
|||||||
getSucceededRemoteData(),
|
getSucceededRemoteData(),
|
||||||
getRemoteDataPayload(),
|
getRemoteDataPayload(),
|
||||||
mergeMap((oldVersion: T) => {
|
mergeMap((oldVersion: T) => {
|
||||||
const operations = this.comparator.diff(oldVersion, object);
|
const operations = this.comparator.diff(oldVersion, object);
|
||||||
if (isNotEmpty(operations)) {
|
if (isNotEmpty(operations)) {
|
||||||
this.objectCache.addPatch(object.self, operations);
|
this.objectCache.addPatch(object.self, operations);
|
||||||
|
}
|
||||||
|
return this.findByHref(object.self);
|
||||||
}
|
}
|
||||||
return this.findByHref(object.self);
|
));
|
||||||
}
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -1,4 +1,3 @@
|
|||||||
// TODO Fix on complete test run
|
|
||||||
import * as deepFreeze from 'deep-freeze';
|
import * as deepFreeze from 'deep-freeze';
|
||||||
import { RestResponse } from '../cache/response.models';
|
import { RestResponse } from '../cache/response.models';
|
||||||
import {
|
import {
|
||||||
@@ -38,7 +37,6 @@ describe('requestReducer', () => {
|
|||||||
};
|
};
|
||||||
deepFreeze(testState);
|
deepFreeze(testState);
|
||||||
|
|
||||||
// TODO Fix
|
|
||||||
it('should return the current state when no valid actions have been made', () => {
|
it('should return the current state when no valid actions have been made', () => {
|
||||||
const action = new NullAction();
|
const action = new NullAction();
|
||||||
const newState = requestReducer(testState, action);
|
const newState = requestReducer(testState, action);
|
||||||
|
@@ -1,4 +1,3 @@
|
|||||||
// TODO Fix on complete test run
|
|
||||||
import * as ngrx from '@ngrx/store';
|
import * as ngrx from '@ngrx/store';
|
||||||
import { ActionsSubject, Store } from '@ngrx/store';
|
import { ActionsSubject, Store } from '@ngrx/store';
|
||||||
import { cold, getTestScheduler, hot } from 'jasmine-marbles';
|
import { cold, getTestScheduler, hot } from 'jasmine-marbles';
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { cold, getTestScheduler } from 'jasmine-marbles';
|
import { cold, getTestScheduler } from 'jasmine-marbles';
|
||||||
import { TestScheduler } from 'rxjs/testing';
|
import { TestScheduler } from 'rxjs/testing';
|
||||||
|
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
||||||
|
import { NormalizedObjectBuildService } from '../cache/builders/normalized-object-build.service';
|
||||||
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
||||||
import { ResourcePolicy } from '../shared/resource-policy.model';
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
||||||
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
||||||
|
import { ResourcePolicy } from '../shared/resource-policy.model';
|
||||||
import { GetRequest } from './request.models';
|
import { GetRequest } from './request.models';
|
||||||
import { RequestService } from './request.service';
|
import { RequestService } from './request.service';
|
||||||
import { ResourcePolicyService } from './resource-policy.service';
|
import { ResourcePolicyService } from './resource-policy.service';
|
||||||
import { ObjectCacheService } from '../cache/object-cache.service';
|
|
||||||
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
|
||||||
import { HttpClient } from '@angular/common/http';
|
|
||||||
import { NormalizedObjectBuildService } from '../cache/builders/normalized-object-build.service';
|
|
||||||
|
|
||||||
describe('ResourcePolicyService', () => {
|
describe('ResourcePolicyService', () => {
|
||||||
let scheduler: TestScheduler;
|
let scheduler: TestScheduler;
|
||||||
@@ -61,7 +61,7 @@ describe('ResourcePolicyService', () => {
|
|||||||
scheduler.schedule(() => service.findByHref(requestURL));
|
scheduler.schedule(() => service.findByHref(requestURL));
|
||||||
scheduler.flush();
|
scheduler.flush();
|
||||||
|
|
||||||
expect(requestService.configure).toHaveBeenCalledWith(new GetRequest(requestUUID, requestURL, null));
|
expect(requestService.configure).toHaveBeenCalledWith(new GetRequest(requestUUID, requestURL, {}));
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return a RemoteData<ResourcePolicy> for the object with the given URL', () => {
|
it('should return a RemoteData<ResourcePolicy> for the object with the given URL', () => {
|
||||||
|
@@ -1,10 +1,10 @@
|
|||||||
import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
|
import { CommonModule } from '@angular/common';
|
||||||
import { QueryParamsDirectiveStub } from './query-params-directive-stub';
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
||||||
// import { MySimpleItemActionComponent } from '../../+item-page/edit-item-page/simple-item-action/abstract-simple-item-action.component.spec';
|
import { MySimpleItemActionComponent } from '../../+item-page/edit-item-page/simple-item-action/abstract-simple-item-action.component.spec';
|
||||||
import {CommonModule} from '@angular/common';
|
import { SharedModule } from '../shared.module';
|
||||||
import {SharedModule} from '../shared.module';
|
|
||||||
import { RouterLinkDirectiveStub } from './router-link-directive-stub';
|
|
||||||
import { NgComponentOutletDirectiveStub } from './ng-component-outlet-directive-stub';
|
import { NgComponentOutletDirectiveStub } from './ng-component-outlet-directive-stub';
|
||||||
|
import { QueryParamsDirectiveStub } from './query-params-directive-stub';
|
||||||
|
import { RouterLinkDirectiveStub } from './router-link-directive-stub';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This module isn't used. It serves to prevent the AoT compiler
|
* This module isn't used. It serves to prevent the AoT compiler
|
||||||
@@ -19,11 +19,12 @@ import { NgComponentOutletDirectiveStub } from './ng-component-outlet-directive-
|
|||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
QueryParamsDirectiveStub,
|
QueryParamsDirectiveStub,
|
||||||
// MySimpleItemActionComponent,
|
MySimpleItemActionComponent,
|
||||||
RouterLinkDirectiveStub,
|
RouterLinkDirectiveStub,
|
||||||
NgComponentOutletDirectiveStub
|
NgComponentOutletDirectiveStub
|
||||||
], schemas: [
|
], schemas: [
|
||||||
CUSTOM_ELEMENTS_SCHEMA
|
CUSTOM_ELEMENTS_SCHEMA
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class TestModule {}
|
export class TestModule {
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user