ArgumentTransformTermTest.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\Tests\taxonomy\Kernel\ViewsFile
core/modules/taxonomy/tests/src/Kernel/Views/ArgumentTransformTermTest.phpView source
<?php
namespace Drupal\Tests\taxonomy\Kernel\Views;
use Drupal\views\Views;
/**
* Tests taxonomy term argument transformation.
*
* @group taxonomy
*
* @see \Drupal\taxonomy\Plugin\views\argument_validator\TermName
*/
class ArgumentTransformTermTest extends TaxonomyTestBase {
/**
* {@inheritdoc}
*/
public static $testViews = [
'test_argument_transform_term',
];
/**
* Tests term argument transformation of hyphens and spaces.
*
* @dataProvider termArgumentTransformationProvider
*
* @param string $name
* The name of the taxonomy term to use for the test.
*/
public function testTermArgumentTransformation($name) {
/** @var \Drupal\taxonomy\TermInterface $term */
$term = $this
->createTerm([
'name' => $name,
]);
/** @var \Drupal\views\ViewExecutable $view */
$view = Views::getView('test_argument_transform_term');
$view
->initHandlers();
/** @var string $hyphenated_term */
$hyphenated_term = str_replace(' ', '-', $term
->label());
$this
->assertTrue($view->argument['tid']
->setArgument($hyphenated_term));
// Assert hyphens are converted back to spaces.
$this
->assertEquals($term
->label(), $view->argument['tid']->argument);
}
/**
* Provides data for testTermArgumentTransformation().
*
* @return array[]
* Test data.
*/
public function termArgumentTransformationProvider() {
return [
'space in the middle' => [
'name' => $this
->randomMachineName() . ' ' . $this
->randomMachineName(),
],
'space at the start' => [
'name' => ' ' . $this
->randomMachineName(),
],
'space at the end' => [
'name' => $this
->randomMachineName() . ' ',
],
];
}
}
Classes
Name | Description |
---|---|
ArgumentTransformTermTest | Tests taxonomy term argument transformation. |