function MinimalTest::testMinimal
Same name in other branches
- 9 core/profiles/minimal/tests/src/Functional/MinimalTest.php \Drupal\Tests\minimal\Functional\MinimalTest::testMinimal()
- 8.9.x core/profiles/minimal/tests/src/Functional/MinimalTest.php \Drupal\Tests\minimal\Functional\MinimalTest::testMinimal()
- 10 core/profiles/minimal/tests/src/Functional/MinimalTest.php \Drupal\Tests\minimal\Functional\MinimalTest::testMinimal()
Tests Minimal installation profile.
File
-
core/
profiles/ minimal/ tests/ src/ Functional/ MinimalTest.php, line 32
Class
- MinimalTest
- Tests Minimal installation profile expectations.
Namespace
Drupal\Tests\minimal\FunctionalCode
public function testMinimal() : void {
$this->drupalGet('');
// Check the login block is present.
$this->assertSession()
->buttonExists('Log in');
// Confirm anonymous users cannot create an account.
$this->assertSession()
->linkNotExists('Create new account');
$this->assertSession()
->statusCodeEquals(200);
// Create a user to test tools and navigation blocks for logged in users
// with appropriate permissions.
$user = $this->drupalCreateUser([
'access administration pages',
'administer content types',
]);
$this->drupalLogin($user);
$this->drupalGet('');
$this->assertSession()
->pageTextContains('Tools');
$this->assertSession()
->pageTextContains('Administration');
// Ensure that there are no pending updates after installation.
$this->drupalLogin($this->drupalCreateUser([
'administer software updates',
]));
$this->drupalGet('update.php/selection');
$this->updateRequirementsProblem();
$this->drupalGet('update.php/selection');
$this->assertSession()
->pageTextContains('No pending updates.');
// Ensure that there are no pending entity updates after installation.
$this->assertFalse($this->container
->get('entity.definition_update_manager')
->needsUpdates(), 'After installation, entity schema is up to date.');
// Ensure special configuration overrides are correct.
$this->assertFalse($this->config('system.theme.global')
->get('features.node_user_picture'), 'Configuration system.theme.global:features.node_user_picture is FALSE.');
$this->assertEquals(UserInterface::REGISTER_ADMINISTRATORS_ONLY, $this->config('user.settings')
->get('register'));
// Now we have all configuration imported, test all of them for schema
// conformance. Ensures all imported default configuration is valid when
// Minimal profile modules are enabled.
$names = $this->container
->get('config.storage')
->listAll();
/** @var \Drupal\Core\Config\TypedConfigManagerInterface $typed_config */
$typed_config = $this->container
->get('config.typed');
foreach ($names as $name) {
$config = $this->config($name);
$this->assertConfigSchema($typed_config, $name, $config->get());
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.