EntityArgumentTest.php

Same filename and directory in other branches
  1. 10 core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php

Namespace

Drupal\Tests\views\Functional\Plugin

File

core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php

View source
<?php

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

use Drupal\Tests\taxonomy\Functional\Views\TaxonomyTestBase;
use Drupal\user\UserInterface;
use Drupal\views\Tests\ViewTestData;
use Drupal\views\Views;

/**
 * Tests the handler of the view: entity target argument.
 *
 * @group views
 * @see \Drupal\views\Plugin\views\argument\EntityArgument
 */
class EntityArgumentTest extends TaxonomyTestBase {
    
    /**
     * Views used by this test.
     *
     * @var array
     */
    public static array $testViews = [
        'test_entity_id_argument',
    ];
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'node',
        'taxonomy',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * A user with permission to administer taxonomy.
     *
     * @var \Drupal\user\UserInterface
     */
    protected UserInterface $adminUser;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp($import_test_views = TRUE, $modules = []) : void {
        parent::setUp($import_test_views, $modules);
        ViewTestData::createTestViews(static::class, [
            'views_test_config',
        ]);
        // Create an administrative user.
        $this->adminUser = $this->drupalCreateUser([
            'administer taxonomy',
            'bypass node access',
        ]);
        $this->drupalLogin($this->adminUser);
    }
    
    /**
     * Tests the generated title of a view with an entity target argument.
     */
    public function testArgumentTitle() : void {
        $view = Views::getView('test_entity_id_argument');
        $assert_session = $this->assertSession();
        // Test with single entity ID examples.
        $this->drupalGet('/entity-id-argument-test');
        $assert_session->titleEquals($view->getTitle() . ' | Drupal');
        $this->drupalGet('/entity-id-argument-test/1');
        $assert_session->titleEquals('test: title ' . $this->term1
            ->label() . ', input ' . $this->term1
            ->id() . ' | Drupal');
        $this->drupalGet('/entity-id-argument-test/2');
        $assert_session->titleEquals('test: title ' . $this->term2
            ->label() . ', input ' . $this->term2
            ->id() . ' | Drupal');
        // Test with multiple entity IDs examples.
        $this->drupalGet('/entity-id-argument-test/1,2');
        $assert_session->titleEquals('test: title ' . $this->term1
            ->label() . ', ' . $this->term2
            ->label() . ', input ' . $this->term1
            ->id() . ',' . $this->term2
            ->id() . ' | Drupal');
        $this->drupalGet('/entity-id-argument-test/2,1');
        $assert_session->titleEquals('test: title ' . $this->term2
            ->label() . ', ' . $this->term1
            ->label() . ', input ' . $this->term2
            ->id() . ',' . $this->term1
            ->id() . ' | Drupal');
        $this->drupalGet('/entity-id-argument-test/1+2');
        $assert_session->titleEquals('test: title ' . $this->term1
            ->label() . ' + ' . $this->term2
            ->label() . ', input ' . $this->term1
            ->id() . '+' . $this->term2
            ->id() . ' | Drupal');
        $this->drupalGet('/entity-id-argument-test/2+1');
        $assert_session->titleEquals('test: title ' . $this->term2
            ->label() . ' + ' . $this->term1
            ->label() . ', input ' . $this->term2
            ->id() . '+' . $this->term1
            ->id() . ' | Drupal');
    }

}

Classes

Title Deprecated Summary
EntityArgumentTest Tests the handler of the view: entity target argument.

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