class EntityUrlTest

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php \Drupal\Tests\Core\Entity\EntityUrlTest
  2. 8.9.x core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php \Drupal\Tests\Core\Entity\EntityUrlTest
  3. 11.x core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php \Drupal\Tests\Core\Entity\EntityUrlTest

Tests URL handling of the \Drupal\Core\Entity\EntityBase class.

@coversDefaultClass \Drupal\Core\Entity\EntityBase

@group Entity

Hierarchy

Expanded class hierarchy of EntityUrlTest

File

core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php, line 27

Namespace

Drupal\Tests\Core\Entity
View source
class EntityUrlTest extends UnitTestCase {
  
  /**
   * The entity type bundle info service mock used in this test.
   *
   * @var \Prophecy\Prophecy\ProphecyInterface|\Drupal\Core\Entity\EntityTypeBundleInfoInterface
   */
  protected $entityTypeBundleInfo;
  
  /**
   * The ID of the entity type used in this test.
   */
  const ENTITY_TYPE_ID = 'test_entity';
  
  /**
   * The entity type mock used in this test.
   *
   * @var \Prophecy\Prophecy\ProphecyInterface|\Drupal\Core\Entity\EntityTypeInterface
   */
  protected $entityType;
  
  /**
   * The ID of the entity used in this test.
   */
  const ENTITY_ID = 1;
  
  /**
   * The revision ID of the entity used in this test.
   */
  const REVISION_ID = 2;
  
  /**
   * The language code of the entity used in this test.
   *
   * @var string
   */
  protected $langcode = 'en';
  
  /**
   * Indicator for default revisions.
   *
   * @var true
   */
  const DEFAULT_REVISION = TRUE;
  
  /**
   * Indicator for non-default revisions.
   *
   * @var false
   */
  const NON_DEFAULT_REVISION = FALSE;
  
  /**
   * Indicator that the test entity type has no bundle key.
   *
   * @var false
   */
  const HAS_NO_BUNDLE_KEY = FALSE;
  
  /**
   * Indicator that the test entity type has a bundle key.
   *
   * @var true
   */
  const HAS_BUNDLE_KEY = TRUE;
  
  /**
   * Tests the toUrl() method without an entity ID.
   *
   * @covers ::toUrl
   */
  public function testToUrlNoId() : void {
    $entity = $this->getEntity(UrlTestEntity::class, []);
    $this->expectException(EntityMalformedException::class);
    $this->expectExceptionMessage('The "' . static::ENTITY_TYPE_ID . '" entity cannot have a URI as it does not have an ID');
    $entity->toUrl();
  }
  
  /**
   * Tests the toUrl() method without specifying the $rel parameter.
   *
   * It should throw an exception when neither canonical and edit-form link
   * templates exist if no parameters are passed in.
   *
   * @covers ::toUrl
   */
  public function testToUrlDefaultException() : void {
    $values = [
      'id' => static::ENTITY_ID,
    ];
    $entity = $this->getEntity(UrlTestEntity::class, $values);
    $this->entityType
      ->getUriCallback()
      ->willReturn(NULL);
    $this->expectException(UndefinedLinkTemplateException::class);
    $this->expectExceptionMessage("Cannot generate default URL because no link template 'canonical' or 'edit-form' was found for the '" . static::ENTITY_TYPE_ID . "' entity type");
    $entity->toUrl();
  }
  
  /**
   * Tests the toUrl() method without specifying the $rel parameter.
   *
   * It should return the edit-form or canonical link templates by default if
   * they are registered.
   *
   * @covers ::toUrl
   */
  public function testToUrlDefaultFallback() : void {
    $values = [
      'id' => static::ENTITY_ID,
      'langcode' => $this->langcode,
    ];
    $entity = $this->getEntity(UrlTestEntity::class, $values);
    $this->registerLinkTemplate('edit-form');
    /** @var \Drupal\Core\Url $url */
    $url = $entity->toUrl();
    $this->assertUrl('entity.test_entity.edit_form', [
      'test_entity' => static::ENTITY_ID,
    ], $entity, TRUE, $url);
    $this->registerLinkTemplate('canonical');
    /** @var \Drupal\Core\Url $url */
    $url = $entity->toUrl();
    $this->assertUrl('entity.test_entity.canonical', [
      'test_entity' => static::ENTITY_ID,
    ], $entity, TRUE, $url);
    // Register multiple link templates with 2 that share the same path.
    $this->entityType
      ->getLinkTemplates()
      ->willReturn([
      'canonical' => "/test-entity/{test_entity}/canonical",
      'edit-form' => "/test-entity/{test_entity}/edit-form",
      'foobar' => "/test-entity/{test_entity}/canonical",
    ]);
    $url = $entity->toUrl();
    $this->assertUrl('entity.test_entity.canonical', [
      'test_entity' => static::ENTITY_ID,
    ], $entity, TRUE, $url);
  }
  
