You are here

WebformHandlerPluginTest.php in Webform 8.5

Same filename and directory in other branches
  1. 6.x tests/src/Functional/Handler/WebformHandlerPluginTest.php

File

tests/src/Functional/Handler/WebformHandlerPluginTest.php
View source
<?php

namespace Drupal\Tests\webform\Functional\Handler;

use Drupal\webform\Entity\Webform;
use Drupal\Tests\webform\Functional\WebformBrowserTestBase;

/**
 * Tests for the webform handler plugin.
 *
 * @group webform
 */
class WebformHandlerPluginTest extends WebformBrowserTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'webform',
    'webform_test_handler',
  ];

  /**
   * Tests webform handler plugin dependencies.
   *
   * @see \Drupal\webform\Entity\Webform::onDependencyRemoval
   */
  public function testWebformHandlerDependencies() {
    $webform = Webform::load('contact');

    // Check initial dependencies.
    $this
      ->assertEqual($webform
      ->getDependencies(), [
      'module' => [
        'webform',
      ],
    ]);

    /** @var \Drupal\webform\Plugin\WebformHandlerManagerInterface $handler_manager */
    $handler_manager = $this->container
      ->get('plugin.manager.webform.handler');

    // Add 'test' handler provided by the webform_test.module.
    $webform_handler_configuration = [
      'id' => 'test',
      'label' => 'test',
      'handler_id' => 'test',
      'status' => 1,
      'weight' => 2,
      'settings' => [],
    ];
    $webform_handler = $handler_manager
      ->createInstance('test', $webform_handler_configuration);
    $webform
      ->addWebformHandler($webform_handler);
    $webform
      ->save();

    // Check that handler has been added to the dependencies.
    $this
      ->assertEqual($webform
      ->getDependencies(), [
      'module' => [
        'webform_test_handler',
        'webform',
      ],
    ]);

    // Uninstall the webform_test_handler.module which will also remove the
    // test handler.
    $this->container
      ->get('module_installer')
      ->uninstall([
      'webform_test_handler',
    ]);
    $webform = Webform::load('contact');

    // Check that handler was removed from the dependencies.
    $this
      ->assertNotEqual($webform
      ->getDependencies(), [
      'module' => [
        'webform_test_handler',
        'webform',
      ],
    ]);
    $this
      ->assertEqual($webform
      ->getDependencies(), [
      'module' => [
        'webform',
      ],
    ]);
  }

}

Classes

Namesort descending Description
WebformHandlerPluginTest Tests for the webform handler plugin.