You are here

ConditionFormTest.php in Drupal 10

File

core/modules/system/tests/src/Functional/Condition/ConditionFormTest.php
View source
<?php

namespace Drupal\Tests\system\Functional\Condition;

use Drupal\node\Entity\Node;
use Drupal\Tests\BrowserTestBase;

/**
 * Tests that condition plugins basic form handling is working.
 *
 * Checks condition forms and submission and gives a very cursory check to make
 * sure the configuration that was submitted actually causes the condition to
 * validate correctly.
 *
 * @group Condition
 */
class ConditionFormTest extends BrowserTestBase {
  protected static $modules = [
    'node',
    'condition_test',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * Submit the condition_node_type_test_form to test condition forms.
   */
  public function testConfigForm() {
    $this
      ->drupalCreateContentType([
      'type' => 'page',
      'name' => 'Page',
    ]);
    $this
      ->drupalCreateContentType([
      'type' => 'article',
      'name' => 'Article',
    ]);
    $article = Node::create([
      'type' => 'article',
      'title' => $this
        ->randomMachineName(),
    ]);
    $article
      ->save();
    $this
      ->drupalGet('condition_test');
    $this
      ->assertSession()
      ->fieldExists('bundles[article]');
    $this
      ->assertSession()
      ->fieldExists('bundles[page]');
    $this
      ->submitForm([
      'bundles[page]' => 'page',
      'bundles[article]' => 'article',
    ], 'Submit');

    // @see \Drupal\condition_test\FormController::submitForm()
    $this
      ->assertSession()
      ->pageTextContains('Bundle: page');
    $this
      ->assertSession()
      ->pageTextContains('Bundle: article');
    $this
      ->assertSession()
      ->pageTextContains('Executed successfully.');
  }

}

Classes

Namesort descending Description
ConditionFormTest Tests that condition plugins basic form handling is working.