You are here

protected function LingotekConfigOverridesTest::setupResources in Lingotek Translation 4.0.x

Setup test resources for the test.

1 call to LingotekConfigOverridesTest::setupResources()
LingotekConfigOverridesTest::setUp in tests/src/Functional/LingotekConfigOverridesTest.php

File

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

Class

LingotekConfigOverridesTest
Tests config overrides in settings.php are possible .

Namespace

Drupal\Tests\lingotek\Functional

Code

protected function setupResources() {
  $config = \Drupal::configFactory()
    ->getEditable('lingotek.account');
  $config
    ->set('resources.community', [
    'test_community' => 'Test community',
    'test_community2' => 'Test community 2',
  ]);
  $config
    ->set('resources.project', [
    'test_project' => 'Test project',
    'test_project2' => 'Test project 2',
  ]);
  $config
    ->set('resources.vault', [
    'test_vault' => 'Test vault',
    'test_vault2' => 'Test vault 2',
  ]);
  $config
    ->set('resources.workflow', [
    'test_workflow' => 'Test workflow',
    'test_workflow2' => 'Test workflow 2',
  ]);
  $config
    ->set('resources.filter', [
    'test_filter' => 'Test filter',
    'test_filter2' => 'Test filter 2',
    'test_filter3' => 'Test filter 3',
  ]);
  $config
    ->set('access_token', FakeAuthorizationController::ACCESS_TOKEN);
  $config
    ->set('default.community', 'test_community');
  $config
    ->set('default.workflow', 'test_workflow');
  $config
    ->set('default.project', 'test_project');
  $config
    ->set('default.vault', 'test_vault');
  $config
    ->save();
}