  /**
   * Tests the toUrl() method with simple link templates.
   *
   * @param string $link_template
   *   The link template to test.
   * @param string $expected_route_name
   *   The expected route name of the generated URL.
   *
   * @dataProvider providerTestToUrlLinkTemplates
   *
   * @covers ::toUrl
   * @covers ::linkTemplates
   * @covers ::urlRouteParameters
   */
  public function testToUrlLinkTemplates($link_template, $expected_route_name) : void {
    $values = [
      'id' => static::ENTITY_ID,
      'langcode' => $this->langcode,
    ];
    $entity = $this->getEntity(UrlTestEntity::class, $values);
    $this->registerLinkTemplate($link_template);
    /** @var \Drupal\Core\Url $url */
    $url = $entity->toUrl($link_template);
    // The entity ID is the sole route parameter for the link templates tested
    // here.
    $this->assertUrl($expected_route_name, [
      'test_entity' => static::ENTITY_ID,
    ], $entity, TRUE, $url);
  }
  
  /**
   * Provides data for testToUrlLinkTemplates().
   *
   * @return array
   *   An array of test cases for testToUrlLinkTemplates().
   */
  public static function providerTestToUrlLinkTemplates() {
    $test_cases = [];
    $test_cases['canonical'] = [
      'canonical',
      'entity.test_entity.canonical',
    ];
    $test_cases['version-history'] = [
      'version-history',
      'entity.test_entity.version_history',
    ];
    $test_cases['edit-form'] = [
      'edit-form',
      'entity.test_entity.edit_form',
    ];
    $test_cases['delete-form'] = [
      'delete-form',
      'entity.test_entity.delete_form',
    ];
    $test_cases['revision'] = [
      'revision',
      'entity.test_entity.revision',
    ];
    return $test_cases;
  }
  
  /**
   * Tests the toUrl() method with the 'revision' link template.
   *
   * @param bool $is_default_revision
   *   Whether or not the mock entity should be the default revision.
   * @param string $link_template
   *   The link template to test.
   * @param string $expected_route_name
   *   The expected route name of the generated URL.
   * @param array $expected_route_parameters
   *   The expected route parameters of the generated URL.
   *
   * @dataProvider providerTestToUrlLinkTemplateRevision
   *
   * @covers ::toUrl
   * @covers ::linkTemplates
   * @covers ::urlRouteParameters
   */
  public function testToUrlLinkTemplateRevision(bool $is_default_revision, string $link_template, string $expected_route_name, array $expected_route_parameters) : void {
    $values = [
      'id' => static::ENTITY_ID,
      'langcode' => $this->langcode,
    ];
    $entity = $this->getEntity(RevisionableEntity::class, $values);
    $entity->method('getRevisionId')
      ->willReturn(static::REVISION_ID);
    $entity->method('isDefaultRevision')
      ->willReturn($is_default_revision);
    $this->registerLinkTemplate($link_template);
    // Even though this is tested with both the 'canonical' and the 'revision'
    // template registered with the entity, we ask for the 'revision' link
    // template instead of 'canonical', to test that it falls back to the
    // 'canonical' link template in case of the default revision.
    $link_template = $link_template === 'canonical' ? 'revision' : $link_template;
    /** @var \Drupal\Core\Url $url */
    $url = $entity->toUrl($link_template);
    $this->assertUrl($expected_route_name, $expected_route_parameters, $entity, TRUE, $url);
  }
  
