Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPENEUROPA-2155: Add dev option to settings setup command #105

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions config/runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ drupal:
config_dir: ~
existing_config: false
settings_override_file: "settings.override.php"
# Local development settings override.
# Add development settings that you want to share with your team and commit this file.
# If found this file will be copied in `/sites/{sites-subdir}/settings.local.php`,
# which should be, instead, git-ignored. This will give the possibility to locally
# tweak development settings.
settings_local_file: "${drupal.root}/sites/example.settings.local.php"
# Setting this to "false" will run "site-install" without the "--db-url" parameter.
# This is useful if the database settings are already set in your settings.php file.
generate_db_url: true
Expand Down
50 changes: 42 additions & 8 deletions src/Commands/AbstractDrupalCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ abstract class AbstractDrupalCommands extends AbstractCommands implements Filesy
*/
public function getDrupal()
{
return $this->getConfig()->get('drupal.core') === 7 ?
new Drupal7Commands() :
new Drupal8Commands();
return $this->getConfig()->get('drupal.core') === 7 ? new Drupal7Commands() : new Drupal8Commands();
}

/**
Expand Down Expand Up @@ -341,34 +339,37 @@ public function drushSetup(array $options = [
* @option root Drupal root.
* @option sites-subdir Drupal site subdirectory.
* @option settings-override-file Drupal site settings override filename.
* @option force Drupal force generation of a new settings.php.
* @option skip-permissions-setup Drupal skip permissions setup.
* @option force Force generation of a new settings.php.
* @option skip-permissions-setup Skip permissions setup.
* @option dev Development settings setup.
*
* @param array $options
*
* @return \Robo\Collection\CollectionBuilder
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
voidtek marked this conversation as resolved.
Show resolved Hide resolved
*/
public function settingsSetup(array $options = [
'root' => InputOption::VALUE_REQUIRED,
'sites-subdir' => InputOption::VALUE_REQUIRED,
'settings-override-file' => InputOption::VALUE_REQUIRED,
'force' => false,
'skip-permissions-setup' => false,
'dev' => false
])
{
$settings_default_path = $options['root'] . '/sites/' . $options['sites-subdir'] . '/default.settings.php';
$settings_default_path = $options['root'] . '/sites/default/default.settings.php';
$settings_path = $options['root'] . '/sites/' . $options['sites-subdir'] . '/settings.php';
$settings_override_path = $options['root'] . '/sites/' . $options['sites-subdir'] . '/' . $options['settings-override-file'];

// Save the filename of the override file in a single variable to use it
// in the heredoc variable $custom_config hereunder.
$settings_override_filename = $options['settings-override-file'];

$custom_config = $this->getDrupal()->getSettingsSetupAddendum($settings_override_filename);

$collection = [];

if (true === (bool) $options['force'] || !file_exists($settings_path)) {
if ((bool) $options['force'] || !file_exists($settings_path)) {
$collection[] = $this->taskWriteToFile($settings_default_path)->append()->lines([$custom_config]);
$collection[] = $this->taskFilesystemStack()->copy($settings_default_path, $settings_path, true);
}
Expand All @@ -378,6 +379,19 @@ public function settingsSetup(array $options = [
$this->getConfig()
)->setConfigKey('drupal.settings');

// If ran in dev mode copy local settings file to 'settings.local.php'.
ademarco marked this conversation as resolved.
Show resolved Hide resolved
// Such file will be conditionally included in 'settings-override-file'.
if ($options['dev']) {
$examples_settings_path = $this->getConfig()->get('drupal.site.settings_local_file');
ademarco marked this conversation as resolved.
Show resolved Hide resolved
if (file_exists($examples_settings_path)) {
$local_settings_path = $options['root'] . '/sites/' . $options['sites-subdir'] . '/settings.local.php';
$collection[] = $this->taskFilesystemStack()->copy($examples_settings_path, $local_settings_path, $options['force']);
}
$collection[] = $this->taskWriteToFile($settings_override_path)
->append()
->text($this->getDrupal()->getSettingsLocalSetupAddendum());
}

if (!$options['skip-permissions-setup']) {
$collection[] = $this->permissionsSetup($options);
}
Expand Down Expand Up @@ -437,4 +451,24 @@ protected function processPrePostInstallCommands(array &$commands, array $tokens
}
}
}

/**
* Get include portion for local development override configuration.
*
* This will be optionally appended to the settings override file.
*
* @return string
*/
protected function getSettingsLocalSetupAddendum()
{
return <<< EOF

/**
* Load local development override configuration, if available.
*/
if (file_exists(__DIR__ . '/settings.local.php')) {
include __DIR__ . '/settings.local.php';
}
EOF;
}
}
94 changes: 47 additions & 47 deletions tests/CommandsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,58 +265,36 @@ function $fct() {}
}

