You are here

public function LingotekNodeParagraphsTranslationTest::testBulkManagementParagraphsDontAllowFilteringByLabel in Lingotek Translation 8

Paragraphs don't have a title, so we should disallow filtering by it.

File

src/Tests/LingotekNodeParagraphsTranslationTest.php, line 204

Class

LingotekNodeParagraphsTranslationTest
Tests translating a node with multiple locales including paragraphs.

Namespace

Drupal\lingotek\Tests

Code

public function testBulkManagementParagraphsDontAllowFilteringByLabel() {

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

  // Add paragraphed content.
  $this
    ->drupalGet('node/add/paragraphed_content_demo');
  $this
    ->drupalPostForm(NULL, NULL, t('Add Image + Text'));
  $this
    ->drupalPostForm(NULL, NULL, t('Add Image + Text'));
  $edit = array();
  $edit['title[0][value]'] = 'Llamas are cool';
  $edit['langcode[0][value]'] = 'en';
  $edit['field_paragraphs_demo[0][subform][field_text_demo][0][value]'] = 'Llamas are very cool for the first time';
  $edit['field_paragraphs_demo[1][subform][field_text_demo][0][value]'] = 'Llamas are very cool for the second time';
  $this
    ->drupalPostForm(NULL, $edit, t('Save and publish'));
  $this
    ->goToContentBulkManagementForm('paragraph');
  $this
    ->assertNoField('filters[wrapper][label]', 'There is no filter by label as paragraphs have no label.');
}