You are here

public function FieldPluginBaseTest::providerTestRenderAsLinkWithPathAndTokens in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Unit/Plugin/field/FieldPluginBaseTest.php \Drupal\Tests\views\Unit\Plugin\field\FieldPluginBaseTest::providerTestRenderAsLinkWithPathAndTokens()

Data provider for ::testRenderAsLinkWithPathAndTokens().

Return value

array Test data.

File

core/modules/views/tests/src/Unit/Plugin/field/FieldPluginBaseTest.php, line 516
Contains \Drupal\Tests\views\Unit\Plugin\field\FieldPluginBaseTest.

Class

FieldPluginBaseTest
@coversDefaultClass \Drupal\views\Plugin\views\field\FieldPluginBase @group views

Namespace

Drupal\Tests\views\Unit\Plugin\field

Code

public function providerTestRenderAsLinkWithPathAndTokens() {
  $tokens = [
    '{{ foo }}' => 123,
  ];
  $link_html = '<a href="/test-path/123">value</a>';
  $data = [];
  $data[] = [
    'test-path/{{foo}}',
    $tokens,
    $link_html,
  ];
  $data[] = [
    'test-path/{{ foo}}',
    $tokens,
    $link_html,
  ];
  $data[] = [
    'test-path/{{  foo}}',
    $tokens,
    $link_html,
  ];
  $data[] = [
    'test-path/{{foo }}',
    $tokens,
    $link_html,
  ];
  $data[] = [
    'test-path/{{foo  }}',
    $tokens,
    $link_html,
  ];
  $data[] = [
    'test-path/{{ foo }}',
    $tokens,
    $link_html,
  ];
  $data[] = [
    'test-path/{{  foo }}',
    $tokens,
    $link_html,
  ];
  $data[] = [
    'test-path/{{ foo  }}',
    $tokens,
    $link_html,
  ];
  $data[] = [
    'test-path/{{  foo  }}',
    $tokens,
    $link_html,
  ];
  return $data;
}