NodeJsonBasicAuthTest.php

Same filename and directory in other branches
  1. 9 core/modules/node/tests/src/Functional/Rest/NodeJsonBasicAuthTest.php
  2. 8.9.x core/modules/node/tests/src/Functional/Rest/NodeJsonBasicAuthTest.php
  3. 10 core/modules/node/tests/src/Functional/Rest/NodeJsonBasicAuthTest.php

Namespace

Drupal\Tests\node\Functional\Rest

File

core/modules/node/tests/src/Functional/Rest/NodeJsonBasicAuthTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\node\Functional\Rest;

use Drupal\Tests\rest\Functional\BasicAuthResourceTestTrait;

/**
 * @group rest
 */
class NodeJsonBasicAuthTest extends NodeResourceTestBase {
    use BasicAuthResourceTestTrait;
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'basic_auth',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected static $format = 'json';
    
    /**
     * {@inheritdoc}
     */
    protected static $mimeType = 'application/json';
    
    /**
     * {@inheritdoc}
     */
    protected static $auth = 'basic_auth';
    
    /**
     * {@inheritdoc}
     */
    protected function setUpAuthorization($method) {
        parent::setUpAuthorization($method);
        $this->grantPermissionsToTestedRole([
            'view camelids revisions',
        ]);
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedNormalizedEntity() {
        $entity = parent::getExpectedNormalizedEntity();
        $entity['revision_log'] = [];
        return $entity;
    }

}

Classes

Title Deprecated Summary
NodeJsonBasicAuthTest @group rest

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.