You are here

public function TestSiteApplicationTest::testInstallWithFileWithNoClass in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php \Drupal\Tests\Scripts\TestSiteApplicationTest::testInstallWithFileWithNoClass()
  2. 9 core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php \Drupal\Tests\Scripts\TestSiteApplicationTest::testInstallWithFileWithNoClass()

@coversNothing

File

core/tests/Drupal/Tests/Scripts/TestSiteApplicationTest.php, line 69

Class

TestSiteApplicationTest
Tests core/scripts/test-site.php.

Namespace

Drupal\Tests\Scripts

Code

public function testInstallWithFileWithNoClass() {

  // Create a connection to the DB configured in SIMPLETEST_DB.
  $connection = Database::getConnection('default', $this
    ->addTestDatabase(''));
  $table_count = count($connection
    ->schema()
    ->findTables('%'));
  $command_line = $this->php . ' core/scripts/test-site.php install --setup-file core/tests/fixtures/empty_file.php.module --db-url "' . getenv('SIMPLETEST_DB') . '"';
  $process = Process::fromShellCommandline($command_line, $this->root);
  $process
    ->run();
  $this
    ->assertStringContainsString('The file core/tests/fixtures/empty_file.php.module does not contain a class', $process
    ->getErrorOutput());
  $this
    ->assertSame(1, $process
    ->getExitCode());
  $this
    ->assertCount($table_count, $connection
    ->schema()
    ->findTables('%'), 'No additional tables created in the database');
}