You are here

BasicTest.php in JSON Web Token Authentication (JWT) 8.0

Same filename and directory in other branches
  1. 8 tests/src/Kernel/BasicTest.php

File

tests/src/Kernel/BasicTest.php
View source
<?php

namespace Drupal\Tests\jwt\Kernel;

use Drupal\KernelTests\KernelTestBase;

/**
 * Tests JWT config schema.
 *
 * @group JWT
 */
class BasicTest extends KernelTestBase {

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'system',
    'key',
    'jwt',
    'jwt_test',
  ];

  /**
   * {@inheritdoc}
   */
  public function setUp() {
    parent::setUp();
    $this
      ->installConfig([
      'key',
      'jwt',
      'jwt_test',
    ]);
  }

  /**
   * Verify the test config was loaded as keys.
   */
  public function testConfig() {
    $key_repository = $this->container
      ->get('key.repository');
    $key_hmac = $key_repository
      ->getKey('jwt_test_hmac');
    $this
      ->assertNotEmpty($key_hmac);
    $key_rsa = $key_repository
      ->getKey('jwt_test_rsa');
    $this
      ->assertNotEmpty($key_rsa);
  }

}

Classes

Namesort descending Description
BasicTest Tests JWT config schema.