You are here

protected function LingotekManagementTestTrait::assertLingotekCheckSourceStatusLink in Lingotek Translation 3.6.x

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

Asserts there is a link for checking the content source status.

Parameters

string $document_id: The Lingotek document ID. Optional, defaults to 'dummy-document-hash-id'.

string $entity_type_id: The entity type ID. Optional, defaults to node.

string|null $prefix: Language prefix if any. Optional, defaults to NULL.

66 calls to LingotekManagementTestTrait::assertLingotekCheckSourceStatusLink()
ChineseBulkTranslationTest::testNodeTranslationUsingLinks in tests/src/Functional/ChineseBulkTranslationTest.php
Tests that a node can be translated using the links on the management page.
LingotekEntityTestBulkTranslationTest::testCheckSourceStatusNotCompleted in tests/src/Functional/LingotekEntityTestBulkTranslationTest.php
Tests that all the statuses are set when using the Check Translations action.
LingotekEntityTestBulkTranslationTest::testCheckTranslationsAction in tests/src/Functional/LingotekEntityTestBulkTranslationTest.php
Tests that all the statuses are set when using the Check Translations action.
LingotekEntityTestBulkTranslationTest::testCheckTranslationsWithDownloadedLocales in tests/src/Functional/LingotekEntityTestBulkTranslationTest.php
Tests that current locales are not cleared when checking statuses.
LingotekEntityTestBulkTranslationTest::testEntityTestTranslationUsingActions in tests/src/Functional/LingotekEntityTestBulkTranslationTest.php
Tests that a entity_test_mul can be translated using the actions on the management page.

... See full list

3 methods override LingotekManagementTestTrait::assertLingotekCheckSourceStatusLink()
LingotekContentTypeBulkTranslationTest::assertLingotekCheckSourceStatusLink in tests/src/Functional/LingotekContentTypeBulkTranslationTest.php
Asserts there is a link for checking the content source status.
LingotekFieldBodyBulkTranslationTest::assertLingotekCheckSourceStatusLink in tests/src/Functional/LingotekFieldBodyBulkTranslationTest.php
Asserts there is a link for checking the content source status.
LingotekSystemSiteBulkTranslationTest::assertLingotekCheckSourceStatusLink in tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php
Asserts there is a link for checking the content source status.

File

tests/src/Functional/LingotekManagementTestTrait.php, line 83

Class

LingotekManagementTestTrait
Trait with Lingotek management form helpers.

Namespace

Drupal\Tests\lingotek\Functional

Code

protected function assertLingotekCheckSourceStatusLink($document_id = 'dummy-document-hash-id', $entity_type_id = 'node', $prefix = NULL, $destination_entity_type_id = NULL, $destination_entity_id = NULL) {
  $basepath = \Drupal::request()
    ->getBasePath();
  $languagePrefix = $prefix === NULL ? '' : '/' . $prefix;
  $destination_entity_type_id = $destination_entity_type_id ?: $entity_type_id;
  $href = $basepath . $languagePrefix . '/admin/lingotek/entity/check_upload/' . $document_id;
  if ($destination = $this
    ->getDestination($destination_entity_type_id, $prefix)) {
    $href .= $destination;
  }
  $this
    ->assertLinkByHref($href);
}