Mercurial > hg > isophonics-drupal-site
diff core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayResourceTestBase.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | |
children | 129ea1e6d783 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayResourceTestBase.php Tue Jul 10 15:07:59 2018 +0100 @@ -0,0 +1,118 @@ +<?php + +namespace Drupal\FunctionalTests\Rest; + +use Drupal\Core\Entity\Entity\EntityViewDisplay; +use Drupal\node\Entity\NodeType; +use Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase; + +abstract class EntityViewDisplayResourceTestBase extends EntityResourceTestBase { + + /** + * {@inheritdoc} + */ + public static $modules = ['node']; + + /** + * {@inheritdoc} + */ + protected static $entityTypeId = 'entity_view_display'; + + /** + * {@inheritdoc} + */ + protected static $patchProtectedFieldNames = []; + + /** + * @var \Drupal\Core\Entity\Display\EntityViewDisplayInterface + */ + protected $entity; + + /** + * {@inheritdoc} + */ + protected function setUpAuthorization($method) { + $this->grantPermissionsToTestedRole(['administer node display']); + } + + /** + * {@inheritdoc} + */ + protected function createEntity() { + // Create a "Camelids" node type. + $camelids = NodeType::create([ + 'name' => 'Camelids', + 'type' => 'camelids', + ]); + $camelids->save(); + + // Create a view display. + $view_display = EntityViewDisplay::create([ + 'targetEntityType' => 'node', + 'bundle' => 'camelids', + 'mode' => 'default', + 'status' => TRUE, + ]); + $view_display->save(); + + return $view_display; + } + + /** + * {@inheritdoc} + */ + protected function getExpectedNormalizedEntity() { + return [ + 'bundle' => 'camelids', + 'content' => [ + 'links' => [ + 'region' => 'content', + 'weight' => 100, + ], + ], + 'dependencies' => [ + 'config' => [ + 'node.type.camelids', + ], + 'module' => [ + 'user', + ], + ], + 'hidden' => [], + 'id' => 'node.camelids.default', + 'langcode' => 'en', + 'mode' => 'default', + 'status' => TRUE, + 'targetEntityType' => 'node', + 'uuid' => $this->entity->uuid(), + ]; + } + + /** + * {@inheritdoc} + */ + protected function getNormalizedPostEntity() { + // @todo Update in https://www.drupal.org/node/2300677. + } + + /** + * {@inheritdoc} + */ + protected function getExpectedCacheContexts() { + return [ + 'user.permissions', + ]; + } + + /** + * {@inheritdoc} + */ + protected function getExpectedUnauthorizedAccessMessage($method) { + if ($this->config('rest.settings')->get('bc_entity_resource_permissions')) { + return parent::getExpectedUnauthorizedAccessMessage($method); + } + + return "The 'administer node display' permission is required."; + } + +}