  /**
   * Provides data for testToUrlLinkTemplateRevision().
   *
   * @return array
   *   An array of test cases for testToUrlLinkTemplateRevision().
   */
  public static function providerTestToUrlLinkTemplateRevision() : array {
    $test_cases = [];
    $route_parameters = [
      'test_entity' => static::ENTITY_ID,
    ];
    $test_cases['default_revision'] = [
      static::DEFAULT_REVISION,
      'canonical',
      'entity.test_entity.canonical',
      $route_parameters,
    ];
    // Add the revision ID to the expected route parameters.
    $route_parameters['test_entity_revision'] = static::REVISION_ID;
    $test_cases['non_default_revision'] = [
      static::NON_DEFAULT_REVISION,
      'revision',
      'entity.test_entity.revision',
      $route_parameters,
    ];
    $test_cases['revision-delete'] = [
      static::NON_DEFAULT_REVISION,
      'revision-delete-form',
      'entity.test_entity.revision_delete_form',
      $route_parameters,
    ];
    return $test_cases;
  }
  
  /**
   * Tests the toUrl() method with link templates without an entity ID.
   *
   * @param string $link_template
   *   The link template to test.
   * @param string $expected_route_name
   *   The expected route name of the generated URL.
   *
   * @dataProvider providerTestToUrlLinkTemplateNoId
   *
   * @covers ::toUrl
   * @covers ::linkTemplates
   * @covers ::urlRouteParameters
   */
  public function testToUrlLinkTemplateNoId($link_template, $expected_route_name) : void {
    $entity = $this->getEntity(UrlTestEntity::class, [
      'id' => static::ENTITY_ID,
    ]);
    $this->registerLinkTemplate($link_template);
    /** @var \Drupal\Core\Url $url */
    $url = $entity->toUrl($link_template);
    $this->assertUrl($expected_route_name, [], $entity, FALSE, $url);
  }
  
  /**
   * Provides data for testToUrlLinkTemplateNoId().
   *
   * @return array
   *   An array of test cases for testToUrlLinkTemplateNoId().
   */
  public static function providerTestToUrlLinkTemplateNoId() {
    $test_cases = [];
    $test_cases['collection'] = [
      'collection',
      'entity.test_entity.collection',
    ];
    $test_cases['add-page'] = [
      'add-page',
      'entity.test_entity.add_page',
    ];
    return $test_cases;
  }
  
  /**
   * Tests the toUrl() method with the 'revision' link template.
   *
   * @param bool $has_bundle_key
   *   Whether or not the mock entity type should have a bundle key.
   * @param string|null $bundle_entity_type
   *   The ID of the bundle entity type of the mock entity type, or NULL if the
   *   mock entity type should not have a bundle entity type.
   * @param string|false $bundle_key
   *   The bundle key of the mock entity type or FALSE if the entity type should
   *   not have a bundle key.
   * @param array $expected_route_parameters
   *   The expected route parameters of the generated URL.
   *
   * @dataProvider providerTestToUrlLinkTemplateAddForm
   *
   * @covers ::toUrl
   * @covers ::linkTemplates
   * @covers ::urlRouteParameters
   */
  public function testToUrlLinkTemplateAddForm(bool $has_bundle_key, ?string $bundle_entity_type, string|false $bundle_key, array $expected_route_parameters) : void {
    $values = [
      'id' => static::ENTITY_ID,
      'langcode' => $this->langcode,
    ];
    $entity = $this->getEntity(UrlTestEntity::class, $values);
    $this->entityType
      ->hasKey('bundle')
      ->willReturn($has_bundle_key);
    $this->entityType
      ->getBundleEntityType()
      ->willReturn($bundle_entity_type);
    $this->entityType
      ->getKey('bundle')
      ->willReturn($bundle_key);
    $link_template = 'add-form';
    $this->registerLinkTemplate($link_template);
    /** @var \Drupal\Core\Url $url */
    $url = $entity->toUrl($link_template);
    $this->assertUrl('entity.test_entity.add_form', $expected_route_parameters, $entity, FALSE, $url);
  }
  
