ArgumentValidatorTest.php

Same filename in this branch
  1. 10 core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_validator/ArgumentValidatorTest.php
  2. 10 core/modules/views_ui/tests/src/Functional/ArgumentValidatorTest.php
Same filename and directory in other branches
  1. 9 core/modules/views/tests/src/Kernel/Plugin/ArgumentValidatorTest.php
  2. 9 core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_validator/ArgumentValidatorTest.php
  3. 9 core/modules/views_ui/tests/src/Functional/ArgumentValidatorTest.php
  4. 8.9.x core/modules/views/tests/src/Kernel/Plugin/ArgumentValidatorTest.php
  5. 8.9.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_validator/ArgumentValidatorTest.php
  6. 8.9.x core/modules/views_ui/tests/src/Functional/ArgumentValidatorTest.php
  7. 11.x core/modules/views/tests/src/Kernel/Plugin/ArgumentValidatorTest.php
  8. 11.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_validator/ArgumentValidatorTest.php
  9. 11.x core/modules/views_ui/tests/src/Functional/ArgumentValidatorTest.php

Namespace

Drupal\Tests\views\Kernel\Plugin

File

core/modules/views/tests/src/Kernel/Plugin/ArgumentValidatorTest.php

View source
<?php

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

use Drupal\Tests\views\Kernel\ViewsKernelTestBase;
use Drupal\views\Views;
use Drupal\views_test_data\Plugin\views\argument_validator\ArgumentValidatorTest as ArgumentValidatorTestPlugin;

/**
 * Tests Views argument validators.
 *
 * @group views
 */
class ArgumentValidatorTest extends ViewsKernelTestBase {
  
  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_view_argument_validate_numeric',
    'test_view',
  ];
  public function testArgumentValidateNumeric() : void {
    $view = Views::getView('test_view_argument_validate_numeric');
    $view->initHandlers();
    $this->assertFalse($view->argument['null']
      ->validateArgument($this->randomString()));
    // Reset saved argument validation.
    $view->argument['null']->argument_validated = NULL;
    $this->assertTrue($view->argument['null']
      ->validateArgument(12));
  }
  
  /**
   * Tests the argument validator test plugin.
   *
   * @see Drupal\views_test_data\Plugin\views\argument_validator\ArgumentValidatorTest
   */
  public function testArgumentValidatorPlugin() : void {
    $view = Views::getView('test_view');
    // Add a new argument and set the test plugin for the argument_validator.
    $options = [
      'specify_validation' => TRUE,
      'validate' => [
        'type' => 'argument_validator_test',
      ],
    ];
    $id = $view->addHandler('default', 'argument', 'views_test_data', 'name', $options);
    $view->initHandlers();
    $test_value = $this->randomMachineName();
    $argument = $view->argument[$id];
    $argument->options['validate_options']['test_value'] = $test_value;
    $this->assertFalse($argument->validateArgument($this->randomMachineName()), 'A random value does not validate.');
    // Reset internal flag.
    $argument->argument_validated = NULL;
    $this->assertTrue($argument->validateArgument($test_value), 'The right argument validates.');
    $plugin = $argument->getPlugin('argument_validator');
    $this->assertInstanceOf(ArgumentValidatorTestPlugin::class, $plugin);
    $this->assertFalse($plugin->validateArgument($this->randomMachineName()), 'A random value does not validate.');
    $this->assertTrue($plugin->validateArgument($test_value), 'The right argument validates.');
  }

}

Classes

Title Deprecated Summary
ArgumentValidatorTest Tests Views argument validators.

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