You are here

public function LingotekConfigOverridesTest::testDefaultProjectOverride in Lingotek Translation 3.6.x

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()
  2. 4.0.x tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()
  3. 3.0.x tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()
  4. 3.1.x tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()
  5. 3.2.x tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()
  6. 3.3.x tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()
  7. 3.4.x tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()
  8. 3.5.x tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()
  9. 3.7.x tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()
  10. 3.8.x tests/src/Functional/LingotekConfigOverridesTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigOverridesTest::testDefaultProjectOverride()

File

tests/src/Functional/LingotekConfigOverridesTest.php, line 27

Class

LingotekConfigOverridesTest
Tests config overrides in settings.php are possible .

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testDefaultProjectOverride() {
  $GLOBALS['config']['lingotek.settings']['default']['project'] = 'abc';

  // Container was not rebuilt yet.
  $defaults = \Drupal::service('lingotek')
    ->getDefaults();
  $this
    ->assertIdentical('test_project', $defaults['project'], 'Default project could be overridden by settings.php');

  // Editing settings.php forces us to rebuild the container.
  $GLOBALS['config']['lingotek.settings']['default']['project'] = 'def';
  $this
    ->rebuildContainer();
  $defaults = \Drupal::service('lingotek')
    ->getDefaults();
  $this
    ->assertIdentical('def', $defaults['project'], 'Default project could be overridden by settings.php');
}