  /**
   * Provides data for testToUrlLinkTemplateAddForm().
   *
   * @return array
   *   An array of test cases for testToUrlLinkTemplateAddForm().
   */
  public static function providerTestToUrlLinkTemplateAddForm() : array {
    $test_cases = [];
    $route_parameters = [];
    $test_cases['no_bundle_key'] = [
      static::HAS_NO_BUNDLE_KEY,
      NULL,
      FALSE,
      $route_parameters,
    ];
    $route_parameters = [
      'type' => static::ENTITY_TYPE_ID,
    ];
    $test_cases['bundle_entity_type'] = [
      static::HAS_BUNDLE_KEY,
      'type',
      FALSE,
      $route_parameters,
    ];
    $test_cases['bundle_key'] = [
      static::HAS_BUNDLE_KEY,
      NULL,
      'type',
      $route_parameters,
    ];
    return $test_cases;
  }
  
  /**
   * Tests the toUrl() method with neither link templates nor a URI callback.
   *
   * @param array $bundle_info
   *   An array of bundle info to register.
   * @param string $uri_callback
   *   The entity type URI callback to register.
   *
   * @dataProvider providerTestToUrlUriCallbackUndefined
   *
   * @covers ::toUrl
   * @covers ::linkTemplates
   */
  public function testToUrlUriCallbackUndefined(array $bundle_info, $uri_callback) : void {
    $entity = $this->getEntity(UrlTestEntity::class, [
      'id' => static::ENTITY_ID,
    ]);
    $this->registerBundleInfo($bundle_info);
    $this->entityType
      ->getUriCallback()
      ->willReturn($uri_callback);
    $link_template = 'canonical';
    $this->expectException(UndefinedLinkTemplateException::class);
    $this->expectExceptionMessage("No link template '{$link_template}' found for the '" . static::ENTITY_TYPE_ID . "' entity type");
    $entity->toUrl($link_template);
  }
  
  /**
   * Provides data for testToUrlUriCallbackUndefined().
   *
   * @return array
   *   An array of test cases for testToUrlUriCallbackUndefined().
   */
  public static function providerTestToUrlUriCallbackUndefined() {
    $test_cases = [];
    $test_cases['no_callback'] = [
      [],
      NULL,
    ];
    $test_cases['uri_callback'] = [
      [],
      'not_a_callable',
    ];
    $test_cases['bundle_uri_callback'] = [
      [
        'uri_callback' => 'not_a_callable',
      ],
      NULL,
    ];
    return $test_cases;
  }
  
  /**
   * Tests the toUrl() method with a URI callback.
   *
   * @param array $bundle_info
   *   An array of bundle info to register.
   * @param \Closure|null $uri_callback
   *   The entity type URI callback to register.
   *
   * @covers ::toUrl
   * @covers ::linkTemplates
   *
   * @dataProvider providerTestToUrlUriCallback
   */
  public function testToUrlUriCallback(array $bundle_info, ?\Closure $uri_callback) : void {
    $entity = $this->getEntity(UrlTestEntity::class, [
      'id' => static::ENTITY_ID,
      'langcode' => $this->langcode,
    ]);
    $this->registerBundleInfo($bundle_info);
    $this->entityType
      ->getUriCallback()
      ->willReturn($uri_callback);
    /** @var \Drupal\Core\Url $url */
    $url = $entity->toUrl('canonical');
    $this->assertUrl('<none>', [], $entity, TRUE, $url);
    $url = $entity->toUrl();
    $this->assertUrl('<none>', [], $entity, TRUE, $url);
  }
  
  /**
   * Provides data for testToUrlUriCallback().
   *
   * @return array
   *   An array of test cases for testToUrlUriCallback().
   */
  public static function providerTestToUrlUriCallback() : array {
    $test_cases = [];
    $uri_callback = function () {
      return Url::fromRoute('<none>');
    };
    $test_cases['uri_callback'] = [
      [],
      $uri_callback,
    ];
    $test_cases['bundle_uri_callback'] = [
      [
        'uri_callback' => $uri_callback,
      ],
      NULL,
    ];
    return $test_cases;
  }
  
