You are here

public function ManageFieldsFunctionalTest::assertFieldSettings in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/field_ui/tests/src/Functional/ManageFieldsFunctionalTest.php \Drupal\Tests\field_ui\Functional\ManageFieldsFunctionalTest::assertFieldSettings()
  2. 9 core/modules/field_ui/tests/src/Functional/ManageFieldsFunctionalTest.php \Drupal\Tests\field_ui\Functional\ManageFieldsFunctionalTest::assertFieldSettings()

Asserts field settings are as expected.

@internal

Parameters

string $bundle: The bundle name for the field.

string $field_name: The field name for the field.

string $string: The settings text.

string $entity_type: The entity type for the field.

File

core/modules/field_ui/tests/src/Functional/ManageFieldsFunctionalTest.php, line 453

Class

ManageFieldsFunctionalTest
Tests the Field UI "Manage fields" screen.

Namespace

Drupal\Tests\field_ui\Functional

Code

public function assertFieldSettings(string $bundle, string $field_name, string $string = 'dummy test string', string $entity_type = 'node') : void {

  // Assert field storage settings.
  $field_storage = FieldStorageConfig::loadByName($entity_type, $field_name);
  $this
    ->assertSame($string, $field_storage
    ->getSetting('test_field_storage_setting'), 'Field storage settings were found.');

  // Assert field settings.
  $field = FieldConfig::loadByName($entity_type, $bundle, $field_name);
  $this
    ->assertSame($string, $field
    ->getSetting('test_field_setting'), 'Field settings were found.');
}