Skip to content
Snippets Groups Projects
Unverified Commit ed5f0fba authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3088917 by quietone, gbirch, marvil07, Wim Leers: Map text_plain field...

Issue #3088917 by quietone, gbirch, marvil07, Wim Leers: Map text_plain field formatter to basic_string for long text fields

(cherry picked from commit 775223c0)
parent 63b8c894
No related branches found
No related tags found
5 merge requests!10011Issue #3200534 by quietone, longwave, Kristen Pol: Use dataprovider for...,!2571Issue #3000717: Missing mapping for "nodereference_url" widget,!2521Issue #3185775: Place Views preview on the side on large monitors,!1479Issue #3250298: Return empty string "" with JSON Serializer instead of FALSE,!1478Issue #3250298: Return empty string "" with JSON Serializer instead of FALSE
......@@ -34,7 +34,7 @@ public function getFieldFormatterType(Row $row) {
break;
case 'string_long':
$formatter_type = str_replace('text_default', 'basic_string', $formatter_type);
$formatter_type = str_replace(['text_default', 'text_plain'], 'basic_string', $formatter_type);
break;
}
......
......@@ -25,12 +25,13 @@ protected function setUp(): void {
}
/**
* Data provider for getFieldFormatterType().
* Data provider for testGetFieldFormatterType().
*/
public function getFieldFormatterTypeProvider() {
return [
['text', 'text_plain', 'string'],
['text_long', 'text_default', 'basic_string'],
['text_long', 'text_plain', 'basic_string'],
];
}
......@@ -39,7 +40,7 @@ public function getFieldFormatterTypeProvider() {
* @covers ::getFieldType
* @dataProvider getFieldFormatterTypeProvider
*/
public function testGetFieldType($type, $formatter_type, $expected) {
public function testGetFieldFormatterType($type, $formatter_type, $expected) {
$row = new Row();
$row->setSourceProperty('type', $type);
$row->setSourceProperty('formatter/type', $formatter_type);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment