You are here

public function LingotekAccountTest::testAccountCanConnect in Lingotek Translation 8

Tests that the dashboard cannot be accessed without a valid user.

File

src/Tests/LingotekAccountTest.php, line 29
Contains \Drupal\lingotek\Tests\LingotekDashboardTest.

Class

LingotekAccountTest
Tests the Lingotek dashboard.

Namespace

Drupal\lingotek\Tests

Code

public function testAccountCanConnect() {

  // Login as admin.
  $this
    ->drupalLogin($this->rootUser);

  // Try to navigate to the Dashboard page, and assert we are redirected.
  $this
    ->drupalGet('admin/lingotek/setup/account');

  // Fake the connection to an account in Lingotek.
  $this
    ->clickLink('Connect Lingotek Account');

  // Our fake backend generates a token, returns to the site, completes the
  // handshake and return some fake data.
  $this
    ->assertText('Your account settings have been saved.');

  // Then we can select the defaults for the different fields.
  $this
    ->drupalPostForm(NULL, [
    'community' => 'test_community',
  ], 'Next');
  $this
    ->assertText('The configuration options have been saved.');
  $this
    ->drupalPostForm(NULL, [
    'project' => 'test_project',
    'vault' => 'test_vault',
  ], 'Save configuration');
  $this
    ->assertText('The configuration options have been saved.');

  // We are done with the defaults, we should be redirected to the dashboard.
  $this
    ->assertText('Dashboard');
  $this
    ->assertUrl('admin/lingotek');
}