ConditionFormTest.php in Drupal 9
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;
class ConditionFormTest extends BrowserTestBase {
protected static $modules = [
'node',
'condition_test',
];
protected $defaultTheme = 'stark';
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');
$this
->assertSession()
->pageTextContains('Bundle: page');
$this
->assertSession()
->pageTextContains('Bundle: article');
$this
->assertSession()
->pageTextContains('Executed successfully.');
}
}