class FieldPluginBaseTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Unit/Plugin/field/FieldPluginBaseTest.php \Drupal\Tests\views\Unit\Plugin\field\FieldPluginBaseTest
@coversDefaultClass \Drupal\views\Plugin\views\field\FieldPluginBase @group views
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\views\Unit\Plugin\field\FieldPluginBaseTest
Expanded class hierarchy of FieldPluginBaseTest
File
- core/
modules/ views/ tests/ src/ Unit/ Plugin/ field/ FieldPluginBaseTest.php, line 29 - Contains \Drupal\Tests\views\Unit\Plugin\field\FieldPluginBaseTest.
Namespace
Drupal\Tests\views\Unit\Plugin\fieldView source
class FieldPluginBaseTest extends UnitTestCase {
/**
* The configuration of the plugin under test.
*
* @var array
*/
protected $configuration = [];
/**
* The ID plugin of the plugin under test.
*
* @var string
*/
protected $pluginId = 'field_test';
/**
* The definition of the plugin under test.
*
* @var array
*/
protected $pluginDefinition = [];
/**
* Default configuration for URL output.
*
* @var array
*/
protected $defaultUrlOptions = [
'absolute' => FALSE,
'alias' => FALSE,
'entity' => NULL,
'entity_type' => NULL,
'language' => NULL,
'query' => [],
'set_active_class' => FALSE,
];
/**
* The mocked link generator.
*
* @var \Drupal\Core\Utility\LinkGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $linkGenerator;
/**
* The mocked view executable.
*
* @var \Drupal\views\ViewExecutable|\PHPUnit_Framework_MockObject_MockObject
*/
protected $executable;
/**
* The mocked display plugin instance.
*
* @var \Drupal\views\Plugin\views\display\DisplayPluginBase|\PHPUnit_Framework_MockObject_MockObject
*/
protected $display;
/**
* The mocked url generator.
*
* @var \Drupal\Core\Routing\UrlGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $urlGenerator;
/**
* The mocked path validator.
*
* @var \Drupal\Core\Path\PathValidatorInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $pathValidator;
/**
* The unrouted url assembler service.
*
* @var \Drupal\Core\Utility\UnroutedUrlAssemblerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $unroutedUrlAssembler;
/**
* The request stack.
*
* @var \Symfony\Component\HttpFoundation\RequestStack
*/
protected $requestStack;
/**
* The mocked path processor.
*
* @var \Drupal\Core\PathProcessor\OutboundPathProcessorInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $pathProcessor;
/**
* The mocked path renderer.
*
* @var \Drupal\Core\Render\RendererInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $renderer;
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->executable = $this
->getMockBuilder('Drupal\\views\\ViewExecutable')
->disableOriginalConstructor()
->getMock();
$this->display = $this
->getMockBuilder('Drupal\\views\\Plugin\\views\\display\\DisplayPluginBase')
->disableOriginalConstructor()
->getMock();
$route_provider = $this
->getMock('Drupal\\Core\\Routing\\RouteProviderInterface');
$route_provider
->expects($this
->any())
->method('getRouteByName')
->with('test_route')
->willReturn(new Route('/test-path'));
$this->urlGenerator = $this
->getMock('Drupal\\Core\\Routing\\UrlGeneratorInterface');
$this->pathValidator = $this
->getMock('Drupal\\Core\\Path\\PathValidatorInterface');
$this->requestStack = new RequestStack();
$this->requestStack
->push(new Request());
$this->unroutedUrlAssembler = $this
->getMock('Drupal\\Core\\Utility\\UnroutedUrlAssemblerInterface');
$this->linkGenerator = $this
->getMock('Drupal\\Core\\Utility\\LinkGeneratorInterface');
$this->renderer = $this
->getMock('Drupal\\Core\\Render\\RendererInterface');
$container_builder = new ContainerBuilder();
$container_builder
->set('url_generator', $this->urlGenerator);
$container_builder
->set('path.validator', $this->pathValidator);
$container_builder
->set('unrouted_url_assembler', $this->unroutedUrlAssembler);
$container_builder
->set('request_stack', $this->requestStack);
$container_builder
->set('renderer', $this->renderer);
\Drupal::setContainer($container_builder);
}
/**
* Sets up the unrouted url assembler and the link generator.
*/
protected function setUpUrlIntegrationServices() {
$this->pathProcessor = $this
->getMock('Drupal\\Core\\PathProcessor\\OutboundPathProcessorInterface');
$this->unroutedUrlAssembler = new UnroutedUrlAssembler($this->requestStack, $this->pathProcessor);
\Drupal::getContainer()
->set('unrouted_url_assembler', $this->unroutedUrlAssembler);
$this->linkGenerator = new LinkGenerator($this->urlGenerator, $this
->getMock('Drupal\\Core\\Extension\\ModuleHandlerInterface'), $this->renderer);
$this->renderer
->method('render')
->willReturnCallback(function (&$elements, $is_root_call = FALSE) {
// Mock the ability to theme links
$link = $this->linkGenerator
->generate($elements['#title'], $elements['#url']);
if (isset($elements['#prefix'])) {
$link = $elements['#prefix'] . $link;
}
if (isset($elements['#suffix'])) {
$link = $link . $elements['#suffix'];
}
return Markup::create($link);
});
}
/**
* Sets up a display with empty arguments and fields.
*/
protected function setupDisplayWithEmptyArgumentsAndFields() {
$this->display
->expects($this
->any())
->method('getHandlers')
->willReturnMap([
[
'argument',
[],
],
[
'field',
[],
],
]);
}
/**
* Test rendering as a link without a path.
*
* @covers ::renderAsLink
*/
public function testRenderAsLinkWithoutPath() {
$alter = [
'make_link' => TRUE,
];
$this
->setUpUrlIntegrationServices();
$field = $this
->setupTestField([
'alter' => $alter,
]);
$field->field_alias = 'key';
$row = new ResultRow([
'key' => 'value',
]);
$expected_result = 'value';
$result = $field
->advancedRender($row);
$this
->assertEquals($expected_result, $result);
}
/**
* Test rendering as a link without a path.
*
* @covers ::renderText
*/
public function testRenderTrimmedWithMoreLink() {
$alter = [
'trim' => TRUE,
'max_length' => 7,
'more_link' => TRUE,
// Don't invoke translation.
'ellipsis' => FALSE,
'more_link_text' => 'more link',
];
$this->display
->expects($this
->any())
->method('getHandlers')
->willReturnMap([
[
'argument',
[],
],
[
'field',
[],
],
]);
$this
->setUpUrlIntegrationServices();
$field = $this
->setupTestField([
'alter' => $alter,
]);
$field->field_alias = 'key';
$row = new ResultRow([
'key' => 'a long value',
]);
$expected_result = 'a long <a href="/%3Cfront%3E" class="views-more-link">more link</a>';
$result = $field
->advancedRender($row);
$this
->assertEquals($expected_result, $result);
}
/**
* Test rendering of a link with a path and options.
*
* @dataProvider providerTestRenderAsLinkWithPathAndOptions
* @covers ::renderAsLink
*/
public function testRenderAsLinkWithPathAndOptions($path, $alter, $link_html, $final_html = NULL) {
$alter += [
'make_link' => TRUE,
'path' => $path,
];
$final_html = isset($final_html) ? $final_html : $link_html;
$this
->setUpUrlIntegrationServices();
$this
->setupDisplayWithEmptyArgumentsAndFields();
$field = $this
->setupTestField([
'alter' => $alter,
]);
$field->field_alias = 'key';
$row = new ResultRow([
'key' => 'value',
]);
$result = $field
->advancedRender($row);
$this
->assertEquals($final_html, (string) $result);
}
/**
* Data provider for ::testRenderAsLinkWithPathAndOptions().
*
* @return array
* Test data.
*/
public function providerTestRenderAsLinkWithPathAndOptions() {
$data = [];
// Simple path with default options.
$data[] = [
'test-path',
[],
[],
'<a href="/test-path">value</a>',
];
// Add a fragment.
$data[] = [
'test-path',
[
'fragment' => 'test',
],
'<a href="/test-path#test">value</a>',
];
// Rel attributes.
$data[] = [
'test-path',
[
'rel' => 'up',
],
'<a href="/test-path" rel="up">value</a>',
];
// Target attributes.
$data[] = [
'test-path',
[
'target' => '_blank',
],
'<a href="/test-path" target="_blank">value</a>',
];
// Link attributes.
$data[] = [
'test-path',
[
'link_attributes' => [
'foo' => 'bar',
],
],
'<a href="/test-path" foo="bar">value</a>',
];
// Manual specified query.
$data[] = [
'test-path',
[
'query' => [
'foo' => 'bar',
],
],
'<a href="/test-path?foo=bar">value</a>',
];
// Query specified as part of the path.
$data[] = [
'test-path?foo=bar',
[],
'<a href="/test-path?foo=bar">value</a>',
];
// Query specified as option and path.
// @todo Do we expect that options override all existing ones?
$data[] = [
'test-path?foo=bar',
[
'query' => [
'key' => 'value',
],
],
'<a href="/test-path?key=value">value</a>',
];
// Alias flag.
$data[] = [
'test-path',
[
'alias' => TRUE,
],
'<a href="/test-path">value</a>',
];
// Note: In contrast to the testRenderAsLinkWithUrlAndOptions test we don't
// test the language, because the path processor for the language won't be
// executed for paths which aren't routed.
// Entity flag.
$entity = $this
->getMock('Drupal\\Core\\Entity\\EntityInterface');
$data[] = [
'test-path',
[
'entity' => $entity,
],
'<a href="/test-path">value</a>',
];
// entity_type flag.
$entity_type_id = 'node';
$data[] = [
'test-path',
[
'entity_type' => $entity_type_id,
],
'<a href="/test-path">value</a>',
];
// prefix
$data[] = [
'test-path',
[
'prefix' => 'test_prefix',
],
'<a href="/test-path">value</a>',
'test_prefix<a href="/test-path">value</a>',
];
// suffix.
$data[] = [
'test-path',
[
'suffix' => 'test_suffix',
],
'<a href="/test-path">value</a>',
'<a href="/test-path">value</a>test_suffix',
];
// External URL.
$data[] = [
'https://www.drupal.org',
[],
[],
'<a href="https://www.drupal.org">value</a>',
];
return $data;
}
/**
* Tests link rendering with a URL and options.
*
* @dataProvider providerTestRenderAsLinkWithUrlAndOptions
* @covers ::renderAsLink
*/
public function testRenderAsLinkWithUrlAndOptions(Url $url, $alter, Url $expected_url, $url_path, Url $expected_link_url, $link_html, $final_html = NULL) {
$alter += [
'make_link' => TRUE,
'url' => $url,
];
$final_html = isset($final_html) ? $final_html : $link_html;
$this
->setUpUrlIntegrationServices();
$this
->setupDisplayWithEmptyArgumentsAndFields();
$field = $this
->setupTestField([
'alter' => $alter,
]);
$field->field_alias = 'key';
$row = new ResultRow([
'key' => 'value',
]);
$expected_url
->setOptions($expected_url
->getOptions() + $this->defaultUrlOptions);
$expected_link_url
->setUrlGenerator($this->urlGenerator);
$expected_url_options = $expected_url
->getOptions();
unset($expected_url_options['attributes']);
$this->urlGenerator
->expects($this
->once())
->method('generateFromRoute')
->with($expected_url
->getRouteName(), $expected_url
->getRouteParameters(), $expected_url_options, TRUE)
->willReturn((new GeneratedUrl())
->setGeneratedUrl($url_path));
$result = $field
->advancedRender($row);
$this
->assertEquals($final_html, $result);
}
/**
* Data provider for ::testRenderAsLinkWithUrlAndOptions().
*
* @return array
* Array of test data.
*/
public function providerTestRenderAsLinkWithUrlAndOptions() {
$data = [];
// Simple path with default options.
$url = Url::fromRoute('test_route');
$data[] = [
$url,
[],
clone $url,
'/test-path',
clone $url,
'<a href="/test-path">value</a>',
];
// Simple url with parameters.
$url_parameters = Url::fromRoute('test_route', [
'key' => 'value',
]);
$data[] = [
$url_parameters,
[],
clone $url_parameters,
'/test-path/value',
clone $url_parameters,
'<a href="/test-path/value">value</a>',
];
// Add a fragment.
$url = Url::fromRoute('test_route');
$url_with_fragment = Url::fromRoute('test_route');
$options = [
'fragment' => 'test',
] + $this->defaultUrlOptions;
$url_with_fragment
->setOptions($options);
$data[] = [
$url,
[
'fragment' => 'test',
],
$url_with_fragment,
'/test-path#test',
clone $url_with_fragment,
'<a href="/test-path#test">value</a>',
];
// Rel attributes.
$url = Url::fromRoute('test_route');
$url_with_rel = Url::fromRoute('test_route');
$options = [
'attributes' => [
'rel' => 'up',
],
] + $this->defaultUrlOptions;
$url_with_rel
->setOptions($options);
$data[] = [
$url,
[
'rel' => 'up',
],
clone $url,
'/test-path',
$url_with_rel,
'<a href="/test-path" rel="up">value</a>',
];
// Target attributes.
$url = Url::fromRoute('test_route');
$url_with_target = Url::fromRoute('test_route');
$options = [
'attributes' => [
'target' => '_blank',
],
] + $this->defaultUrlOptions;
$url_with_target
->setOptions($options);
$data[] = [
$url,
[
'target' => '_blank',
],
$url_with_target,
'/test-path',
clone $url_with_target,
'<a href="/test-path" target="_blank">value</a>',
];
// Link attributes.
$url = Url::fromRoute('test_route');
$url_with_link_attributes = Url::fromRoute('test_route');
$options = [
'attributes' => [
'foo' => 'bar',
],
] + $this->defaultUrlOptions;
$url_with_link_attributes
->setOptions($options);
$data[] = [
$url,
[
'link_attributes' => [
'foo' => 'bar',
],
],
clone $url,
'/test-path',
$url_with_link_attributes,
'<a href="/test-path" foo="bar">value</a>',
];
// Manual specified query.
$url = Url::fromRoute('test_route');
$url_with_query = Url::fromRoute('test_route');
$options = [
'query' => [
'foo' => 'bar',
],
] + $this->defaultUrlOptions;
$url_with_query
->setOptions($options);
$data[] = [
$url,
[
'query' => [
'foo' => 'bar',
],
],
clone $url_with_query,
'/test-path?foo=bar',
$url_with_query,
'<a href="/test-path?foo=bar">value</a>',
];
// Query specified as part of the path.
$url = Url::fromRoute('test_route')
->setOption('query', [
'foo' => 'bar',
]);
$url_with_query = clone $url;
$url_with_query
->setOptions([
'query' => [
'foo' => 'bar',
],
] + $url_with_query
->getOptions());
$data[] = [
$url,
[],
$url_with_query,
'/test-path?foo=bar',
clone $url,
'<a href="/test-path?foo=bar">value</a>',
];
// Query specified as option and path.
$url = Url::fromRoute('test_route')
->setOption('query', [
'foo' => 'bar',
]);
$url_with_query = Url::fromRoute('test_route');
$options = [
'query' => [
'key' => 'value',
],
] + $this->defaultUrlOptions;
$url_with_query
->setOptions($options);
$data[] = [
$url,
[
'query' => [
'key' => 'value',
],
],
$url_with_query,
'/test-path?key=value',
clone $url_with_query,
'<a href="/test-path?key=value">value</a>',
];
// Alias flag.
$url = Url::fromRoute('test_route');
$url_without_alias = Url::fromRoute('test_route');
$options = [
'alias' => TRUE,
] + $this->defaultUrlOptions;
$url_without_alias
->setOptions($options);
$data[] = [
$url,
[
'alias' => TRUE,
],
$url_without_alias,
'/test-path',
clone $url_without_alias,
'<a href="/test-path">value</a>',
];
// Language flag.
$language = new Language([
'id' => 'fr',
]);
$url = Url::fromRoute('test_route');
$url_with_language = Url::fromRoute('test_route');
$options = [
'language' => $language,
] + $this->defaultUrlOptions;
$url_with_language
->setOptions($options);
$data[] = [
$url,
[
'language' => $language,
],
$url_with_language,
'/fr/test-path',
clone $url_with_language,
'<a href="/fr/test-path" hreflang="fr">value</a>',
];
// Entity flag.
$entity = $this
->getMock('Drupal\\Core\\Entity\\EntityInterface');
$url = Url::fromRoute('test_route');
$url_with_entity = Url::fromRoute('test_route');
$options = [
'entity' => $entity,
] + $this->defaultUrlOptions;
$url_with_entity
->setOptions($options);
$data[] = [
$url,
[
'entity' => $entity,
],
$url_with_entity,
'/test-path',
clone $url_with_entity,
'<a href="/test-path">value</a>',
];
// Test entity_type flag.
$entity_type_id = 'node';
$url = Url::fromRoute('test_route');
$url_with_entity_type = Url::fromRoute('test_route');
$options = [
'entity_type' => $entity_type_id,
] + $this->defaultUrlOptions;
$url_with_entity_type
->setOptions($options);
$data[] = [
$url,
[
'entity_type' => $entity_type_id,
],
$url_with_entity_type,
'/test-path',
clone $url_with_entity_type,
'<a href="/test-path">value</a>',
];
// Test prefix.
$url = Url::fromRoute('test_route');
$data[] = [
$url,
[
'prefix' => 'test_prefix',
],
clone $url,
'/test-path',
clone $url,
'<a href="/test-path">value</a>',
'test_prefix<a href="/test-path">value</a>',
];
// Test suffix.
$url = Url::fromRoute('test_route');
$data[] = [
$url,
[
'suffix' => 'test_suffix',
],
clone $url,
'/test-path',
clone $url,
'<a href="/test-path">value</a>',
'<a href="/test-path">value</a>test_suffix',
];
return $data;
}
/**
* Test rendering of a link with a path and options.
*
* @dataProvider providerTestRenderAsLinkWithPathAndTokens
* @covers ::renderAsLink
*/
public function testRenderAsLinkWithPathAndTokens($path, $tokens, $link_html) {
$alter = [
'make_link' => TRUE,
'path' => $path,
];
$this
->setUpUrlIntegrationServices();
$this
->setupDisplayWithEmptyArgumentsAndFields();
$this->executable->build_info['substitutions'] = $tokens;
$field = $this
->setupTestField([
'alter' => $alter,
]);
$field->field_alias = 'key';
$row = new ResultRow([
'key' => 'value',
]);
$build = [
'#type' => 'inline_template',
'#template' => 'base:test-path/' . explode('/', $path)[1],
'#context' => [
'foo' => 123,
],
'#post_render' => [
function () {
},
],
];
$this->renderer
->expects($this
->once())
->method('renderPlain')
->with($build)
->willReturn('base:test-path/123');
$result = $field
->advancedRender($row);
$this
->assertEquals($link_html, $result);
}
/**
* Data provider for ::testRenderAsLinkWithPathAndTokens().
*
* @return array
* Test data.
*/
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;
}
/**
* Sets up a test field.
*
* @return \Drupal\Tests\views\Unit\Plugin\field\FieldPluginBaseTestField|\PHPUnit_Framework_MockObject_MockObject
* The test field.
*/
protected function setupTestField(array $options = []) {
/** @var \Drupal\Tests\views\Unit\Plugin\field\FieldPluginBaseTestField $field */
$field = $this
->getMock('Drupal\\Tests\\views\\Unit\\Plugin\\field\\FieldPluginBaseTestField', [
'l',
], [
$this->configuration,
$this->pluginId,
$this->pluginDefinition,
]);
$field
->init($this->executable, $this->display, $options);
$field
->setLinkGenerator($this->linkGenerator);
return $field;
}
/**
* @covers ::getRenderTokens
*/
public function testGetRenderTokensWithoutFieldsAndArguments() {
$field = $this
->setupTestField();
$this->display
->expects($this
->any())
->method('getHandlers')
->willReturnMap([
[
'argument',
[],
],
[
'field',
[],
],
]);
$this
->assertEquals([], $field
->getRenderTokens([]));
}
/**
* @covers ::getRenderTokens
*/
public function testGetRenderTokensWithoutArguments() {
$field = $this
->setupTestField([
'id' => 'id',
]);
$field->last_render = 'last rendered output';
$this->display
->expects($this
->any())
->method('getHandlers')
->willReturnMap([
[
'argument',
[],
],
[
'field',
[
'id' => $field,
],
],
]);
$this
->assertEquals([
'{{ id }}' => 'last rendered output',
], $field
->getRenderTokens([]));
}
/**
* @covers ::getRenderTokens
*/
public function testGetRenderTokensWithArguments() {
$field = $this
->setupTestField([
'id' => 'id',
]);
$field->view->args = [
'argument value',
];
$field->view->build_info['substitutions']['{{ arguments.name }}'] = 'argument value';
$argument = $this
->getMockBuilder('\\Drupal\\views\\Plugin\\views\\argument\\ArgumentPluginBase')
->disableOriginalConstructor()
->getMock();
$field->last_render = 'last rendered output';
$this->display
->expects($this
->any())
->method('getHandlers')
->willReturnMap([
[
'argument',
[
'name' => $argument,
],
],
[
'field',
[
'id' => $field,
],
],
]);
$expected = [
'{{ id }}' => 'last rendered output',
'{{ arguments.name }}' => 'argument value',
'{{ raw_arguments.name }}' => 'argument value',
];
$this
->assertEquals($expected, $field
->getRenderTokens([]));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FieldPluginBaseTest:: |
protected | property | The configuration of the plugin under test. | |
FieldPluginBaseTest:: |
protected | property | Default configuration for URL output. | |
FieldPluginBaseTest:: |
protected | property | The mocked display plugin instance. | |
FieldPluginBaseTest:: |
protected | property | The mocked view executable. | |
FieldPluginBaseTest:: |
protected | property | The mocked link generator. | |
FieldPluginBaseTest:: |
protected | property | The mocked path processor. | |
FieldPluginBaseTest:: |
protected | property | The mocked path validator. | |
FieldPluginBaseTest:: |
protected | property | The definition of the plugin under test. | |
FieldPluginBaseTest:: |
protected | property | The ID plugin of the plugin under test. | |
FieldPluginBaseTest:: |
protected | property | The mocked path renderer. | |
FieldPluginBaseTest:: |
protected | property | The request stack. | |
FieldPluginBaseTest:: |
protected | property | The unrouted url assembler service. | |
FieldPluginBaseTest:: |
protected | property | The mocked url generator. | |
FieldPluginBaseTest:: |
public | function | Data provider for ::testRenderAsLinkWithPathAndOptions(). | |
FieldPluginBaseTest:: |
public | function | Data provider for ::testRenderAsLinkWithPathAndTokens(). | |
FieldPluginBaseTest:: |
public | function | Data provider for ::testRenderAsLinkWithUrlAndOptions(). | |
FieldPluginBaseTest:: |
protected | function |
Overrides UnitTestCase:: |
|
FieldPluginBaseTest:: |
protected | function | Sets up a display with empty arguments and fields. | |
FieldPluginBaseTest:: |
protected | function | Sets up a test field. | |
FieldPluginBaseTest:: |
protected | function | Sets up the unrouted url assembler and the link generator. | |
FieldPluginBaseTest:: |
public | function | @covers ::getRenderTokens | |
FieldPluginBaseTest:: |
public | function | @covers ::getRenderTokens | |
FieldPluginBaseTest:: |
public | function | @covers ::getRenderTokens | |
FieldPluginBaseTest:: |
public | function | Test rendering as a link without a path. | |
FieldPluginBaseTest:: |
public | function | Test rendering of a link with a path and options. | |
FieldPluginBaseTest:: |
public | function | Test rendering of a link with a path and options. | |
FieldPluginBaseTest:: |
public | function | Tests link rendering with a URL and options. | |
FieldPluginBaseTest:: |
public | function | Test rendering as a link without a path. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |