class EntityRepositoryTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Entity/EntityRepositoryTest.php \Drupal\Tests\Core\Entity\EntityRepositoryTest
@coversDefaultClass \Drupal\Core\Entity\EntityManager @group Entity
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Entity\EntityRepositoryTest
Expanded class hierarchy of EntityRepositoryTest
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityRepositoryTest.php, line 23 - Contains \Drupal\Tests\Core\Entity\EntityRepositoryTest.
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 entity repository under test.
*
* @var \Drupal\Core\Entity\EntityRepository
*/
protected $entityRepository;
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->entityTypeManager = $this
->prophesize(EntityTypeManagerInterface::class);
$this->languageManager = $this
->prophesize(LanguageManagerInterface::class);
$this->entityRepository = new EntityRepository($this->entityTypeManager
->reveal(), $this->languageManager
->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 = array();
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 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. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in 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. |