You are here

public function ManageFieldsFunctionalTest::assertFieldSettings in Drupal 9

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. 10 core/modules/field_ui/tests/src/Functional/ManageFieldsFunctionalTest.php \Drupal\Tests\field_ui\Functional\ManageFieldsFunctionalTest::assertFieldSettings()

Asserts field settings are as expected.

Parameters

$bundle: The bundle name for the field.

$field_name: The field name for the field.

$string: The settings text.

$entity_type: The entity type for the field.

1 call to ManageFieldsFunctionalTest::assertFieldSettings()
ManageFieldsFunctionalTest::updateField in core/modules/field_ui/tests/src/Functional/ManageFieldsFunctionalTest.php
Tests editing an existing field.

File

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

Class

ManageFieldsFunctionalTest
Tests the Field UI "Manage fields" screen.

Namespace

Drupal\Tests\field_ui\Functional

Code

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

  // 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.');
}