class EntityRepositoryTest in Drupal 10
Same name in this branch
- 10 core/tests/Drupal/Tests/Core/Entity/EntityRepositoryTest.php \Drupal\Tests\Core\Entity\EntityRepositoryTest
 - 10 core/tests/Drupal/KernelTests/Core/Entity/EntityRepositoryTest.php \Drupal\KernelTests\Core\Entity\EntityRepositoryTest
 
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Entity/EntityRepositoryTest.php \Drupal\Tests\Core\Entity\EntityRepositoryTest
 - 9 core/tests/Drupal/Tests/Core/Entity/EntityRepositoryTest.php \Drupal\Tests\Core\Entity\EntityRepositoryTest
 
@coversDefaultClass \Drupal\Core\Entity\EntityRepository @group Entity
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, \Drupal\Tests\PhpUnitCompatibilityTrait, PhpUnitWarnings
- class \Drupal\Tests\Core\Entity\EntityRepositoryTest
 
 
Expanded class hierarchy of EntityRepositoryTest
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityRepositoryTest.php, line 19  
Namespace
Drupal\Tests\Core\EntityView source
class EntityRepositoryTest extends UnitTestCase {
  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface|\Prophecy\Prophecy\ProphecyInterface
   */
  protected $entityTypeManager;
  /**
   * The language manager.
   *
   * @var \Drupal\Core\Language\LanguageManagerInterface|\Prophecy\Prophecy\ProphecyInterface
   */
  protected $languageManager;
  /**
   * The context repository.
   *
   * @var \Drupal\Core\Plugin\Context\ContextRepositoryInterface|\Prophecy\Prophecy\ProphecyInterface
   */
  protected $contextRepository;
  /**
   * The entity repository under test.
   *
   * @var \Drupal\Core\Entity\EntityRepository
   */
  protected $entityRepository;
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->entityTypeManager = $this
      ->prophesize(EntityTypeManagerInterface::class);
    $this->languageManager = $this
      ->prophesize(LanguageManagerInterface::class);
    $this->contextRepository = $this
      ->prophesize(ContextRepositoryInterface::class);
    $this->entityRepository = new EntityRepository($this->entityTypeManager
      ->reveal(), $this->languageManager
      ->reveal(), $this->contextRepository
      ->reveal());
  }
  /**
   * Tests the getTranslationFromContext() method.
   *
   * @covers ::getTranslationFromContext
   */
  public function testGetTranslationFromContext() {
    $language = new Language([
      'id' => 'en',
    ]);
    $this->languageManager
      ->getCurrentLanguage(LanguageInterface::TYPE_CONTENT)
      ->willReturn($language)
      ->shouldBeCalledTimes(1);
    $this->languageManager
      ->getFallbackCandidates(Argument::type('array'))
      ->will(function ($args) {
      $context = $args[0];
      $candidates = [];
      if (!empty($context['langcode'])) {
        $candidates[$context['langcode']] = $context['langcode'];
      }
      return $candidates;
    })
      ->shouldBeCalledTimes(1);
    $translated_entity = $this
      ->prophesize(ContentEntityInterface::class);
    $entity = $this
      ->prophesize(ContentEntityInterface::class);
    $entity
      ->getUntranslated()
      ->willReturn($entity);
    $entity
      ->language()
      ->willReturn($language);
    $entity
      ->hasTranslation(LanguageInterface::LANGCODE_DEFAULT)
      ->willReturn(FALSE);
    $entity
      ->hasTranslation('custom_langcode')
      ->willReturn(TRUE);
    $entity
      ->getTranslation('custom_langcode')
      ->willReturn($translated_entity
      ->reveal());
    $entity
      ->getTranslationLanguages()
      ->willReturn([
      new Language([
        'id' => 'en',
      ]),
      new Language([
        'id' => 'custom_langcode',
      ]),
    ]);
    $entity
      ->addCacheContexts([
      'languages:language_content',
    ])
      ->shouldBeCalled();
    $this
      ->assertSame($entity
      ->reveal(), $this->entityRepository
      ->getTranslationFromContext($entity
      ->reveal()));
    $this
      ->assertSame($translated_entity
      ->reveal(), $this->entityRepository
      ->getTranslationFromContext($entity
      ->reveal(), 'custom_langcode'));
  }
}Members
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            EntityRepositoryTest:: | 
                  protected | property | The context repository. | |
| 
            EntityRepositoryTest:: | 
                  protected | property | The entity repository under test. | |
| 
            EntityRepositoryTest:: | 
                  protected | property | The entity type manager. | |
| 
            EntityRepositoryTest:: | 
                  protected | property | The language manager. | |
| 
            EntityRepositoryTest:: | 
                  protected | function | 
            Overrides UnitTestCase:: | 
                  |
| 
            EntityRepositoryTest:: | 
                  public | function | Tests the getTranslationFromContext() method. | |
| 
            PhpUnitWarnings:: | 
                  private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
| 
            PhpUnitWarnings:: | 
                  public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
| 
            UnitTestCase:: | 
                  protected | property | The random generator. | |
| 
            UnitTestCase:: | 
                  protected | property | The app root. | 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:: | 
                  public static | function |