You are here

public function ChannelsTagsTest::testChannelsCreation in Thunder 8.5

Same name and namespace in other branches
  1. 8.2 tests/src/FunctionalJavascript/ChannelsTagsTest.php \Drupal\Tests\thunder\FunctionalJavascript\ChannelsTagsTest::testChannelsCreation()
  2. 8.3 tests/src/FunctionalJavascript/ChannelsTagsTest.php \Drupal\Tests\thunder\FunctionalJavascript\ChannelsTagsTest::testChannelsCreation()
  3. 8.4 tests/src/FunctionalJavascript/ChannelsTagsTest.php \Drupal\Tests\thunder\FunctionalJavascript\ChannelsTagsTest::testChannelsCreation()
  4. 6.2.x tests/src/FunctionalJavascript/ChannelsTagsTest.php \Drupal\Tests\thunder\FunctionalJavascript\ChannelsTagsTest::testChannelsCreation()
  5. 6.0.x tests/src/FunctionalJavascript/ChannelsTagsTest.php \Drupal\Tests\thunder\FunctionalJavascript\ChannelsTagsTest::testChannelsCreation()
  6. 6.1.x tests/src/FunctionalJavascript/ChannelsTagsTest.php \Drupal\Tests\thunder\FunctionalJavascript\ChannelsTagsTest::testChannelsCreation()

Test channel creation, tagging of articles and channel page with articles.

File

tests/src/FunctionalJavascript/ChannelsTagsTest.php, line 27

Class

ChannelsTagsTest
Testing of Channels and Tags.

Namespace

Drupal\Tests\thunder\FunctionalJavascript

Code

public function testChannelsCreation() {
  $this
    ->drupalGet('admin/structure/taxonomy/manage/channel/add');
  $page = $this
    ->getSession()
    ->getPage();

  // Create new Channel with 2 paragraphs.
  $this
    ->setFieldValue($page, 'name[0][value]', 'New Section');
  $this
    ->addImageParagraph('field_paragraphs', [
    'media:5',
  ]);
  $this
    ->addTextParagraph('field_paragraphs', 'Text for Channel');
  $this
    ->clickSave();

  // Create 1. Article.
  $this
    ->articleFillNew([
    'field_channel' => 6,
    'title[0][value]' => 'Article 1',
    'field_seo_title[0][value]' => 'Article 1',
    'field_tags[]' => [
      'New Section',
      'Tag1',
    ],
    'field_teaser_text[0][value]' => 'Teaser 1',
  ]);
  $this
    ->selectMedia('field_teaser_media', 'image_browser', [
    'media:17',
  ]);
  $this
    ->waitForImages('[data-drupal-selector="edit-field-teaser-media-current-items-0"] img', 1);
  $this
    ->addTextParagraph('field_paragraphs', 'Article Text 1');
  $this
    ->setModerationState('published');
  $this
    ->clickSave();

  // Create 2. Article.
  $this
    ->articleFillNew([
    'field_channel' => 6,
    'title[0][value]' => 'Article 2',
    'field_seo_title[0][value]' => 'Article 2',
    'field_tags[]' => [
      [
        7,
        'New Section',
      ],
      'Tag2',
    ],
    'field_teaser_text[0][value]' => 'Teaser 2',
  ]);
  $this
    ->selectMedia('field_teaser_media', 'image_browser', [
    'media:16',
  ]);
  $this
    ->waitForImages('[data-drupal-selector="edit-field-teaser-media-current-items-0"] img', 1);
  $this
    ->addTextParagraph('field_paragraphs', 'Article Text 2');
  $this
    ->setModerationState('published');
  $this
    ->clickSave();

  // Check is everything created properly for Article 1.
  $this
    ->drupalGet('article-1');
  $tagLinks = $this
    ->xpath("//div[contains(@class, 'field--name-field-tags')]//a");
  $this
    ->assertSession()
    ->pageTextContains('Article Text 1');
  $this
    ->assertEquals(2, count($tagLinks));
  $this
    ->assertSession()
    ->elementExists('xpath', "//div[contains(@class, 'field--name-field-tags')]//a[@href='/new-section-0' and text()='New Section']");
  $this
    ->assertSession()
    ->elementExists('xpath', "//div[contains(@class, 'field--name-field-tags')]//a[@href='/tag1' and text()='Tag1']");

  // Check is everything created properly for Article 2.
  $this
    ->drupalGet('article-2');
  $tagLinks = $this
    ->xpath("//div[contains(@class, 'field--name-field-tags')]//a");
  $this
    ->assertSession()
    ->pageTextContains('Article Text 2');
  $this
    ->assertEquals(2, count($tagLinks));
  $this
    ->assertSession()
    ->elementExists('xpath', "//div[contains(@class, 'field--name-field-tags')]//a[@href='/new-section-0' and text()='New Section']");
  $this
    ->assertSession()
    ->elementExists('xpath', "//div[contains(@class, 'field--name-field-tags')]//a[@href='/tag2' and text()='Tag2']");

  // Open Channel and check all teaser images and texts from added articles,
  // also channel image and text.
  $this
    ->drupalGet('new-section');
  $this
    ->createScreenshot($this
    ->getScreenshotFolder() . '/ChannelsTagsTest_testChannelsCreation_' . date('Ymd_His') . '.png');
  $this
    ->assertSession()
    ->elementExists('xpath', '//img[contains(@src, "picjumbo.com_HNCK7373.jpg")]');
  $this
    ->assertSession()
    ->elementExists('xpath', '//img[contains(@src, "picjumbo.com_HNCK7731.jpg")]');
  $this
    ->assertSession()
    ->elementExists('xpath', '//img[contains(@src, "thunder-city.jpg")]');
  $this
    ->assertSession()
    ->linkExists('Article 1');
  $this
    ->assertSession()
    ->linkExists('Article 2');
  $this
    ->assertSession()
    ->pageTextContains('Text for Channel');
  $this
    ->assertSession()
    ->pageTextContains('Teaser 1');
  $this
    ->assertSession()
    ->pageTextContains('Teaser 2');
}