-
Notifications
You must be signed in to change notification settings - Fork 437
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a5b52f
commit 96a6b80
Showing
2 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 85 additions & 0 deletions
85
src/app/admin/admin-ldn-services/ldn-services-data/ldn-itemfilter-data.service.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
import { TestScheduler } from "rxjs/testing"; | ||
import { LdnItemfiltersService } from "./ldn-itemfilters-data.service"; | ||
import { RequestService } from "../../../core/data/request.service"; | ||
import { RemoteDataBuildService } from "../../../core/cache/builders/remote-data-build.service"; | ||
import { ObjectCacheService } from "../../../core/cache/object-cache.service"; | ||
import { HALEndpointService } from "../../../core/shared/hal-endpoint.service"; | ||
import { NotificationsService } from "../../../shared/notifications/notifications.service"; | ||
import { RequestEntry } from "../../../core/data/request-entry.model"; | ||
import { RemoteData } from "../../../core/data/remote-data"; | ||
import { RequestEntryState } from "../../../core/data/request-entry-state.model"; | ||
import { cold, getTestScheduler } from "jasmine-marbles"; | ||
import { RestResponse } from "../../../core/cache/response.models"; | ||
import { of } from "rxjs"; | ||
import { createSuccessfulRemoteDataObject$ } from "../../../shared/remote-data.utils"; | ||
import { FindAllData } from "../../../core/data/base/find-all-data"; | ||
import { testFindAllDataImplementation } from "../../../core/data/base/find-all-data.spec"; | ||
|
||
describe('LdnItemfiltersService test', () => { | ||
let scheduler: TestScheduler; | ||
let service: LdnItemfiltersService; | ||
let requestService: RequestService; | ||
let rdbService: RemoteDataBuildService; | ||
let objectCache: ObjectCacheService; | ||
let halService: HALEndpointService; | ||
let notificationsService: NotificationsService; | ||
let responseCacheEntry: RequestEntry; | ||
|
||
const endpointURL = `https://rest.api/rest/api/ldn/itemfilters`; | ||
const requestUUID = '8b3c613a-5a4b-438b-9686-be1d5b4a1c5a'; | ||
|
||
const remoteDataMocks = { | ||
Success: new RemoteData(null, null, null, RequestEntryState.Success, null, null, 200), | ||
}; | ||
|
||
function initTestService() { | ||
return new LdnItemfiltersService( | ||
requestService, | ||
rdbService, | ||
objectCache, | ||
halService, | ||
notificationsService, | ||
); | ||
} | ||
|
||
beforeEach(() => { | ||
scheduler = getTestScheduler(); | ||
|
||
objectCache = {} as ObjectCacheService; | ||
notificationsService = {} as NotificationsService; | ||
responseCacheEntry = new RequestEntry(); | ||
responseCacheEntry.request = { href: 'https://rest.api/' } as any; | ||
responseCacheEntry.response = new RestResponse(true, 200, 'Success'); | ||
|
||
requestService = jasmine.createSpyObj('requestService', { | ||
generateRequestId: requestUUID, | ||
send: true, | ||
removeByHrefSubstring: {}, | ||
getByHref: of(responseCacheEntry), | ||
getByUUID: of(responseCacheEntry), | ||
}); | ||
|
||
halService = jasmine.createSpyObj('halService', { | ||
getEndpoint: of(endpointURL) | ||
}); | ||
|
||
rdbService = jasmine.createSpyObj('rdbService', { | ||
buildSingle: createSuccessfulRemoteDataObject$({}, 500), | ||
buildList: cold('a', { a: remoteDataMocks.Success }) | ||
}); | ||
|
||
|
||
service = initTestService(); | ||
}); | ||
|
||
describe('composition', () => { | ||
const initFindAllService = () => new LdnItemfiltersService(null, null, null, null, null) as unknown as FindAllData<any>; | ||
testFindAllDataImplementation(initFindAllService); | ||
}); | ||
|
||
describe('get endpoint', () => { | ||
service.getEndpoint() | ||
expect(halService.getEndpoint).toHaveBeenCalledWith('linkPath') | ||
}); | ||
|
||
}); |