You are here

class ConfigSelectorTest in Configuration selector 8

Same name in this branch
  1. 8 tests/src/Unit/ConfigSelectorTest.php \Drupal\Tests\config_selector\Unit\ConfigSelectorTest
  2. 8 tests/src/Kernel/ConfigSelectorTest.php \Drupal\Tests\config_selector\Kernel\ConfigSelectorTest
Same name and namespace in other branches
  1. 8.2 tests/src/Unit/ConfigSelectorTest.php \Drupal\Tests\config_selector\Unit\ConfigSelectorTest

Tests the ConfigSelector.

@group config_selector

@coversDefaultClass \Drupal\config_selector\ConfigSelector

Hierarchy

Expanded class hierarchy of ConfigSelectorTest

File

tests/src/Unit/ConfigSelectorTest.php, line 18

Namespace

Drupal\Tests\config_selector\Unit
View source
class ConfigSelectorTest extends UnitTestCase {

  /**
   * @covers ::getConfigEntityLink
   */
  public function testGetConfigEntityLinkToUrlEditForm() {
    $config_entity = $this
      ->prophesize(ConfigEntityInterface::class);
    $config_entity
      ->hasLinkTemplate('edit-form')
      ->willReturn(TRUE);
    $url = $this
      ->prophesize(Url::class);
    $url
      ->toString()
      ->willReturn('a/link/to/an/edit-form');
    $config_entity
      ->toUrl('edit-form')
      ->willReturn($url);
    $config_entity
      ->toUrl()
      ->shouldNotBeCalled();
    $this
      ->assertEquals('a/link/to/an/edit-form', ConfigSelector::getConfigEntityLink($config_entity
      ->reveal()));
  }

  /**
   * @covers ::getConfigEntityLink
   */
  public function testGetConfigEntityLinkToUrlCanonical() {
    $config_entity = $this
      ->prophesize(ConfigEntityInterface::class);
    $config_entity
      ->hasLinkTemplate('edit-form')
      ->willReturn(FALSE);
    $url = $this
      ->prophesize(Url::class);
    $url
      ->toString()
      ->willReturn('a/link/to/canonical');
    $config_entity
      ->toUrl()
      ->willReturn($url);
    $config_entity
      ->toUrl('edit-form')
      ->shouldNotBeCalled();
    $this
      ->assertEquals('a/link/to/canonical', ConfigSelector::getConfigEntityLink($config_entity
      ->reveal()));
  }

  /**
   * @covers ::getConfigEntityLink
   */
  public function testGetConfigEntityLinkToUrlException() {
    $config_entity = $this
      ->prophesize(ConfigEntityInterface::class);
    $config_entity
      ->hasLinkTemplate('edit-form')
      ->willReturn(FALSE);
    $config_entity
      ->toUrl()
      ->willThrow(UndefinedLinkTemplateException::class);
    $this
      ->assertEquals('', ConfigSelector::getConfigEntityLink($config_entity
      ->reveal()));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigSelectorTest::testGetConfigEntityLinkToUrlCanonical public function @covers ::getConfigEntityLink
ConfigSelectorTest::testGetConfigEntityLinkToUrlEditForm public function @covers ::getConfigEntityLink
ConfigSelectorTest::testGetConfigEntityLinkToUrlException public function @covers ::getConfigEntityLink
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