Skip to content
Snippets Groups Projects
Verified Commit 112de039 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2464041 by Mile23, quietone, andrewsuth: Test unit behavior of...

Issue #2464041 by Mile23, quietone, andrewsuth: Test unit behavior of EntityStorageBase::load(), loadMultiple() with invalid ID, UUID

(cherry picked from commit 50ddf37f)
parent 76ca2c36
Branches
Tags
33 merge requests!8394[warning] array_flip(): Can only flip STRING and INTEGER values, when saving a non-revisionable custom content entity,!7780issue 3443822: fix for 'No route found for the specified format html. Supported formats: json, xml.',!7416Simplify the HTML of field.html.twig,!7150Revert "Issue #3137119 by munish.kumar, johnwebdev, Jaypan, jungle, xjm,...,!5013Issue #3071143: Table Render Array Example Is Incorrect,!4848Issue #1566662: Update module should send notifications on Thursdays,!4792Issue #2230689: Remove redundant "Italic" style,!4782Issue #2662898: "Links" field not displaying on custom view modes,!4220Issue #3368223: Link field > Access to internal links is not checked on display.,!4173Issue #2123543: Add string context and location filters to the translate interface,!3884Issue #3356842,!3870Issue #3087868,!3812Draft: Issue #3339373 by alexpott, andypost, mondrake:...,!3736Issue #3294005: Refactor Claro's form--password-confirm stylesheet,!3686Issue #3219967 against 9.5.x,!3683Issue #2939397: Clearing AliasManager cache with root path raises warning,!3543Issue #3344259: Allow ajax dialog to have focus configurable,!3356Issue #3209129: Scrolling problems when adding a block via layout builder,!2982Issue #3301562: Translate the default settings for this plugin (TimestampAgoFormatter),!2921Issue #1383696: Allow a custom HTML element to be selected for a grouping field,!2920Issue #3260175: Saving media entity without an owner crashes,!2857Issue #3314541: Remove unnecessary fill from SVG icon for the "Media Library" CKEditor 5 button — enabling dark mode support in contrib,!2841Resolve #3296811 "Resourceresponsetrait needs a",!2803Issue #3041402: Add option absolute url in formatter URL to image,!2280Issue #3280415: Metapackage Generator Breaks Under Composer --no-dev,!2205Quote all names in the regions section.,!2050Issue #3272969: Remove UnqiueField constraint.,!1956Issue #3268872: hook_views_invalidate_cache not called when a view is deleted,!1893Issue #3217260: Add a way to make media captions not editable in CKEditor,!1459Issue #3087632: menu_name max length is too long,!878Issue #3221534: throw an exception when IDs passed to loadMultiple() are badly formed,!866Issue #2845319: The highlighting of the 'Home' menu-link does not respect query strings and fragment identifiers,!204Issue #3040556: It is not possible to react to an entity being duplicated
<?php
namespace Drupal\Tests\Core\Entity;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\Core\Entity\EntityStorageBase
* @group Entity
*/
class EntityStorageBaseTest extends UnitTestCase {
/**
* Generate a mocked entity object.
*
* @param string $id
* ID value for this entity.
*
* @return \Drupal\Core\Entity\EntityInterface|\PHPUnit\Framework\MockObject\MockObject
* The mocked entity.
*/
public function generateEntityInterface($id) {
$mock_entity = $this->getMockBuilder('\Drupal\Core\Entity\EntityInterface')
->onlyMethods(['id'])
->getMockForAbstractClass();
$mock_entity->expects($this->any())
->method('id')
->willReturn((string) $id);
return $mock_entity;
}
/**
* Data provider for testLoad().
*
* @return array
* - Expected output of load().
* - A fixture of entities to query against. Suitable return value for
* loadMultiple().
* - The ID we'll query.
*/
public function providerLoad() {
$data = [];
// Data set for a matching value.
$entity = $this->generateEntityInterface('1');
$data['matching-value'] = [$entity, ['1' => $entity], '1'];
// Data set for no matching value.
$data['no-matching-value'] = [NULL, [], '0'];
return $data;
}
/**
* @covers ::load
*
* @dataProvider providerLoad
*/
public function testLoad($expected, $entity_fixture, $query) {
$mock_base = $this->getMockBuilder('\Drupal\Core\Entity\EntityStorageBase')
->disableOriginalConstructor()
->onlyMethods(['loadMultiple'])
->getMockForAbstractClass();
// load() always calls loadMultiple().
$mock_base->expects($this->once())
->method('loadMultiple')
->with([$query])
->willReturn($entity_fixture);
$this->assertEquals($expected, $mock_base->load($query));
}
/**
* Data provider for testLoadMultiple.
*
* @return array
* - The expected result.
* - Results for doLoadMultiple(), called internally by loadMultiple().
* - The query, an array of IDs.
*/
public function providerLoadMultiple() {
// Create a fixture of entity objects.
$fixture = [];
foreach (range(1, 10) as $index) {
$fixture[(string) $index] = $this->generateEntityInterface($index);
}
$data = [];
// Data set for NULL ID parameter.
$data['null-id-parameter'] = [$fixture, $fixture, NULL];
// Data set for no results.
$data['no-results'] = [[], [], ['11']];
// Data set for 0 results for multiple IDs.
$data['no-results-multiple-ids'] = [[], [], ['11', '12', '13']];
// Data set for 1 result for 1 ID.
$data['1-result-for-1-id'] = [
['1' => $fixture['1']],
['1' => $fixture['1']],
['1'],
];
// Data set for results for all IDs.
$ids = ['1', '2', '3'];
foreach ($ids as $id) {
$expectation[$id] = $fixture[$id];
$load_multiple[$id] = $fixture[$id];
}
$data['results-for-all-ids'] = [$expectation, $load_multiple, $ids];
// Data set for partial results for multiple IDs.
$ids = ['1', '2', '3'];
foreach ($ids as $id) {
$expectation[$id] = $fixture[$id];
$load_multiple[$id] = $fixture[$id];
}
$ids = array_merge($ids, ['11', '12']);
$data['partial-results-for-multiple-ids'] = [
$expectation,
$load_multiple,
$ids,
];
return $data;
}
/**
* Test loadMultiple().
*
* Does not cover statically-cached results.
*
* @covers ::loadMultiple
*
* @dataProvider providerLoadMultiple
*/
public function testLoadMultiple($expected, $load_multiple, $query) {
// Make our EntityStorageBase mock.
$mock_base = $this->getMockBuilder('\Drupal\Core\Entity\EntityStorageBase')
->disableOriginalConstructor()
->onlyMethods(['doLoadMultiple', 'postLoad'])
->getMockForAbstractClass();
// For all non-cached queries, we call doLoadMultiple().
$mock_base->expects($this->once())
->method('doLoadMultiple')
->with($query)
->willReturn($load_multiple);
// Make our EntityTypeInterface mock so that we can turn off static caching.
$mock_entity_type = $this->getMockBuilder('\Drupal\Core\Entity\EntityTypeInterface')
->onlyMethods(['isStaticallyCacheable'])
->getMockForAbstractClass();
// Disallow caching.
$mock_entity_type->expects($this->any())
->method('isStaticallyCacheable')
->willReturn(FALSE);
// Add the EntityTypeInterface to the storage object.
$ref_entity_type = new \ReflectionProperty($mock_base, 'entityType');
$ref_entity_type->setAccessible(TRUE);
$ref_entity_type->setValue($mock_base, $mock_entity_type);
// Set up expectations for postLoad(), which we only call if there are
// results from loadMultiple().
$mock_base->expects($this->exactly(empty($load_multiple) ? 0 : 1))
->method('postLoad');
$this->assertEquals($expected, $mock_base->loadMultiple($query));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment