X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=portal-FE-common%2Fsrc%2Fapp%2Fshared%2Fservices%2Fuser-profile%2Fuser-profile.service.spec.ts;h=265ae40539d769e0dd26205f61e4ac936117df65;hb=4c6f6a443cb2e6effa995e77d56689c1c2dab4ad;hp=b1d5e6bd6de06cb6c58c3ebe1a305df59667a0c8;hpb=a03dfa273ef6e196bf65acc54b9357d35eb0ed5e;p=portal.git diff --git a/portal-FE-common/src/app/shared/services/user-profile/user-profile.service.spec.ts b/portal-FE-common/src/app/shared/services/user-profile/user-profile.service.spec.ts index b1d5e6bd..265ae405 100644 --- a/portal-FE-common/src/app/shared/services/user-profile/user-profile.service.spec.ts +++ b/portal-FE-common/src/app/shared/services/user-profile/user-profile.service.spec.ts @@ -38,12 +38,30 @@ import { TestBed } from '@angular/core/testing'; import { UserProfileService } from './user-profile.service'; - +import { HttpClientTestingModule } from '@angular/common/http/testing'; +import { Observable } from 'rxjs'; +import 'rxjs/add/observable/of'; describe('UserProfileService', () => { - beforeEach(() => TestBed.configureTestingModule({})); + // set the value to return when the `getValue` spy is called. + const stubValue = 'stub value'; + const NODE_CONFIG: Array = []; + beforeEach(() => + { + TestBed.configureTestingModule({imports:[HttpClientTestingModule]}) + + } + + ); it('should be created', () => { const service: UserProfileService = TestBed.get(UserProfileService); expect(service).toBeTruthy(); }); + + it('getUserAppRoles should return stubbed value', () => { + const service: UserProfileService = TestBed.get(UserProfileService); + spyOn(service, 'getUserAppRoles').and.callThrough(); + service.getUserAppRoles("TEST"); + expect(service.getUserAppRoles).toHaveBeenCalledWith("TEST") + }); });