-
Notifications
You must be signed in to change notification settings - Fork 405
RI-5747 filter per RI version in feature config #4294
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
mariasergeenko
merged 1 commit into
main
from
be/feature/RI-5747-filter-per-ri-version-in-feature-config
Jan 27, 2025
Merged
Changes from all commits
Commits
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
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
65 changes: 65 additions & 0 deletions
65
redisinsight/api/src/utils/feature-version-filter.helper.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,65 @@ | ||
// Import the function to test | ||
import { FeatureConfigFilterCondition } from 'src/modules/feature/model/features-config'; | ||
import { filterVersion } from './feature-version-filter.helper'; | ||
|
||
describe('filterVersion', () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ❤️ Since these tests work with the |
||
it('should return true for Eq condition when versions are equal', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Eq, '1.0.0', '1.0.0')).toBe(true); | ||
}); | ||
|
||
it('should return false for Eq condition when versions are not equal', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Eq, '1.0.1', '1.0.0')).toBe(false); | ||
}); | ||
|
||
it('should return false for Neq condition when versions are equal', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Neq, '1.0.0', '1.0.0')).toBe(false); | ||
}); | ||
|
||
it('should return true for Neq condition when versions are not equal', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Neq, '1.0.1', '1.0.0')).toBe(true); | ||
}); | ||
|
||
it('should return true for Gt condition when first version is greater', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Gt, '1.0.1', '1.0.0')).toBe(true); | ||
}); | ||
|
||
it('should return false for Gt condition when first version is not greater', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Gt, '1.0.0', '1.0.1')).toBe(false); | ||
}); | ||
|
||
it('should return true for Gte condition when first version is greater', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Gte, '1.0.1', '1.0.0')).toBe(true); | ||
}); | ||
|
||
it('should return true for Gte condition when versions are equal', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Gte, '1.0.0', '1.0.0')).toBe(true); | ||
}); | ||
|
||
it('should return false for Gte condition when first version is less', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Gte, '1.0.0', '1.0.1')).toBe(false); | ||
}); | ||
|
||
it('should return true for Lt condition when first version is less', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Lt, '1.0.0', '1.0.1')).toBe(true); | ||
}); | ||
|
||
it('should return false for Lt condition when first version is not less', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Lt, '1.0.1', '1.0.0')).toBe(false); | ||
}); | ||
|
||
it('should return true for Lte condition when first version is less', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Lte, '1.0.0', '1.0.1')).toBe(true); | ||
}); | ||
|
||
it('should return true for Lte condition when versions are equal', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Lte, '1.0.0', '1.0.0')).toBe(true); | ||
}); | ||
|
||
it('should return false for Lte condition when first version is greater', () => { | ||
expect(filterVersion(FeatureConfigFilterCondition.Lte, '1.0.1', '1.0.0')).toBe(false); | ||
}); | ||
|
||
it('should return false for unknown condition', () => { | ||
expect(filterVersion('UnknownCondition' as FeatureConfigFilterCondition, '1.0.0', '1.0.0')).toBe(false); | ||
}); | ||
}); |
22 changes: 22 additions & 0 deletions
22
redisinsight/api/src/utils/feature-version-filter.helper.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,22 @@ | ||
import { FeatureConfigFilterCondition } from 'src/modules/feature/model/features-config'; | ||
import * as semverCompare from 'node-version-compare'; | ||
|
||
export const filterVersion = (cond: FeatureConfigFilterCondition, value: string, filterValue: string) => { | ||
const compareRes = semverCompare(value, filterValue); | ||
switch (cond) { | ||
case FeatureConfigFilterCondition.Eq: | ||
return compareRes === 0; | ||
case FeatureConfigFilterCondition.Neq: | ||
return compareRes !== 0; | ||
case FeatureConfigFilterCondition.Gt: | ||
return compareRes > 0; | ||
case FeatureConfigFilterCondition.Gte: | ||
return compareRes >= 0; | ||
case FeatureConfigFilterCondition.Lt: | ||
return compareRes < 0; | ||
case FeatureConfigFilterCondition.Lte: | ||
return compareRes <= 0; | ||
default: | ||
return false; | ||
} | ||
}; |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably a leftover