ConfigEntityStatusTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStatusTest.php
  2. 8.9.x core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStatusTest.php
  3. 11.x core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStatusTest.php

Namespace

Drupal\KernelTests\Core\Config

File

core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStatusTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\Config;

use Drupal\KernelTests\KernelTestBase;

/**
 * Tests configuration entity status functionality.
 *
 * @group config
 */
class ConfigEntityStatusTest extends KernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'config_test',
  ];
  
  /**
   * Tests the enabling/disabling of entities.
   */
  public function testCRUD() : void {
    $entity = \Drupal::entityTypeManager()->getStorage('config_test')
      ->create([
      'id' => $this->randomMachineName(),
    ]);
    $this->assertTrue($entity->status(), 'Default status is enabled.');
    $entity->save();
    $this->assertTrue($entity->status(), 'Status is enabled after saving.');
    $entity->disable()
      ->save();
    $this->assertFalse($entity->status(), 'Entity is disabled after disabling.');
    $entity->enable()
      ->save();
    $this->assertTrue($entity->status(), 'Entity is enabled after enabling.');
    $entity = \Drupal::entityTypeManager()->getStorage('config_test')
      ->load($entity->id());
    $this->assertTrue($entity->status(), 'Status is enabled after reload.');
  }

}

Classes

Title Deprecated Summary
ConfigEntityStatusTest Tests configuration entity status functionality.

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