class Text3WidgetTest

Same name in other branches
  1. 3.x modules/field_example/tests/src/Functional/Text3WidgetTest.php \Drupal\Tests\field_example\Functional\Text3WidgetTest
  2. 4.0.x modules/field_example/tests/src/Functional/Text3WidgetTest.php \Drupal\Tests\field_example\Functional\Text3WidgetTest

Functional tests of the 3text widget.

Create a content type with a example_field_rgb field, configure it with the field_example_text-widget, create a node and check for correct values.

@group field_example @group examples

Hierarchy

  • class \Drupal\Tests\examples\Functional\ExamplesBrowserTestBase extends \Drupal\Tests\BrowserTestBase
    • class \Drupal\Tests\field_example\Functional\FieldExampleBrowserTestBase extends \Drupal\Tests\examples\Functional\ExamplesBrowserTestBase
      • class \Drupal\Tests\field_example\Functional\Text3WidgetTest extends \Drupal\Tests\field_example\Functional\FieldExampleBrowserTestBase

Expanded class hierarchy of Text3WidgetTest

File

field_example/tests/src/Functional/Text3WidgetTest.php, line 16

Namespace

Drupal\Tests\field_example\Functional
View source
class Text3WidgetTest extends FieldExampleBrowserTestBase {
    
    /**
     * Test basic functionality of the example field.
     *
     * - Creates a content type.
     * - Adds a single-valued field_example_rgb to it.
     * - Adds a multivalued field_example_rgb to it.
     * - Creates a node of the new type.
     * - Populates the single-valued field.
     * - Populates the multivalued field with two items.
     * - Tests the result.
     */
    public function testSingleValueField() {
        $assert = $this->assertSession();
        // Add a single field as administrator user.
        $this->drupalLogin($this->administratorAccount);
        $this->fieldName = $this->createField('field_example_rgb', 'field_example_3text', '1');
        // Post-condition: Content type now has the desired field.
        // Switch to the author user to create content with this type and field.
        $this->drupalLogin($this->authorAccount);
        $this->drupalGet('node/add/' . $this->contentTypeName);
        // Fill the create form.
        $title = 'test_title';
        $edit = [
            'title[0][value]' => $title,
            'field_' . $this->fieldName . '[0][value][r]' => '00',
            'field_' . $this->fieldName . '[0][value][g]' => '0a',
            'field_' . $this->fieldName . '[0][value][b]' => '01',
        ];
        // Create the content.
        $this->drupalPostForm(NULL, $edit, 'Save');
        $assert->pageTextContains((string) new FormattableMarkup('@type @title has been created', [
            '@type' => $this->contentTypeName,
            '@title' => $title,
        ]));
        // Verify the value is shown when viewing this node.
        $field_p = $this->xpath("//div[contains(@class,'field--type-field-example-rgb')]/div/p");
        $this->assertEquals("The color code in this field is #000a01", (string) $field_p[0]->getText());
    }
    
    /**
     * Test basic functionality of the example field.
     *
     * - Creates a content type.
     * - Adds a single-valued field_example_rgb to it.
     * - Adds a multivalued field_example_rgb to it.
     * - Creates a node of the new type.
     * - Populates the single-valued field.
     * - Populates the multivalued field with two items.
     * - Tests the result.
     */
    public function testMultiValueField() {
        $assert = $this->assertSession();
        // Add a single field as administrator user.
        $this->drupalLogin($this->administratorAccount);
        $this->fieldName = $this->createField('field_example_rgb', 'field_example_3text', '-1');
        // Post-condition: Content type now has the desired field.
        // Switch to the author user to create content with this type and field.
        $this->drupalLogin($this->authorAccount);
        $this->drupalGet('node/add/' . $this->contentTypeName);
        // Fill the create form.
        $title = $this->randomMachineName(20);
        $edit = [
            'title[0][value]' => $title,
            'field_' . $this->fieldName . '[0][value][r]' => '00',
            'field_' . $this->fieldName . '[0][value][g]' => 'ff',
            'field_' . $this->fieldName . '[0][value][b]' => '00',
        ];
        // Add a 2nd item to the multivalue field, so hit "add another".
        $this->drupalPostForm(NULL, $edit, 'Add another item');
        $edit = [
            'field_' . $this->fieldName . '[1][value][r]' => 'ff',
            'field_' . $this->fieldName . '[1][value][g]' => 'ff',
            'field_' . $this->fieldName . '[1][value][b]' => 'ff',
        ];
        // Create the content.
        $this->drupalPostForm(NULL, $edit, 'Save');
        $assert->pageTextContains((string) new FormattableMarkup('@type @title has been created', [
            '@type' => $this->contentTypeName,
            '@title' => $title,
        ]));
        // Verify the values are shown when viewing this node.
        $field_p = $this->xpath("//div[contains(@class,'field--type-field-example-rgb')]/div/div/p");
        $this->assertEquals('The color code in this field is #00ff00', (string) $field_p[0]->getText());
        $this->assertEquals('The color code in this field is #ffffff', (string) $field_p[1]->getText());
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
ExamplesBrowserTestBase::setupExamplesMenus protected function Set up menus and tasks in their regions.
FieldExampleBrowserTestBase::$administratorAccount protected property The administrator account.
FieldExampleBrowserTestBase::$authorAccount protected property The author account.
FieldExampleBrowserTestBase::$contentTypeName protected property The content type name.
FieldExampleBrowserTestBase::$defaultTheme protected property
FieldExampleBrowserTestBase::$fieldName protected property The field name.
FieldExampleBrowserTestBase::$modules public static property Modules to enable. Overrides ExamplesBrowserTestBase::$modules 1
FieldExampleBrowserTestBase::createField protected function Create a field on the content type created during setUp().
FieldExampleBrowserTestBase::setUp protected function Once installed, a content type with the desired field is created. Overrides ExamplesBrowserTestBase::setUp
Text3WidgetTest::testMultiValueField public function Test basic functionality of the example field.
Text3WidgetTest::testSingleValueField public function Test basic functionality of the example field.