Skip to content

Commit 28fea57

Browse files
committed
Fixes #230
Signed-off-by: Roelof Blom <[email protected]>
1 parent cc6c404 commit 28fea57

File tree

3 files changed

+84
-3
lines changed

3 files changed

+84
-3
lines changed

src/OpenFeature/Model/EvaluationContext.cs

+17-1
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,18 @@ public sealed class EvaluationContext
1717
/// Internal constructor used by the builder.
1818
/// </summary>
1919
/// <param name="content">The content of the context.</param>
20-
internal EvaluationContext(Structure content)
20+
internal EvaluationContext(Structure content) : this(string.Empty, content)
2121
{
22+
}
23+
24+
/// <summary>
25+
/// Internal constructor used by the builder.
26+
/// </summary>
27+
/// <param name="targetingKey">The targeting key</param>
28+
/// <param name="content">The content of the context.</param>
29+
internal EvaluationContext(string targetingKey, Structure content)
30+
{
31+
this.TargetingKey = targetingKey;
2232
this._structure = content;
2333
}
2434

@@ -28,6 +38,7 @@ internal EvaluationContext(Structure content)
2838
private EvaluationContext()
2939
{
3040
this._structure = Structure.Empty;
41+
this.TargetingKey = string.Empty;
3142
}
3243

3344
/// <summary>
@@ -83,6 +94,11 @@ public IImmutableDictionary<string, Value> AsDictionary()
8394
/// </summary>
8495
public int Count => this._structure.Count;
8596

97+
/// <summary>
98+
/// Returns the targeting key for the context.
99+
/// </summary>
100+
public string TargetingKey { get; }
101+
86102
/// <summary>
87103
/// Return an enumerator for all values
88104
/// </summary>

src/OpenFeature/Model/EvaluationContextBuilder.cs

+31-1
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,24 @@ public sealed class EvaluationContextBuilder
1414
{
1515
private readonly StructureBuilder _attributes = Structure.Builder();
1616

17+
internal string TargetingKey { get; private set; }
18+
1719
/// <summary>
1820
/// Internal to only allow direct creation by <see cref="EvaluationContext.Builder()"/>.
1921
/// </summary>
2022
internal EvaluationContextBuilder() { }
2123

24+
/// <summary>
25+
/// Set the targeting key for the context.
26+
/// </summary>
27+
/// <param name="targetingKey">The targeting key</param>
28+
/// <returns>This builder</returns>
29+
public EvaluationContextBuilder SetTargetingKey(string targetingKey)
30+
{
31+
this.TargetingKey = targetingKey;
32+
return this;
33+
}
34+
2235
/// <summary>
2336
/// Set the key to the given <see cref="Value"/>.
2437
/// </summary>
@@ -125,6 +138,23 @@ public EvaluationContextBuilder Set(string key, DateTime value)
125138
/// <returns>This builder</returns>
126139
public EvaluationContextBuilder Merge(EvaluationContext context)
127140
{
141+
string newTargetingKey = "";
142+
143+
if (TargetingKey != null && TargetingKey.Trim() != string.Empty)
144+
{
145+
newTargetingKey = TargetingKey;
146+
}
147+
148+
if (context.TargetingKey != null && context.TargetingKey.Trim() != string.Empty)
149+
{
150+
newTargetingKey = context.TargetingKey;
151+
}
152+
153+
if (newTargetingKey != null && newTargetingKey.Trim() != string.Empty)
154+
{
155+
this.TargetingKey = newTargetingKey;
156+
}
157+
128158
foreach (var kvp in context)
129159
{
130160
this.Set(kvp.Key, kvp.Value);
@@ -139,7 +169,7 @@ public EvaluationContextBuilder Merge(EvaluationContext context)
139169
/// <returns>An immutable <see cref="EvaluationContext"/></returns>
140170
public EvaluationContext Build()
141171
{
142-
return new EvaluationContext(this._attributes.Build());
172+
return new EvaluationContext(this.TargetingKey, this._attributes.Build());
143173
}
144174
}
145175
}

test/OpenFeature.Tests/OpenFeatureEvaluationContextTests.cs

+36-1
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,42 @@ public void Should_Merge_Two_Contexts()
1616
.Set("key1", "value1");
1717
var contextBuilder2 = new EvaluationContextBuilder()
1818
.Set("key2", "value2");
19-
2019
var context1 = contextBuilder1.Merge(contextBuilder2.Build()).Build();
2120

2221
Assert.Equal(2, context1.Count);
2322
Assert.Equal("value1", context1.GetValue("key1").AsString);
2423
Assert.Equal("value2", context1.GetValue("key2").AsString);
2524
}
2625

26+
[Fact]
27+
public void Should_Change_TargetingKey_From_OverridingContext()
28+
{
29+
var contextBuilder1 = new EvaluationContextBuilder()
30+
.Set("key1", "value1")
31+
.SetTargetingKey("targeting_key");
32+
var contextBuilder2 = new EvaluationContextBuilder()
33+
.Set("key2", "value2")
34+
.SetTargetingKey("overriding_key");
35+
36+
var mergeContext = contextBuilder1.Merge(contextBuilder2.Build()).Build();
37+
38+
Assert.Equal("overriding_key", mergeContext.TargetingKey);
39+
}
40+
41+
[Fact]
42+
public void Should_Retain_TargetingKey_When_OverridingContext_TargetingKey_Value_IsEmpty()
43+
{
44+
var contextBuilder1 = new EvaluationContextBuilder()
45+
.Set("key1", "value1")
46+
.SetTargetingKey("targeting_key");
47+
var contextBuilder2 = new EvaluationContextBuilder()
48+
.Set("key2", "value2");
49+
50+
var mergeContext = contextBuilder1.Merge(contextBuilder2.Build()).Build();
51+
52+
Assert.Equal("targeting_key", mergeContext.TargetingKey);
53+
}
54+
2755
[Fact]
2856
[Specification("3.2.2", "Evaluation context MUST be merged in the order: API (global; lowest precedence) - client - invocation - before hooks (highest precedence), with duplicate values being overwritten.")]
2957
public void Should_Merge_TwoContexts_And_Override_Duplicates_With_RightHand_Context()
@@ -51,6 +79,8 @@ public void EvaluationContext_Should_All_Types()
5179
var now = fixture.Create<DateTime>();
5280
var structure = fixture.Create<Structure>();
5381
var contextBuilder = new EvaluationContextBuilder()
82+
.SetTargetingKey("targeting_key")
83+
.Set("targeting_key", "userId")
5484
.Set("key1", "value")
5585
.Set("key2", 1)
5686
.Set("key3", true)
@@ -60,6 +90,11 @@ public void EvaluationContext_Should_All_Types()
6090

6191
var context = contextBuilder.Build();
6292

93+
context.TargetingKey.Should().Be("targeting_key");
94+
var targetingKeyValue = context.GetValue(context.TargetingKey);
95+
targetingKeyValue.IsString.Should().BeTrue();
96+
targetingKeyValue.AsString.Should().Be("userId");
97+
6398
var value1 = context.GetValue("key1");
6499
value1.IsString.Should().BeTrue();
65100
value1.AsString.Should().Be("value");

0 commit comments

Comments
 (0)