-
Notifications
You must be signed in to change notification settings - Fork 21
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
feat: Support for name client to given provider #129
Conversation
8e25966
to
632929c
Compare
Codecov Report
@@ Coverage Diff @@
## main open-feature/dotnet-sdk#129 +/- ##
==========================================
+ Coverage 94.54% 94.64% +0.10%
==========================================
Files 20 20
Lines 532 542 +10
Branches 37 39 +2
==========================================
+ Hits 503 513 +10
Misses 16 16
Partials 13 13
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
632929c
to
ce4f654
Compare
@@ -21,7 +21,49 @@ public void OpenFeature_Should_Be_Singleton() | |||
} | |||
|
|||
[Fact] | |||
[Specification("1.1.3", "The `API` MUST provide a function to add `hooks` which accepts one or more API-conformant `hooks`, and appends them to the collection of any previously added hooks. When new hooks are added, previously added hooks are not removed.")] | |||
[Specification("1.1.3", "The `API` MUST provide a function to bind a given `provider` to one or more client `name`s. If the client-name already has a bound provider, it is overwritten with the new mapping.")] |
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.
I am not sure about the "or more client name
s." part of this.
Which implies to me:
var provider = new TestProvider();
openFeature.SetProvider("a", provider);
openFeature.SetProvider("b", provider);
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.
(Which will need more consideration with init/shutdown potentially.)
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.
Do you have concerns with mapping the same provider instance to 2 names? What's the risk you see here? Maybe we need to spec something additional?
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.
Basic case.
var provider1 = new TestProvider();
openFeature.SetProvider("a", provider1);
// Call init on provider1?
openFeature.SetProvider("a", new TestProvider());
// Call shutdown on provider 1?
// Call init on new provider.
Two Names Scenario 1.
var provider = new TestProvider();
openFeature.SetProvider("a", provider);
// Call init on provider?
openFeature.SetProvider("b", provider);
// Provider already has init called. Do we call it again?
Two Names Scenario 2.
var provider1 = new TestProvider();
openFeature.SetProvider("a", provider1);
openFeature.SetProvider("b", provider1);
openFeature.SetProvider("b", new TestProvider());
// We don't want to shutdown provider1, because it is still registered to "b".
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.
I've added this scenario to the tests cases.
This is an interesting thought about the init/shutdown, I haven't yet had a look at the spec for it but I would think it only calls shutdown if there are zero references to the object. I'll create a issue for this and lets continue the discussion under that
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.
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.
Approved with comment on test.
@benjiro I hope you don't mind, I created a new standalone issue and linked it so that the whole 0.6.0 issue isn't closed. |
Signed-off-by: Benjamin Evenson <[email protected]>
ce4f654
to
abaea88
Compare
This PR
Adds support for mapping name clients to a given provider.
Related Issues
Refs: Refs open-feature/ofep#56
Fixes: #131
Notes
N/A
Follow-up Tasks
How to test
Testing is covered by the unit tests added in the PR