GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/rest/src/Tests/ |
Upload File : |
<?php namespace Drupal\rest\Tests; use Drupal\Core\Session\AccountInterface; use Drupal\rest\RestResourceConfigInterface; use Drupal\user\Entity\Role; use Drupal\user\RoleInterface; /** * Tests the structure of a REST resource. * * @group rest */ class ResourceTest extends RESTTestBase { /** * Modules to install. * * @var array */ public static $modules = ['hal', 'rest', 'entity_test', 'rest_test']; /** * The entity. * * @var \Drupal\Core\Entity\EntityInterface */ protected $entity; /** * {@inheritdoc} */ protected function setUp() { parent::setUp(); // Create an entity programmatic. $this->entity = $this->entityCreate('entity_test'); $this->entity->save(); Role::load(AccountInterface::ANONYMOUS_ROLE) ->grantPermission('view test entity') ->save(); } /** * Tests that a resource without formats cannot be enabled. */ public function testFormats() { $this->resourceConfigStorage->create([ 'id' => 'entity.entity_test', 'granularity' => RestResourceConfigInterface::METHOD_GRANULARITY, 'configuration' => [ 'GET' => [ 'supported_auth' => [ 'basic_auth', ], ], ], ])->save(); // Verify that accessing the resource returns 406. $response = $this->httpRequest($this->entity->urlInfo()->setRouteParameter('_format', $this->defaultFormat), 'GET'); // \Drupal\Core\Routing\RequestFormatRouteFilter considers the canonical, // non-REST route a match, but a lower quality one: no format restrictions // means there's always a match and hence when there is no matching REST // route, the non-REST route is used, but can't render into // application/hal+json, so it returns a 406. $this->assertResponse('406', 'HTTP response code is 406 when the resource does not define formats, because it falls back to the canonical, non-REST route.'); $this->curlClose(); } /** * Tests that a resource without authentication cannot be enabled. */ public function testAuthentication() { $this->resourceConfigStorage->create([ 'id' => 'entity.entity_test', 'granularity' => RestResourceConfigInterface::METHOD_GRANULARITY, 'configuration' => [ 'GET' => [ 'supported_formats' => [ 'hal_json', ], ], ], ])->save(); // Verify that accessing the resource returns 401. $response = $this->httpRequest($this->entity->urlInfo()->setRouteParameter('_format', $this->defaultFormat), 'GET'); // \Drupal\Core\Routing\RequestFormatRouteFilter considers the canonical, // non-REST route a match, but a lower quality one: no format restrictions // means there's always a match and hence when there is no matching REST // route, the non-REST route is used, but can't render into // application/hal+json, so it returns a 406. $this->assertResponse('406', 'HTTP response code is 406 when the resource does not define formats, because it falls back to the canonical, non-REST route.'); $this->curlClose(); } /** * Tests that serialization_class is optional. */ public function testSerializationClassIsOptional() { $this->enableService('serialization_test', 'POST', 'json'); Role::load(RoleInterface::ANONYMOUS_ID) ->grantPermission('restful post serialization_test') ->save(); $serialized = $this->container->get('serializer')->serialize(['foo', 'bar'], 'json'); $this->httpRequest('serialization_test', 'POST', $serialized, 'application/json'); $this->assertResponse(200); $this->assertResponseBody('["foo","bar"]'); } /** * Tests that resource URI paths are formatted properly. */ public function testUriPaths() { $this->enableService('entity:entity_test'); /** @var \Drupal\rest\Plugin\Type\ResourcePluginManager $manager */ $manager = \Drupal::service('plugin.manager.rest'); foreach ($manager->getDefinitions() as $resource => $definition) { foreach ($definition['uri_paths'] as $key => $uri_path) { $this->assertFalse(strpos($uri_path, '//'), 'The resource URI path does not have duplicate slashes.'); } } } }