  /**
   * Tests the uriRelationships() method.
   *
   * @covers ::uriRelationships
   */
  public function testUriRelationships() : void {
    $entity = $this->getEntity(UrlTestEntity::class, [
      'id' => static::ENTITY_ID,
    ]);
    $container_builder = new ContainerBuilder();
    $url_generator = $this->createMock(UrlGeneratorInterface::class);
    $container_builder->set('url_generator', $url_generator);
    \Drupal::setContainer($container_builder);
    // Test route with no mandatory parameters.
    $this->registerLinkTemplate('canonical');
    $route_name_0 = 'entity.' . static::ENTITY_TYPE_ID . '.canonical';
    $url_generator->expects($this->any())
      ->method('generateFromRoute')
      ->with($route_name_0)
      ->willReturn((new GeneratedUrl())->setGeneratedUrl('/entity_test'));
    $this->assertEquals([
      'canonical',
    ], $entity->uriRelationships());
    // Test route with non-default mandatory parameters.
    $this->registerLinkTemplate('{non_default_parameter}');
    $route_name_1 = 'entity.' . static::ENTITY_TYPE_ID . '.{non_default_parameter}';
    $url_generator->expects($this->any())
      ->method('generateFromRoute')
      ->with($route_name_1)
      ->willThrowException(new MissingMandatoryParametersException($route_name_1, [
      'missing_parameter',
    ]));
    $this->assertEquals([], $entity->uriRelationships());
  }
  
  /**
   * Returns a mock entity for testing.
   *
   * @param string $class
   *   The class name to mock. Should be \Drupal\Tests\Core\Entity\UrlTestEntity
   *   or a subclass.
   * @param array $values
   *   An array of entity values to construct the mock entity with.
   * @param array $methods
   *   (optional) An array of additional methods to mock on the entity object.
   *   The getEntityType() and entityTypeBundleInfo() methods are always mocked.
   *
   * @return \Drupal\Tests\Core\Entity\UrlTestEntity|\PHPUnit\Framework\MockObject\MockObject
   */
  protected function getEntity($class, array $values, array $methods = []) {
    $methods = array_merge($methods, [
      'getEntityType',
      'entityTypeBundleInfo',
    ]);
    // Prophecy does not allow prophesizing abstract classes while actually
    // calling their code. We use Prophecy below because that allows us to
    // add method prophecies later while still revealing the prophecy now.
    $entity = $this->getMockBuilder($class)
      ->setConstructorArgs([
      $values,
      static::ENTITY_TYPE_ID,
    ])
      ->onlyMethods($methods)
      ->getMockForAbstractClass();
    $this->entityType = $this->prophesize(EntityTypeInterface::class);
    $this->entityType
      ->getLinkTemplates()
      ->willReturn([]);
    $this->entityType
      ->getKey('langcode')
      ->willReturn(FALSE);
    $entity->method('getEntityType')
      ->willReturn($this->entityType
      ->reveal());
    $this->entityTypeBundleInfo = $this->prophesize(EntityTypeBundleInfoInterface::class);
    $entity->method('entityTypeBundleInfo')
      ->willReturn($this->entityTypeBundleInfo
      ->reveal());
    return $entity;
  }
  
  /**
   * Asserts that a given URL object matches the expectations.
   *
   * @param string $expected_route_name
   *   The expected route name of the generated URL.
   * @param array $expected_route_parameters
   *   The expected route parameters of the generated URL.
   * @param \Drupal\Tests\Core\Entity\UrlTestEntity|\PHPUnit\Framework\MockObject\MockObject $entity
   *   The entity that is expected to be set as a URL option.
   * @param bool $has_language
   *   Whether or not the URL is expected to have a language option.
   * @param \Drupal\Core\Url $url
   *   The URL option to make the assertions on.
   *
   * @internal
   */
  protected function assertUrl(string $expected_route_name, array $expected_route_parameters, $entity, bool $has_language, Url $url) : void {
    $this->assertEquals($expected_route_name, $url->getRouteName());
    $this->assertEquals($expected_route_parameters, $url->getRouteParameters());
    $this->assertEquals(static::ENTITY_TYPE_ID, $url->getOption('entity_type'));
    $this->assertEquals($entity, $url->getOption('entity'));
    if ($has_language) {
      $this->assertEquals($this->langcode, $url->getOption('language')
        ->getId());
    }
    else {
      $this->assertNull($url->getOption('language'));
    }
  }
  
