function ConditionFormTest::testConfigForm in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\ConditionCode
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.');
}