-
Couldn't load subscription status.
- Fork 1
feat: TT-19 Create Cookies of FeatureToggle #689
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
scastillo-jp
merged 2 commits into
master
from
TT-19-Include-feature-role-as-part-of-JWT
May 31, 2021
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
feat: TT-19 Create Cookies of FeatureToggle
- Loading branch information
commit f907f3fd9dfa8dce37c6e929940184cc4db05f45
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
67 changes: 67 additions & 0 deletions
67
...ules/shared/feature-toggles/feature-toggle-cookies/feature-toggle-cookies.service.spec.ts
This file contains hidden or 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,67 @@ | ||
| import { TestBed } from '@angular/core/testing'; | ||
| import { CookieService } from 'ngx-cookie-service'; | ||
| import { of } from 'rxjs'; | ||
| import { FeatureToggleGeneralService } from '../feature-toggle-general/feature-toggle-general.service'; | ||
| import { FeatureToggleModel } from '../feature-toggle.model'; | ||
| import { TargetingFeatureFilterModel } from '../filters/targeting/targeting-feature-filter.model'; | ||
| import { FeatureToggleCookiesService } from './feature-toggle-cookies.service'; | ||
|
|
||
| describe('FeatureToggleCookiesService', () => { | ||
| let cookieService: CookieService; | ||
| let featureToggleGeneralService: FeatureToggleGeneralService; | ||
| let service: FeatureToggleCookiesService; | ||
|
|
||
| beforeEach(() => { | ||
| TestBed.configureTestingModule({ | ||
| providers: [CookieService, FeatureToggleGeneralService] | ||
| }); | ||
| cookieService = TestBed.inject(CookieService); | ||
| featureToggleGeneralService = TestBed.inject(FeatureToggleGeneralService); | ||
| service = TestBed.inject(FeatureToggleCookiesService); | ||
| }); | ||
|
|
||
| it('should be created', () => { | ||
| expect(service).toBeTruthy(); | ||
| }); | ||
|
|
||
| it('not call CookieService.set() when call setCookies() and getActivated() return empty', () => { | ||
| const fakeAllFeatureaToggleWithFilters = []; | ||
| const spyOnSetCookie = spyOn(cookieService, 'set'); | ||
| spyOn(featureToggleGeneralService, 'getActivated').and.returnValue(of(fakeAllFeatureaToggleWithFilters)); | ||
|
|
||
| service.setCookies(); | ||
|
|
||
| expect(spyOnSetCookie).toHaveBeenCalledTimes(0); | ||
| }); | ||
|
|
||
| it('Call 1 time CookieService.set() when call setCookies()', () => { | ||
| const anyMatchingFilter = new TargetingFeatureFilterModel( | ||
| { Audience: { Groups: ['group-a'], Users: ['user-a'] } }, | ||
| { username: 'user-b', group: 'group-a' } | ||
| ); | ||
| const fakeAllFeatureaToggleWithFilters = [new FeatureToggleModel('any-other-id', true, [anyMatchingFilter])]; | ||
| const spyOnSetCookie = spyOn(cookieService, 'set'); | ||
| spyOn(featureToggleGeneralService, 'getActivated').and.returnValue(of(fakeAllFeatureaToggleWithFilters)); | ||
|
|
||
| service.setCookies(); | ||
|
|
||
| expect(spyOnSetCookie).toHaveBeenCalledTimes(1); | ||
| }); | ||
|
|
||
| it('Call 2 times CookieService.set() when call setCookies()', () => { | ||
| const anyMatchingFilter = new TargetingFeatureFilterModel( | ||
| { Audience: { Groups: ['group-a'], Users: ['user-a'] } }, | ||
| { username: 'user-b', group: 'group-a' } | ||
| ); | ||
| const fakeAllFeatureaToggleWithFilters = [ | ||
| new FeatureToggleModel('first-id', true, [anyMatchingFilter]), | ||
| new FeatureToggleModel('second-id', true, [anyMatchingFilter]) | ||
| ]; | ||
| const spyOnSetCookie = spyOn(cookieService, 'set'); | ||
| spyOn(featureToggleGeneralService, 'getActivated').and.returnValue(of(fakeAllFeatureaToggleWithFilters)); | ||
|
|
||
| service.setCookies(); | ||
|
|
||
| expect(spyOnSetCookie).toHaveBeenCalledTimes(2); | ||
| }); | ||
| }); |
24 changes: 24 additions & 0 deletions
24
...p/modules/shared/feature-toggles/feature-toggle-cookies/feature-toggle-cookies.service.ts
This file contains hidden or 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,24 @@ | ||
| import { Injectable } from '@angular/core'; | ||
| import { FeatureToggleGeneralService } from '../feature-toggle-general/feature-toggle-general.service'; | ||
| import { CookieService } from 'ngx-cookie-service'; | ||
|
|
||
| @Injectable({ | ||
| providedIn: 'root' | ||
| }) | ||
| export class FeatureToggleCookiesService { | ||
|
|
||
| constructor( | ||
| private cookieService: CookieService, | ||
| private featureToggleGeneralService: FeatureToggleGeneralService | ||
| ) { } | ||
|
|
||
| setCookies(){ | ||
| this.featureToggleGeneralService.getActivated().subscribe( | ||
| (allFeaturToggle) => { | ||
| for (const featureToggle of allFeaturToggle){ | ||
| this.cookieService.set(featureToggle.name, `${featureToggle.enabled}`, 30); | ||
| } | ||
| } | ||
| ); | ||
| } | ||
| } |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.