class ConfigExportTest in Drupal 10
Same name and namespace in other branches
- 9 core/modules/config/tests/src/FunctionalJavascript/ConfigExportTest.php \Drupal\Tests\config\FunctionalJavascript\ConfigExportTest
Tests the config export form.
@group config
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\FunctionalJavascriptTests\WebDriverTestBase
- class \Drupal\Tests\config\FunctionalJavascript\ConfigExportTest
- class \Drupal\FunctionalJavascriptTests\WebDriverTestBase
Expanded class hierarchy of ConfigExportTest
File
- core/
modules/ config/ tests/ src/ FunctionalJavascript/ ConfigExportTest.php, line 12
Namespace
Drupal\Tests\config\FunctionalJavascriptView source
class ConfigExportTest extends WebDriverTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'config',
'system',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Tests Ajax form functionality on the config export page.
*/
public function testAjaxOnExportPage() {
$this
->drupalLogin($this
->drupalCreateUser([
'export configuration',
]));
$page = $this
->getSession()
->getPage();
// Check that the export is empty on load.
$this
->drupalGet('admin/config/development/configuration/single/export');
$this
->assertSession()
->fieldValueEquals('export', '');
// Check that the export is filled when selecting a config name.
$page
->selectFieldOption('config_name', 'system.site');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->assertSession()
->fieldValueNotEquals('export', '');
// Check that the export is emptied again when selecting a config type.
$page
->selectFieldOption('config_type', 'Action');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->assertSession()
->fieldValueEquals('export', '');
}
}