You are here

function ConditionFormTest::testConfigForm in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Condition/ConditionFormTest.php \Drupal\system\Tests\Condition\ConditionFormTest::testConfigForm()

Submit the condition_node_type_test_form to test condition forms.

File

core/modules/system/src/Tests/Condition/ConditionFormTest.php, line 28
Contains \Drupal\system\Tests\Condition\ConditionFormTest.

Class

ConditionFormTest
Tests that condition plugins basic form handling is working.

Namespace

Drupal\system\Tests\Condition

Code

function testConfigForm() {
  $this
    ->drupalCreateContentType(array(
    'type' => 'page',
    'name' => 'Page',
  ));
  $this
    ->drupalCreateContentType(array(
    'type' => 'article',
    'name' => 'Article',
  ));
  $article = entity_create('node', array(
    'type' => 'article',
    'title' => $this
      ->randomMachineName(),
  ));
  $article
    ->save();
  $this
    ->drupalGet('condition_test');
  $this
    ->assertField('bundles[article]', 'There is an article bundle selector.');
  $this
    ->assertField('bundles[page]', 'There is a page bundle selector.');
  $this
    ->drupalPostForm(NULL, array(
    'bundles[page]' => 'page',
    'bundles[article]' => 'article',
  ), t('Submit'));

  // @see \Drupal\condition_test\FormController::submitForm()
  $this
    ->assertText('Bundle: page');
  $this
    ->assertText('Bundle: article');
  $this
    ->assertText('Executed successfully.', 'The form configured condition executed properly.');
}