You are here

LingotekChangeAccountDefaultsTest.php in Lingotek Translation 4.0.x

File

tests/src/Functional/LingotekChangeAccountDefaultsTest.php
View source
<?php

namespace Drupal\Tests\lingotek\Functional;

use Drupal\lingotek_test\Controller\FakeAuthorizationController;

/**
 * Tests changing account defaults.
 *
 * @group lingotek
 */
class LingotekChangeAccountDefaultsTest extends LingotekTestBase {

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->setupResources();
  }
  public function testChangeCommunity() {
    $this
      ->drupalGet('admin/lingotek/settings');
    $this
      ->assertTableValue('community', 'Test community (test_community)');
    $this
      ->assertTableValue('workflow', 'Test workflow (test_workflow)');
    $this
      ->assertTableValue('project', 'Test project (test_project)');
    $this
      ->assertTableValue('vault', 'Test vault (test_vault)');

    // Click on the Community link.
    $this
      ->clickLink(t('Edit defaults'), 0);
    $this
      ->drupalPostForm(NULL, [
      'community' => 'test_community2',
    ], t('Save configuration'));
    $this
      ->assertTableValue('community', 'Test community 2 (test_community2)');
    $this
      ->assertTableValue('workflow', 'Test workflow (test_workflow)');
    $this
      ->assertTableValue('project', 'Test project (test_project)');
    $this
      ->assertTableValue('vault', 'Test vault (test_vault)');

    // Click on the Project link.
    $this
      ->clickLink(t('Edit defaults'), 1);
    $this
      ->drupalPostForm(NULL, [
      'project' => 'test_project2',
      'vault' => 'test_vault2',
    ], t('Save configuration'));
    $this
      ->assertTableValue('community', 'Test community 2 (test_community2)');
    $this
      ->assertTableValue('workflow', 'Test workflow (test_workflow)');
    $this
      ->assertTableValue('project', 'Test project 2 (test_project2)');
    $this
      ->assertTableValue('vault', 'Test vault 2 (test_vault2)');
  }

  /**
   * Check to see if two values are equal.
   *
   * @param $field
   *   The field value to check.
   * @param $expected
   *   The expected value to check.
   * @param $message
   *   (optional) A message to display with the assertion. Do not translate
   *   messages: use \Drupal\Component\Utility\SafeMarkup::format() to embed
   *   variables in the message text, not t(). If left blank, a default message
   *   will be displayed.
   *
   * @return
   *   TRUE if the assertion succeeded, FALSE otherwise.
   */
  protected function assertTableValue($field, $expected, $message = '') {
    $xpathValue = $this
      ->xpath('//tr[@data-drupal-selector="edit-account-table-' . $field . '-row"]//td[2]');
    $value = $xpathValue[0]
      ->getText();
    return $this
      ->assertEquals($expected, $value, $message);
  }

  /**
   * Setup test resources for the test.
   */
  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();
  }

}

Classes

Namesort descending Description
LingotekChangeAccountDefaultsTest Tests changing account defaults.