diff --git a/typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/EvaluateDisplayConditionsTest.php b/typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/EvaluateDisplayConditionsTest.php index 609d4cf8589f1ef20cbff18e610d19f61e4a8eba..70e6b3113b685051572697b5a60f4c0390514a00 100644 --- a/typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/EvaluateDisplayConditionsTest.php +++ b/typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/EvaluateDisplayConditionsTest.php @@ -855,4 +855,71 @@ class EvaluateDisplayConditionsTest extends UnitTestCase unset($expected['processedTca']['columns']['testField']['config']['ds']['sheets']['sTest']); $this->assertSame($expected, $this->subject->addData($input)); } + + /** + * @test + */ + public function matchFlexformSheetConditionStringsWithLogicalOperatorForFieldsWithDotInName() + { + $input = [ + 'databaseRow' => [ + 'foo' => 'bar', + 'testField' => [ + 'data' => [ + 'sDEF' => [ + 'lDEF' => [ + 'testField' => [ + 'vDEF' => [ + 0 => '', + ], + ], + ], + ], + ], + ], + ], + 'processedTca' => [ + 'columns' => [ + 'testField' => [ + 'config' => [ + 'type' => 'flex', + 'ds' => [ + 'meta' => [], + 'sheets' => [ + 'sDEF' => [ + 'ROOT' => [ + 'type' => 'array', + 'el' => [ + 'testField' => [ + 'config' => [ + 'type' => 'input', + ], + ], + ], + ], + ], + 'sTest' => [ + 'ROOT' => [ + 'type' => 'array', + 'el' => [], + 'sheetTitle' => 'sVideo', + 'displayCond' => [ + 'OR' => [ + 'FIELD:sDEF.testField:=:LIST', + 'FIELD:sDEF.testField:REQ:false', + ], + ] , + ], + ], + ] + ], + ], + ], + ], + ], + ]; + + $expected = $input; + $this->assertSame($expected, $this->subject->addData($input)); + } }