class ParagraphsTypeHasEnabledBehaviorPluginTest

Tests the ParagraphsType entity hasEnabledBehaviorPlugin functionality.

@group paragraphs

Hierarchy

Expanded class hierarchy of ParagraphsTypeHasEnabledBehaviorPluginTest

File

paragraphs/tests/src/Kernel/ParagraphsTypeHasEnabledBehaviorPluginTest.php, line 13

Namespace

Drupal\Tests\paragraphs\Kernel
View source
class ParagraphsTypeHasEnabledBehaviorPluginTest extends KernelTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'paragraphs',
    'user',
    'paragraphs_test',
    'file',
  ];

  /**
   * ParagraphsType entity build in setUp()
   *
   * @var ParagraphsType
   */
  protected $paragraphsType;

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->installEntitySchema('user');
    $this
      ->installEntitySchema('paragraph');
    \Drupal::moduleHandler()
      ->loadInclude('paragraphs', 'install');

    // Create a paragraph with an enabled and disabled plugin.
    $this->paragraphsType = ParagraphsType::create([
      'label' => 'test_text',
      'id' => 'test_text',
      'behavior_plugins' => [
        'test_text_color' => [
          'enabled' => TRUE,
        ],
        'test_dummy_behavior' => [
          'enabled' => FALSE,
        ],
      ],
    ]);
    $this->paragraphsType
      ->save();
  }

  /**
   * Tests the behavior settings API.
   */
  public function testValidPluginIds() {
    $this
      ->assertTrue($this->paragraphsType
      ->hasEnabledBehaviorPlugin('test_text_color'));
    $this
      ->assertFalse($this->paragraphsType
      ->hasEnabledBehaviorPlugin('test_dummy_behavior'));
  }

  /**
   * Test that invalid plugin id's return false.
   */
  public function testInvalidPluginId() {
    $this
      ->assertFalse($this->paragraphsType
      ->hasEnabledBehaviorPlugin('i_do_not_exist'));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ParagraphsTypeHasEnabledBehaviorPluginTest::$modules protected static property Modules to enable.
ParagraphsTypeHasEnabledBehaviorPluginTest::$paragraphsType protected property ParagraphsType entity build in setUp()
ParagraphsTypeHasEnabledBehaviorPluginTest::setUp protected function
ParagraphsTypeHasEnabledBehaviorPluginTest::testInvalidPluginId public function Test that invalid plugin id's return false.
ParagraphsTypeHasEnabledBehaviorPluginTest::testValidPluginIds public function Tests the behavior settings API.