You are here

class PathRootsSubscriberTest in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/EventSubscriber/PathRootsSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\PathRootsSubscriberTest

@coversDefaultClass \Drupal\Core\EventSubscriber\PathRootsSubscriber @group EventSubscriber

Hierarchy

Expanded class hierarchy of PathRootsSubscriberTest

File

core/tests/Drupal/Tests/Core/EventSubscriber/PathRootsSubscriberTest.php, line 20
Contains \Drupal\Tests\Core\EventSubscriber\PathRootsSubscriberTest.

Namespace

Drupal\Tests\Core\EventSubscriber
View source
class PathRootsSubscriberTest extends UnitTestCase {

  /**
   * The mocked state.
   *
   * @var \Drupal\Core\State\StateInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $state;

  /**
   * The tested path root subscriber.
   *
   * @var \Drupal\Core\EventSubscriber\PathRootsSubscriber
   */
  protected $pathRootsSubscriber;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    $this->state = $this
      ->getMock('Drupal\\Core\\State\\StateInterface');
    $this->pathRootsSubscriber = new PathRootsSubscriber($this->state);
  }

  /**
   * Tests altering and finished event.
   *
   * @covers ::onRouteAlter
   * @covers ::onRouteFinished
   */
  public function testSubscribing() {
    $route_collection = new RouteCollection();
    $route_collection
      ->add('test_route1', new Route('/test/bar'));
    $route_collection
      ->add('test_route2', new Route('/test/baz'));
    $route_collection
      ->add('test_route3', new Route('/test2/bar/baz'));
    $event = new RouteBuildEvent($route_collection, 'provider');
    $this->pathRootsSubscriber
      ->onRouteAlter($event);
    $route_collection = new RouteCollection();
    $route_collection
      ->add('test_route4', new Route('/test1/bar'));
    $route_collection
      ->add('test_route5', new Route('/test2/baz'));
    $route_collection
      ->add('test_route6', new Route('/test2/bar/baz'));
    $event = new RouteBuildEvent($route_collection, 'provider');
    $this->pathRootsSubscriber
      ->onRouteAlter($event);
    $this->state
      ->expects($this
      ->once())
      ->method('set')
      ->with('router.path_roots', array(
      'test',
      'test2',
      'test1',
    ));
    $this->pathRootsSubscriber
      ->onRouteFinished();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PathRootsSubscriberTest::$pathRootsSubscriber protected property The tested path root subscriber.
PathRootsSubscriberTest::$state protected property The mocked state.
PathRootsSubscriberTest::setUp protected function Overrides UnitTestCase::setUp
PathRootsSubscriberTest::testSubscribing public function Tests altering and finished event.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root.
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName protected function Mocks a block with a block plugin.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in 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.