Skip to content

Commit 3f141d7

Browse files
authored
fix: correct merging of contexts with targetingKey (#136)
<!-- Please use this template for your pull request. --> <!-- Please use the sections that you need and delete other sections --> ## This PR <!-- add the description of the PR here --> Corrects the behavior of EvaluationContextMerger `merge()` when using string `targetingKey`. ### Related Issues <!-- add here the GitHub issue that this PR resolves if applicable --> Fixes #135 ### Notes <!-- any additional notes for this PR --> ### Follow-up Tasks <!-- anything that is related to this PR but not done here should be noted under this section --> <!-- if there is a need for a new issue, please link it here --> ### How to test <!-- if applicable, add testing instructions under this section --> The `testEvaluationContextMergingTargetingKey` test in EvaluationContextTest.php has been added. The test fails without the proposed fix, as expected. Signed-off-by: Tommaso Tofacchi <[email protected]>
1 parent 712d8e4 commit 3f141d7

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

src/implementation/flags/EvaluationContextMerger.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ public static function merge(?EvaluationContextInterface ...$contexts): Evaluati
4747

4848
/** @var ?string $newTargetingKey */
4949
$newTargetingKey = null;
50-
if (!is_null($calculatedTargetingKey) && strlen($calculatedTargetingKey) > 0) {
51-
$newTargetingKey = $calculatedTargetingKey;
52-
} elseif (!is_null($additionalTargetingKey) && strlen($additionalTargetingKey) > 0) {
50+
if (!is_null($additionalTargetingKey) && strlen($additionalTargetingKey) > 0) {
5351
$newTargetingKey = $additionalTargetingKey;
52+
} elseif (!is_null($calculatedTargetingKey) && strlen($calculatedTargetingKey) > 0) {
53+
$newTargetingKey = $calculatedTargetingKey;
5454
}
5555

5656
$mergedAttributes = AttributesMerger::merge(

tests/unit/EvaluationContextTest.php

+13
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,17 @@ public function testEvaluationContextMerging(): void
127127

128128
$this->assertEquals($expectedEvaluationContextAttributes, $actualEvaluationContextAttributes);
129129
}
130+
131+
public function testEvaluationContextMergingTargetingKey(): void
132+
{
133+
$firstEvaluationContext = new EvaluationContext('default');
134+
$secondEvaluationContext = new EvaluationContext('merged_key');
135+
136+
$expectedEvaluationContextAttributes = 'merged_key';
137+
138+
$actualEvaluationContext = EvaluationContext::merge($firstEvaluationContext, $secondEvaluationContext);
139+
$actualEvaluationContextAttributes = $actualEvaluationContext->getTargetingKey();
140+
141+
$this->assertEquals($expectedEvaluationContextAttributes, $actualEvaluationContextAttributes);
142+
}
130143
}

0 commit comments

Comments
 (0)