You are here

protected function LingotekInterfaceTranslationTestTrait::assertLingotekInterfaceTranslationDownloadLink in Lingotek Translation 3.6.x

Same name and namespace in other branches
  1. 4.0.x tests/src/Functional/LingotekInterfaceTranslationTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekInterfaceTranslationTestTrait::assertLingotekInterfaceTranslationDownloadLink()
  2. 3.2.x tests/src/Functional/LingotekInterfaceTranslationTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekInterfaceTranslationTestTrait::assertLingotekInterfaceTranslationDownloadLink()
  3. 3.3.x tests/src/Functional/LingotekInterfaceTranslationTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekInterfaceTranslationTestTrait::assertLingotekInterfaceTranslationDownloadLink()
  4. 3.4.x tests/src/Functional/LingotekInterfaceTranslationTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekInterfaceTranslationTestTrait::assertLingotekInterfaceTranslationDownloadLink()
  5. 3.5.x tests/src/Functional/LingotekInterfaceTranslationTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekInterfaceTranslationTestTrait::assertLingotekInterfaceTranslationDownloadLink()
  6. 3.7.x tests/src/Functional/LingotekInterfaceTranslationTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekInterfaceTranslationTestTrait::assertLingotekInterfaceTranslationDownloadLink()
  7. 3.8.x tests/src/Functional/LingotekInterfaceTranslationTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekInterfaceTranslationTestTrait::assertLingotekInterfaceTranslationDownloadLink()
1 call to LingotekInterfaceTranslationTestTrait::assertLingotekInterfaceTranslationDownloadLink()
LingotekInterfaceTranslationTest::testInterfaceTranslationUsingLinks in tests/src/Functional/LingotekInterfaceTranslationTest.php
Tests that a node can be translated using the links on the management page.

File

tests/src/Functional/LingotekInterfaceTranslationTestTrait.php, line 55

Class

LingotekInterfaceTranslationTestTrait
Trait with Lingotek interface translation test assertion helpers.

Namespace

Drupal\Tests\lingotek\Functional

Code

protected function assertLingotekInterfaceTranslationDownloadLink($component, $locale) {
  $basepath = \Drupal::request()
    ->getBasePath();
  $href = $basepath . '/admin/lingotek/interface-translation/download-translation?component=' . $component . '&locale=' . $locale;
  if ($destination = $this
    ->getDestination()) {
    $href .= $destination;
  }
  $this
    ->assertSession()
    ->linkByHrefExists($href, 0);
}