public function LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions in Lingotek Translation 3.6.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
- 4.0.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
- 3.0.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
- 3.1.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
- 3.2.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
- 3.3.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
- 3.4.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
- 3.5.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
- 3.7.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
- 3.8.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithAPaymentRequiredErrorUsingActions()
Test that we handle errors in update.
File
- tests/src/ Functional/ LingotekContentTypeBulkTranslationTest.php, line 856 
Class
- LingotekContentTypeBulkTranslationTest
- Tests translating a config entity using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testUpdatingWithAPaymentRequiredErrorUsingActions() {
  $assert_session = $this
    ->assertSession();
  // Set upload as manual.
  $this
    ->saveLingotekConfigTranslationSettings([
    'node_type' => 'manual',
  ]);
  $this
    ->goToConfigBulkManagementForm('node_type');
  // Upload the document, which must succeed.
  $basepath = \Drupal::request()
    ->getBasePath();
  $assert_session
    ->linkByHrefExists($basepath . '/admin/lingotek/config/upload/node_type/article?destination=' . $basepath . '/admin/lingotek/config/manage');
  $edit = [
    'table[article]' => TRUE,
    $this
      ->getBulkOperationFormName() => $this
      ->getBulkOperationNameForUpload('node_type'),
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertText('Operations completed.');
  // Check upload.
  $this
    ->clickLink('EN');
  // Edit the node type.
  $edit = [
    'name' => 'Blogpost',
  ];
  $this
    ->drupalPostForm('/admin/structure/types/manage/article', $edit, t('Save content type'));
  \Drupal::state()
    ->set('lingotek.must_payment_required_error_in_update', TRUE);
  $this
    ->goToConfigBulkManagementForm('node_type');
  $edit = [
    'table[article]' => TRUE,
    $this
      ->getBulkOperationFormName() => $this
      ->getBulkOperationNameForUpload('node_type'),
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertText('Community has been disabled. Please contact support@lingotek.com to re-enable your community.');
  // Check the right class is added.
  $this
    ->assertSourceStatus('EN', Lingotek::STATUS_ERROR);
  // The node type has been marked with the error status.
  $nodeType = NodeType::load('article');
  /** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $translation_service */
  $translation_service = \Drupal::service('lingotek.config_translation');
  $source_status = $translation_service
    ->getSourceStatus($nodeType);
  $this
    ->assertEqual(Lingotek::STATUS_ERROR, $source_status, 'The node type has been marked as error.');
  // I can still re-try the upload.
  \Drupal::state()
    ->set('lingotek.must_payment_required_error_in_update', FALSE);
  $this
    ->clickLink('EN');
  $this
    ->assertText('Blogpost has been updated.');
}