FieldTest.php

Same filename in this branch
  1. 11.x core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldTest.php
  2. 11.x core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldTest.php
  3. 11.x core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php
  4. 11.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php
Same filename and directory in other branches
  1. 9 core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldTest.php
  2. 9 core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldTest.php
  3. 9 core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php
  4. 9 core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php
  5. 9 core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php
  6. 9 core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php
  7. 8.9.x core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldTest.php
  8. 8.9.x core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldTest.php
  9. 8.9.x core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php
  10. 8.9.x core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php
  11. 8.9.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php
  12. 8.9.x core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php
  13. 10 core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldTest.php
  14. 10 core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldTest.php
  15. 10 core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php
  16. 10 core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php
  17. 10 core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php

Namespace

Drupal\Tests\views\FunctionalJavascript\Plugin\views\Handler

File

core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\views\FunctionalJavascript\Plugin\views\Handler;

use Drupal\field\Entity\FieldConfig;
use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
use Drupal\Tests\SchemaCheckTestTrait;
use Drupal\views\Tests\ViewTestData;

/**
 * Tests the field handler UI.
 *
 * @group views
 */
class FieldTest extends WebDriverTestBase {
    use SchemaCheckTestTrait;
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'node',
        'views',
        'views_ui',
        'views_test_config',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * Views used by this test.
     *
     * @var array
     */
    public static $testViews = [
        'test_field_body',
    ];
    
    /**
     * The account.
     *
     * @var \Drupal\user\UserInterface
     */
    protected $account;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        ViewTestData::createTestViews(static::class, [
            'views_test_config',
        ]);
        // Disable automatic live preview to make the sequence of calls clearer.
        \Drupal::configFactory()->getEditable('views.settings')
            ->set('ui.always_live_preview', FALSE)
            ->save();
        $this->account = $this->drupalCreateUser([
            'administer views',
            'access content overview',
        ]);
        $this->drupalLogin($this->account);
        NodeType::create([
            'type' => 'page',
            'name' => 'Page',
        ])->save();
        FieldConfig::create([
            'entity_type' => 'node',
            'field_name' => 'body',
            'bundle' => 'page',
        ])->save();
    }
    
    /**
     * Tests custom text field modal title.
     */
    public function testModalDialogTitle() : void {
        $web_assert = $this->assertSession();
        Node::create([
            'title' => $this->randomString(),
            'type' => 'page',
            'body' => 'page',
        ])
            ->save();
        $base_path = \Drupal::request()->getBasePath();
        $url = "{$base_path}/admin/structure/views/view/content";
        $this->drupalGet($url);
        $page = $this->getSession()
            ->getPage();
        // Open the 'Add fields dialog'.
        $page->clickLink('views-add-field');
        $web_assert->waitForField('name[views.nothing]');
        // Select the custom text field.
        $page->checkField('name[views.nothing]');
        $page->find('css', '.ui-dialog .ui-dialog-buttonset')
            ->pressButton('Add and configure fields');
        $web_assert->waitForField('options[alter][text]');
        $page->fillField('options[alter][text]', "{{ attach_library(\"core/drupal.dialog.ajax\") }}\n<p><a class=\"use-ajax\" data-dialog-type=\"modal\" href=\"{$base_path}/admin/content\">Content link</a></p>");
        $page->find('css', '.ui-dialog .ui-dialog-buttonset')
            ->pressButton('Apply');
        $web_assert->waitForText('Content: body (exposed)');
        $web_assert->waitForButton('Save');
        $page->pressButton('Save');
        $web_assert->waitForText('The view Content has been saved.');
        $web_assert->waitForButton('Update preview');
        $page->pressButton('Update preview');
        // Open the custom text link modal.
        $this->assertNotNull($web_assert->waitForLink('Content link'));
        $page->clickLink('Content link');
        // Verify the modal title.
        $web_assert->assertWaitOnAjaxRequest();
        $this->assertEquals('Content', $web_assert->waitForElement('css', '.ui-dialog-title')
            ->getText());
    }
    public function testFormatterChanging() : void {
        $web_assert = $this->assertSession();
        $url = '/admin/structure/views/view/test_field_body';
        $this->drupalGet($url);
        $page = $this->getSession()
            ->getPage();
        $page->clickLink('Body field');
        $web_assert->assertWaitOnAjaxRequest();
        $page->fillField('options[type]', 'text_trimmed');
        // Add a value to the trim_length setting.
        $web_assert->assertWaitOnAjaxRequest();
        $page->fillField('options[settings][trim_length]', '700');
        $apply_button = $page->find('css', '.views-ui-dialog button.button--primary');
        $this->assertNotEmpty($apply_button);
        $apply_button->press();
        $web_assert->assertWaitOnAjaxRequest();
        // Save the page.
        $save_button = $page->find('css', '#edit-actions-submit');
        $save_button->press();
        // Set the body field back to 'default' and test that the trim_length
        // settings are not in the config.
        $this->drupalGet($url);
        $page->clickLink('Body field');
        $web_assert->assertWaitOnAjaxRequest();
        $page->fillField('options[type]', 'text_default');
        $web_assert->assertWaitOnAjaxRequest();
        $apply_button = $page->find('css', '.views-ui-dialog button.button--primary');
        $apply_button->press();
        $web_assert->assertWaitOnAjaxRequest();
        // Save the page.
        $save_button = $page->find('css', '#edit-actions-submit');
        $save_button->press();
        $this->assertConfigSchemaByName('views.view.test_field_body');
    }

}

Classes

Title Deprecated Summary
FieldTest Tests the field handler UI.

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