@@ -16,14 +16,42 @@ public void Should_Merge_Two_Contexts()
16
16
. Set ( "key1" , "value1" ) ;
17
17
var contextBuilder2 = new EvaluationContextBuilder ( )
18
18
. Set ( "key2" , "value2" ) ;
19
-
20
19
var context1 = contextBuilder1 . Merge ( contextBuilder2 . Build ( ) ) . Build ( ) ;
21
20
22
21
Assert . Equal ( 2 , context1 . Count ) ;
23
22
Assert . Equal ( "value1" , context1 . GetValue ( "key1" ) . AsString ) ;
24
23
Assert . Equal ( "value2" , context1 . GetValue ( "key2" ) . AsString ) ;
25
24
}
26
25
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
+
27
55
[ Fact ]
28
56
[ 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." ) ]
29
57
public void Should_Merge_TwoContexts_And_Override_Duplicates_With_RightHand_Context ( )
@@ -51,6 +79,8 @@ public void EvaluationContext_Should_All_Types()
51
79
var now = fixture . Create < DateTime > ( ) ;
52
80
var structure = fixture . Create < Structure > ( ) ;
53
81
var contextBuilder = new EvaluationContextBuilder ( )
82
+ . SetTargetingKey ( "targeting_key" )
83
+ . Set ( "targeting_key" , "userId" )
54
84
. Set ( "key1" , "value" )
55
85
. Set ( "key2" , 1 )
56
86
. Set ( "key3" , true )
@@ -60,6 +90,11 @@ public void EvaluationContext_Should_All_Types()
60
90
61
91
var context = contextBuilder . Build ( ) ;
62
92
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
+
63
98
var value1 = context . GetValue ( "key1" ) ;
64
99
value1 . IsString . Should ( ) . BeTrue ( ) ;
65
100
value1 . AsString . Should ( ) . Be ( "value" ) ;
0 commit comments