function FieldDiscoveryTest::getBundleFieldsData

Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal/tests/src/Unit/FieldDiscoveryTest.php \Drupal\Tests\migrate_drupal\Unit\FieldDiscoveryTest::getBundleFieldsData()
  2. 8.9.x core/modules/migrate_drupal/tests/src/Unit/FieldDiscoveryTest.php \Drupal\Tests\migrate_drupal\Unit\FieldDiscoveryTest::getBundleFieldsData()
  3. 10 core/modules/migrate_drupal/tests/src/Unit/FieldDiscoveryTest.php \Drupal\Tests\migrate_drupal\Unit\FieldDiscoveryTest::getBundleFieldsData()

Provides data for testGetBundleFields.

Return value

array The data.

File

core/modules/migrate_drupal/tests/src/Unit/FieldDiscoveryTest.php, line 159

Class

FieldDiscoveryTest
Tests the FieldDiscovery Class.

Namespace

Drupal\Tests\migrate_drupal\Unit

Code

public static function getBundleFieldsData() {
    return [
        'Node - Content Type 1' => [
            'entity_type_id' => 'node',
            'bundle' => 'content_type_1',
            'expected_fields' => [
                'field_1' => [
                    'field_info_key' => 'field_1_data',
                ],
                'field_2' => [
                    'field_info_key' => 'field_2_data',
                ],
                'field_3' => [
                    'field_info_key' => 'field_3_data',
                ],
            ],
        ],
        'Node - Content Type 2' => [
            'entity_type_id' => 'node',
            'bundle' => 'content_type_2',
            'expected_fields' => [
                'field_1' => [
                    'field_info_key' => 'field_1_data',
                ],
                'field_4' => [
                    'field_info_key' => 'field_4_data',
                ],
                'field_5' => [
                    'field_info_key' => 'field_5_data',
                ],
            ],
        ],
        'User' => [
            'entity_type_id' => 'user',
            'bundle' => 'user',
            'expected_fields' => [
                'user_field_1' => [
                    'field_info_key' => 'user_field_1_data',
                ],
            ],
        ],
        'Comment - Content Type 1' => [
            'entity_type_id' => 'comment',
            'bundle' => 'comment_node_content_type_1',
            'expected_fields' => [
                'comment_field_1' => [
                    'field_info_key' => 'field_1_data',
                ],
                'comment_field_2' => [
                    'field_info_key' => 'field_2_data',
                ],
                'comment_field_3' => [
                    'field_info_key' => 'field_3_data',
                ],
            ],
        ],
        'Comment - Content Type 2' => [
            'entity_type_id' => 'comment',
            'bundle' => 'comment_node_content_type_2',
            'expected_fields' => [
                'comment_field_1' => [
                    'field_info_key' => 'field_1_data',
                ],
                'comment_field_4' => [
                    'field_info_key' => 'field_4_data',
                ],
                'comment_field_5' => [
                    'field_info_key' => 'field_5_data',
                ],
            ],
        ],
        'Non-existent Entity Type' => [
            'entity_type_id' => 'custom_entity',
            'bundle' => 'content_type_1',
            'expected_fields' => [],
        ],
        'Non-existent Bundle' => [
            'entity_type_id' => 'node',
            'bundle' => 'content_type_3',
            'expected_fields' => [],
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.