View source
<?php
namespace Drupal\Tests\jsonapi\Functional;
use Drupal\block_content\Entity\BlockContentType;
use Drupal\Core\Url;
class BlockContentTypeTest extends ResourceTestBase {
public static $modules = [
'block_content',
];
protected static $entityTypeId = 'block_content_type';
protected static $resourceTypeName = 'block_content_type--block_content_type';
protected $entity;
protected $defaultTheme = 'stark';
protected function setUpAuthorization($method) {
$this
->grantPermissionsToTestedRole([
'administer blocks',
]);
}
protected function createEntity() {
$block_content_type = BlockContentType::create([
'id' => 'pascal',
'label' => 'Pascal',
'revision' => FALSE,
'description' => 'Provides a competitive alternative to the "basic" type',
]);
$block_content_type
->save();
return $block_content_type;
}
protected function getExpectedDocument() {
$self_url = Url::fromUri('base:/jsonapi/block_content_type/block_content_type/' . $this->entity
->uuid())
->setAbsolute()
->toString(TRUE)
->getGeneratedUrl();
return [
'jsonapi' => [
'meta' => [
'links' => [
'self' => [
'href' => 'http://jsonapi.org/format/1.0/',
],
],
],
'version' => '1.0',
],
'links' => [
'self' => [
'href' => $self_url,
],
],
'data' => [
'id' => $this->entity
->uuid(),
'type' => 'block_content_type--block_content_type',
'links' => [
'self' => [
'href' => $self_url,
],
],
'attributes' => [
'dependencies' => [],
'description' => 'Provides a competitive alternative to the "basic" type',
'label' => 'Pascal',
'langcode' => 'en',
'revision' => 0,
'status' => TRUE,
'drupal_internal__id' => 'pascal',
],
],
];
}
protected function getPostDocument() {
}
}