class UrlGeneratorTraitTest

@coversDefaultClass \Drupal\Core\Routing\UrlGeneratorTrait @group Routing @group legacy

Hierarchy

Expanded class hierarchy of UrlGeneratorTraitTest

File

core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTraitTest.php, line 12

Namespace

Drupal\Tests\Core\Routing
View 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

Title Sort descending Deprecated Modifiers Object type Summary Overrides
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340
UrlGeneratorTraitTest::testGetUrlGenerator public function @covers ::setUrlGenerator
@covers ::getUrlGenerator
UrlGeneratorTraitTest::testRedirect public function @covers ::redirect
UrlGeneratorTraitTest::testUrl public function @covers ::url

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