public function KeyValueEntityStorageTest::testLoadMultipleAll in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Entity/KeyValueStore/KeyValueEntityStorageTest.php \Drupal\Tests\Core\Entity\KeyValueStore\KeyValueEntityStorageTest::testLoadMultipleAll()
@covers ::loadMultiple @covers ::postLoad @covers ::mapFromStorageRecords @covers ::doLoadMultiple
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ KeyValueStore/ KeyValueEntityStorageTest.php, line 538 - Contains \Drupal\Tests\Core\Entity\KeyValueStore\KeyValueEntityStorageTest.
Class
- KeyValueEntityStorageTest
- @coversDefaultClass \Drupal\Core\Entity\KeyValueStore\KeyValueEntityStorage @group Entity
Namespace
Drupal\Tests\Core\Entity\KeyValueStoreCode
public function testLoadMultipleAll() {
$expected['foo'] = $this
->getMockEntity('Drupal\\Core\\Entity\\Entity', array(
array(
'id' => 'foo',
),
));
$expected['bar'] = $this
->getMockEntity('Drupal\\Core\\Entity\\Entity', array(
array(
'id' => 'bar',
),
));
$this->entityType
->expects($this
->once())
->method('getClass')
->will($this
->returnValue(get_class(reset($expected))));
$this
->setUpKeyValueEntityStorage();
$this->keyValueStore
->expects($this
->once())
->method('getAll')
->will($this
->returnValue(array(
array(
'id' => 'foo',
),
array(
'id' => 'bar',
),
)));
$this->moduleHandler
->expects($this
->at(0))
->method('getImplementations')
->with('entity_load')
->will($this
->returnValue(array()));
$this->moduleHandler
->expects($this
->at(1))
->method('getImplementations')
->with('test_entity_type_load')
->will($this
->returnValue(array()));
$entities = $this->entityStorage
->loadMultiple();
foreach ($entities as $id => $entity) {
$this
->assertInstanceOf('Drupal\\Core\\Entity\\EntityInterface', $entity);
$this
->assertSame($id, $entity
->id());
$this
->assertSame($id, $expected[$id]
->id());
}
}