View source
<?php
namespace Drupal\Tests\jsonapi\Functional;
use Drupal\comment\Entity\CommentType;
use Drupal\Core\Url;
class CommentTypeTest extends ResourceTestBase {
protected static $modules = [
'node',
'comment',
];
protected static $entityTypeId = 'comment_type';
protected static $resourceTypeName = 'comment_type--comment_type';
protected $entity;
protected $defaultTheme = 'stark';
protected function setUpAuthorization($method) {
$this
->grantPermissionsToTestedRole([
'administer comment types',
]);
}
protected function createEntity() {
$camelids = CommentType::create([
'id' => 'camelids',
'label' => 'Camelids',
'description' => 'Camelids are large, strictly herbivorous animals with slender necks and long legs.',
'target_entity_type_id' => 'node',
]);
$camelids
->save();
return $camelids;
}
protected function getExpectedDocument() {
$self_url = Url::fromUri('base:/jsonapi/comment_type/comment_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' => 'comment_type--comment_type',
'links' => [
'self' => [
'href' => $self_url,
],
],
'attributes' => [
'dependencies' => [],
'description' => 'Camelids are large, strictly herbivorous animals with slender necks and long legs.',
'label' => 'Camelids',
'langcode' => 'en',
'status' => TRUE,
'target_entity_type_id' => 'node',
'drupal_internal__id' => 'camelids',
],
],
];
}
protected function getPostDocument() {
}
}