View source
<?php
namespace Drupal\Tests\jsonapi\Functional;
use Drupal\Core\Url;
use Drupal\taxonomy\Entity\Vocabulary;
class VocabularyTest extends ResourceTestBase {
public static $modules = [
'taxonomy',
];
protected static $entityTypeId = 'taxonomy_vocabulary';
protected static $resourceTypeName = 'taxonomy_vocabulary--taxonomy_vocabulary';
protected $entity;
protected function setUpAuthorization($method) {
$this
->grantPermissionsToTestedRole([
'administer taxonomy',
]);
}
protected function createEntity() {
$vocabulary = Vocabulary::create([
'name' => 'Llama',
'vid' => 'llama',
]);
$vocabulary
->save();
return $vocabulary;
}
protected function getExpectedDocument() {
$self_url = Url::fromUri('base:/jsonapi/taxonomy_vocabulary/taxonomy_vocabulary/' . $this->entity
->uuid())
->setAbsolute()
->toString(TRUE)
->getGeneratedUrl();
$expected_document = [
'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' => 'taxonomy_vocabulary--taxonomy_vocabulary',
'links' => [
'self' => [
'href' => $self_url,
],
],
'attributes' => [
'langcode' => 'en',
'status' => TRUE,
'dependencies' => [],
'name' => 'Llama',
'description' => NULL,
'weight' => 0,
'drupal_internal__vid' => 'llama',
],
],
];
if (floatval(\Drupal::VERSION) < 8.699999999999999) {
$expected_document['data']['attributes']['hierarchy'] = 0;
}
return $expected_document;
}
protected function getPostDocument() {
}
protected function getExpectedUnauthorizedAccessMessage($method) {
if ($method === 'GET') {
return "The following permissions are required: 'access taxonomy overview' OR 'administer taxonomy'.";
}
return parent::getExpectedUnauthorizedAccessMessage($method);
}
}