/**
* @param array $config
* @param array $configs
* @param array $expected
*
* @dataProvider settingsSetupForceDataProvider
* @dataProvider settingsSetupParametersDataProvider
*/
public function testSettingsSetupForce(array $config, array $expected)
public function testSettingsSetupParameters(array $configs, array $expected)
{
$configFile = $this->getSandboxFilepath('runner.yml');
file_put_contents($configFile, Yaml::dump($config));

$sites_subdir = isset($config['drupal']['site']['sites_subdir']) ? $config['drupal']['site']['sites_subdir'] : 'default';
$sites_subdir = isset($configs['drupal']['site']['sites_subdir']) ? $configs['drupal']['site']['sites_subdir'] : 'default';
mkdir($this->getSandboxRoot() . '/build/sites/' . $sites_subdir . '/', 0777, true);
file_put_contents($this->getSandboxRoot() . '/build/sites/' . $sites_subdir . '/default.settings.php', '');
file_put_contents($this->getSandboxRoot() . '/build/sites/' . $sites_subdir . '/settings.php', '# Already existing file.');

$input = new StringInput('drupal:settings-setup --working-dir=' . $this->getSandboxRoot());
file_put_contents($this->getSandboxRoot() . '/build/sites/example.settings.local.php', '// Local development override configuration.');

if (true === $config['drupal']['site']['force']) {
$input = new StringInput('drupal:settings-setup --working-dir=' . $this->getSandboxRoot() . ' --force');
if (!empty($configs['files'])) {
foreach ($configs['files'] as $file) {
file_put_contents($this->getSandboxRoot() . '/build/sites/' . $sites_subdir . '/' . $file['name'], $file['content']);
}
}
$runner = new TaskRunner($input, new BufferedOutput(), $this->getClassLoader());
$runner->run();

foreach ($expected as $row) {
$content = file_get_contents($this->getSandboxFilepath($row['file']));
$this->assertContainsNotContains($content, $row);
$input = 'drupal:settings-setup --working-dir=' . $this->getSandboxRoot();
if (isset($configs['parameters']['force']) && $configs['parameters']['force']) {
$input .= ' --force';
}
if (isset($configs['parameters']['dev']) && $configs['parameters']['dev']) {
$input .= ' --dev';
}
$runner = new TaskRunner(new StringInput($input), new BufferedOutput(), $this->getClassLoader());
$exit_code = $runner->run();
$this->assertEquals(0, $exit_code, 'Command run returned an error.');

// Generate a random function name.
$fct = $this->generateRandomString(20);

// Generate a dummy PHP code.
$config_override_dummy_script = <<< EOF
<?php
function $fct() {}
EOF;

$config_override_filename = isset($config['drupal']['site']['settings_override_file']) ?
$config['drupal']['site']['settings_override_file'] :
'settings.override.php';

// Add the dummy PHP code to the config override file.
file_put_contents(
$this->getSandboxRoot() . '/build/sites/' . $sites_subdir . '/' . $config_override_filename,
$config_override_dummy_script
);

// Include the config override file.
include_once $this->getSandboxRoot() . '/build/sites/' . $sites_subdir . '/' . $config_override_filename;

// Test if the dummy PHP code has been properly included.
$this->assertTrue(\function_exists($fct));
$this->processSettingsAssertions($expected);
}

/**
Expand Down Expand Up @@ -404,9 +382,9 @@ public function drupal8SettingsSetupDataProvider()
/**
* @return array
*/
public function settingsSetupForceDataProvider()
public function settingsSetupParametersDataProvider()
{
return $this->getFixtureContent('commands/drupal-settings-setup-force.yml');
return $this->getFixtureContent('commands/drupal-settings-setup-parameters.yml');
}

/**
Expand All @@ -427,13 +405,35 @@ public function changelogDataProvider()

/**
* @param string $content
* @param array $expected
* @param array $expectations
*/
protected function assertContainsNotContains($content, array $expected)
protected function assertContainsNotContains($content, array $expectations)
{
$this->assertContains($expected['contains'], $content);
if (!empty($expectations['contains'])) {
foreach ((array) $expectations['contains'] as $expected) {
$this->assertContains($expected, $content);
}
}
if (!empty($expected['not_contains'])) {
$this->assertNotContains($expected['not_contains'], $content);
foreach ((array) $expectations['not_contains'] as $expected) {
$this->assertNotContains($expected, $content);
}
}
}

/**
* @param array $expected
*/
protected function processSettingsAssertions(array $expected)
{
foreach ($expected as $row) {
if (isset($row['file'])) {
$content = file_get_contents($this->getSandboxFilepath($row['file']));
$this->assertContainsNotContains($content, $row);
voidtek marked this conversation as resolved.
Show resolved Hide resolved
}
if (isset($row['no_file'])) {
$this->assertFileNotExists($row['no_file']);
}
}
}
}
17 changes: 0 additions & 17 deletions tests/fixtures/commands/drupal-settings-setup-force.yml

This file was deleted.

92 changes: 92 additions & 0 deletions tests/fixtures/commands/drupal-settings-setup-parameters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
- configuration:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May be it is out from scope but could we also test correct working with multisiting?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fair point, evil, but fair. I'll do it.

Copy link

@ghost ghost Jan 28, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Real multisite integration would require extra work to allow for building multiple config folders.

I have some thoughts on how this can best be accomplished. Would require the runner.yml to define site.keys under which you can define the regular properties.

files:
- name: 'settings.php'
content: '# Already existing file.'
parameters:
force: false
expected:
- file: "build/sites/default/settings.php"
contains: "# Already existing file."
not_contains:
- "include $app_root . '/' . $site_path . '/settings.override.php';"
- "include $app_root . '/' . $site_path . '/settings.local.php';"
- no_file: "build/sites/default/settings.local.php"

- configuration:
files:
- name: 'settings.php'
content: '# Already existing file.'
parameters:
force: true
expected:
- file: "build/sites/default/settings.php"
contains: "include $app_root . '/' . $site_path . '/settings.override.php';"
not_contains:
- "# Already existing file."
- "include $app_root . '/' . $site_path . '/settings.local.php';"
- no_file: "build/sites/default/settings.local.php"

- configuration:
files:
- name: 'settings.php'
content: '# Already existing file.'
- name: 'settings.local.php'
content: '# Already existing file.'
parameters:
force: false
dev: true
expected:
- file: "build/sites/default/settings.php"
contains: "# Already existing file."
not_contains:
- "include $app_root . '/' . $site_path . '/settings.override.php';"
- "include $app_root . '/' . $site_path . '/settings.local.php';"
- file: "build/sites/default/settings.local.php"
contains: "# Already existing file."

- configuration:
files:
- name: 'settings.php'
content: '# Already existing file.'
- name: 'settings.local.php'
content: '# Already existing file.'
parameters:
force: true
dev: true
expected:
- file: "build/sites/default/settings.override.php"
contains:
- "include __DIR__ . '/settings.local.php';"
not_contains: "# Already existing file."
- file: "build/sites/default/settings.local.php"
contains: "// Local development override configuration."

- configuration:
files:
- name: 'settings.local.php'
content: '// Initial config.'
parameters:
force: false
expected:
- file: "build/sites/default/settings.php"
not_contains: "include $app_root . '/' . $site_path . '/settings.local.php';"
contains: "include $app_root . '/' . $site_path . '/settings.override.php';"
- file: "build/sites/default/settings.local.php"
contains: "// Initial config."

- configuration:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like duplication with line 47.

files:
- name: 'settings.php'
content: '# Already existing file.'
- name: 'settings.local.php'
content: '# Already existing file.'
parameters:
force: true
dev: true
expected:
- file: "build/sites/default/settings.override.php"
contains:
- "include __DIR__ . '/settings.local.php';"
not_contains: "# Already existing file."
- file: "build/sites/default/settings.local.php"
contains: "// Local development override configuration."