class UrlGeneratorTraitTest in Drupal 8
@coversDefaultClass \Drupal\Core\Routing\UrlGeneratorTrait @group Routing @group legacy
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\Routing\UrlGeneratorTraitTest
Expanded class hierarchy of UrlGeneratorTraitTest
File
- core/
tests/ Drupal/ Tests/ Core/ Routing/ UrlGeneratorTraitTest.php, line 12
Namespace
Drupal\Tests\Core\RoutingView source
class UrlGeneratorTraitTest extends UnitTestCase {
/**
* @covers ::setUrlGenerator
* @covers ::getUrlGenerator
*
* @expectedDeprecation Drupal\Core\Routing\UrlGeneratorTrait::setUrlGenerator() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. See https://www.drupal.org/node/2614344
* @expectedDeprecation Drupal\Core\Routing\UrlGeneratorTrait::getUrlGenerator() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the url_generator service instead. See https://www.drupal.org/node/2614344
*/
public function testGetUrlGenerator() {
$url_generator = $this
->createMock('Drupal\\Core\\Routing\\UrlGeneratorInterface');
$url_generator_trait_object = $this
->getMockForTrait('Drupal\\Core\\Routing\\UrlGeneratorTrait');
$url_generator_trait_object
->setUrlGenerator($url_generator);
$url_generator_method = new \ReflectionMethod($url_generator_trait_object, 'getUrlGenerator');
$url_generator_method
->setAccessible(TRUE);
$result = $url_generator_method
->invoke($url_generator_trait_object);
$this
->assertEquals($url_generator, $result);
}
/**
* @covers ::redirect
*
* @expectedDeprecation Drupal\Core\Routing\UrlGeneratorTrait::redirect() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use new RedirectResponse(Url::fromRoute()) instead. See https://www.drupal.org/node/2614344
*/
public function testRedirect() {
$route_name = 'some_route_name';
$generated_url = 'some/generated/url';
$url_generator = $this
->createMock('Drupal\\Core\\Routing\\UrlGeneratorInterface');
$url_generator
->expects($this
->once())
->method('generateFromRoute')
->with($route_name, [], [
'absolute' => TRUE,
])
->willReturn($generated_url);
$url_generator_trait_object = $this
->getMockForTrait('Drupal\\Core\\Routing\\UrlGeneratorTrait');
$url_generator_trait_object
->setUrlGenerator($url_generator);
$url_generator_method = new \ReflectionMethod($url_generator_trait_object, 'redirect');
$url_generator_method
->setAccessible(TRUE);
$result = $url_generator_method
->invoke($url_generator_trait_object, $route_name);
$this
->assertInstanceOf('Symfony\\Component\\HttpFoundation\\RedirectResponse', $result);
$this
->assertSame($generated_url, $result
->getTargetUrl());
}
/**
* @covers ::url
*
* @expectedDeprecation Drupal\Core\Routing\UrlGeneratorTrait::url() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Url::fromUri() instead. See https://www.drupal.org/node/2614344
*/
public function testUrl() {
$route_name = 'some_route_name';
$generated_url = 'some/generated/url';
$url_generator = $this
->createMock('Drupal\\Core\\Routing\\UrlGeneratorInterface');
$url_generator
->expects($this
->once())
->method('generateFromRoute')
->with($route_name, [], [])
->willReturn($generated_url);
$url_generator_trait_object = $this
->getMockForTrait('Drupal\\Core\\Routing\\UrlGeneratorTrait');
$url_generator_trait_object
->setUrlGenerator($url_generator);
$url_generator_method = new \ReflectionMethod($url_generator_trait_object, 'url');
$url_generator_method
->setAccessible(TRUE);
$result = $url_generator_method
->invoke($url_generator_trait_object, $route_name);
$this
->assertSame($generated_url, $result);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed 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. | |
UnitTestCase:: |
protected | function | 340 | |
UrlGeneratorTraitTest:: |
public | function | @covers ::setUrlGenerator @covers ::getUrlGenerator | |
UrlGeneratorTraitTest:: |
public | function | @covers ::redirect | |
UrlGeneratorTraitTest:: |
public | function | @covers ::url |