  /**
   * Registers a link template for the mock entity.
   *
   * @param string $link_template
   *   The link template to register.
   */
  protected function registerLinkTemplate($link_template) {
    $link_templates = [
      // The path is actually never used because we never invoke the URL
      // generator but perform assertions on the URL object directly.
$link_template => "/test-entity/{test_entity}/{$link_template}",
    ];
    $this->entityType
      ->getLinkTemplates()
      ->willReturn($link_templates);
  }
  
  /**
   * Registers bundle information for the mock entity type.
   *
   * @param array $bundle_info
   *   The bundle information to register.
   */
  protected function registerBundleInfo($bundle_info) {
    $this->entityTypeBundleInfo
      ->getBundleInfo(static::ENTITY_TYPE_ID)
      ->willReturn([
      static::ENTITY_TYPE_ID => $bundle_info,
    ]);
  }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overrides
EntityUrlTest::$entityType protected property The entity type mock used in this test.
EntityUrlTest::$entityTypeBundleInfo protected property The entity type bundle info service mock used in this test.
EntityUrlTest::$langcode protected property The language code of the entity used in this test.
EntityUrlTest::assertUrl protected function Asserts that a given URL object matches the expectations.
EntityUrlTest::DEFAULT_REVISION constant Indicator for default revisions.
EntityUrlTest::ENTITY_ID constant The ID of the entity used in this test.
EntityUrlTest::ENTITY_TYPE_ID constant The ID of the entity type used in this test.
EntityUrlTest::getEntity protected function Returns a mock entity for testing.
EntityUrlTest::HAS_BUNDLE_KEY constant Indicator that the test entity type has a bundle key.
EntityUrlTest::HAS_NO_BUNDLE_KEY constant Indicator that the test entity type has no bundle key.
EntityUrlTest::NON_DEFAULT_REVISION constant Indicator for non-default revisions.
EntityUrlTest::providerTestToUrlLinkTemplateAddForm public static function Provides data for testToUrlLinkTemplateAddForm().
EntityUrlTest::providerTestToUrlLinkTemplateNoId public static function Provides data for testToUrlLinkTemplateNoId().
EntityUrlTest::providerTestToUrlLinkTemplateRevision public static function Provides data for testToUrlLinkTemplateRevision().
EntityUrlTest::providerTestToUrlLinkTemplates public static function Provides data for testToUrlLinkTemplates().
EntityUrlTest::providerTestToUrlUriCallback public static function Provides data for testToUrlUriCallback().
EntityUrlTest::providerTestToUrlUriCallbackUndefined public static function Provides data for testToUrlUriCallbackUndefined().
EntityUrlTest::registerBundleInfo protected function Registers bundle information for the mock entity type.
EntityUrlTest::registerLinkTemplate protected function Registers a link template for the mock entity.
EntityUrlTest::REVISION_ID constant The revision ID of the entity used in this test.
EntityUrlTest::testToUrlDefaultException public function Tests the toUrl() method without specifying the $rel parameter.
EntityUrlTest::testToUrlDefaultFallback public function Tests the toUrl() method without specifying the $rel parameter.
EntityUrlTest::testToUrlLinkTemplateAddForm public function Tests the toUrl() method with the &#039;revision&#039; link template.
EntityUrlTest::testToUrlLinkTemplateNoId public function Tests the toUrl() method with link templates without an entity ID.
EntityUrlTest::testToUrlLinkTemplateRevision public function Tests the toUrl() method with the &#039;revision&#039; link template.
EntityUrlTest::testToUrlLinkTemplates public function Tests the toUrl() method with simple link templates.
EntityUrlTest::testToUrlNoId public function Tests the toUrl() method without an entity ID.
EntityUrlTest::testToUrlUriCallback public function Tests the toUrl() method with a URI callback.
EntityUrlTest::testToUrlUriCallbackUndefined public function Tests the toUrl() method with neither link templates nor a URI callback.
EntityUrlTest::testUriRelationships public function Tests the uriRelationships() method.
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate Deprecated public function Callback for random string validation.
UnitTestCase::$root protected property The app root. 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::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::setUp protected function 358
UnitTestCase::setUpBeforeClass public static function
UnitTestCase::__get public function

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