Issue #3107472 by ravi.shankar, alexpott, kishor_kolekar, jibran: DbDumpCommand should not hardcode the version string
parent
8433377461
commit
f75a4b42cb
|
@ -93,6 +93,8 @@ class DbDumpCommand extends DbCommandBase {
|
|||
$tables .= $this->getTableScript($table, $schema, $data);
|
||||
}
|
||||
$script = $this->getTemplate();
|
||||
// Substitute in the version.
|
||||
$script = str_replace('{{VERSION}}', \Drupal::VERSION, $script);
|
||||
// Substitute in the tables.
|
||||
$script = str_replace('{{TABLES}}', trim($tables), $script);
|
||||
return trim($script);
|
||||
|
@ -392,7 +394,7 @@ class DbDumpCommand extends DbCommandBase {
|
|||
* @file
|
||||
* A database agnostic dump for testing purposes.
|
||||
*
|
||||
* This file was generated by the Drupal 8.0 db-tools.php script.
|
||||
* This file was generated by the Drupal {{VERSION}} db-tools.php script.
|
||||
*/
|
||||
|
||||
use Drupal\Core\Database\Database;
|
||||
|
|
|
@ -13,7 +13,7 @@ class DbToolsApplication extends Application {
|
|||
* {@inheritdoc}
|
||||
*/
|
||||
public function __construct() {
|
||||
parent::__construct('Database Tools', '8.0.x');
|
||||
parent::__construct('Database Tools', \Drupal::VERSION);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -54,6 +54,8 @@ class DbDumpCommandTest extends KernelTestBase {
|
|||
$this->assertContains("'path' => 'test", $output, 'Insert path field found');
|
||||
$this->assertContains("'pattern_outline' => 'test", $output, 'Insert pattern_outline field found');
|
||||
$this->assertContains("// @codingStandardsIgnoreFile", $output);
|
||||
$version = \Drupal::VERSION;
|
||||
$this->assertContains("This file was generated by the Drupal {$version} db-tools.php script.", $output);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -22,6 +22,7 @@ class DbToolsApplicationTest extends KernelTestBase {
|
|||
$application = new DbToolsApplication();
|
||||
$command = $application->find('dump');
|
||||
$this->assertInstanceOf('\Drupal\Core\Command\DbDumpCommand', $command);
|
||||
$this->assertSame(\Drupal::VERSION, $application->getVersion());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue