acquia_cms_page-1.3.0/tests/src/Functional/PageTest.php
tests/src/Functional/PageTest.php
<?php
namespace Drupal\Tests\acquia_cms_page\Functional;
use Drupal\taxonomy\Entity\Term;
use Drupal\Tests\acquia_cms_common\Functional\ContentTypeTestBase;
/**
* Tests the Page content type that ships with Acquia CMS.
*
* @group acquia_cms_page
* @group acquia_cms
* @group medium_risk
* @group push
*/
class PageTest extends ContentTypeTestBase {
/**
* {@inheritdoc}
*/
protected $nodeType = 'page';
/**
* {@inheritdoc}
*/
protected static $modules = [
'acquia_cms_page',
'menu_ui',
'metatag_open_graph',
'metatag_twitter_cards',
'pathauto',
'schema_article',
];
/**
* Disable strict config schema checks in this test.
*
* Cohesion has a lot of config schema errors, and until they are all fixed,
* this test cannot pass unless we disable strict config schema checking
* altogether. Since strict config schema isn't critically important in
* testing this functionality, it's okay to disable it for now, but it should
* be re-enabled (i.e., this property should be removed) as soon as possible.
*
* @var bool
*/
// @codingStandardsIgnoreStart
protected $strictConfigSchema = FALSE;
// @codingStandardsIgnoreEnd
/**
* {@inheritdoc}
*/
protected function doTestEditForm() : void {
$session = $this->getSession();
$page = $session->getPage();
$assert_session = $this->assertSession();
$account = $this->drupalCreateUser();
$account->addRole('content_author');
$account->save();
$this->drupalLogin($account);
$image_url = $this->getImageUrl();
$this->drupalGet('/node/add/page');
// Assert that the current user can access the form to create a page. Note
// that status codes cannot be asserted in functional JavaScript tests.
$assert_session->statusCodeEquals(200);
// Assert that the expected fields show up.
$assert_session->fieldExists('Title');
// Assert that layout canvas field is not present.
$assert_session->fieldNotExists('Layout Canvas');
$page->fillField('Body', 'This is an awesome remix!');
// The search description should not have a summary.
$assert_session->fieldNotExists('Summary');
// The standard Categories and Tags fields should be present.
$this->assertCategoriesAndTagsFieldsExist();
// There should be a field to add an image, and it should be using the
// media library.
$assert_session->elementExists('css', '#field_page_image-media-library-wrapper');
// Although Cohesion is not installed in this test, we do want to be sure
// that a hidden field exists to store Cohesion's JSON-encoded layout canvas
// data. For our purposes, checking for the existence of the hidden field
// should be sufficient.
$assert_session->optionExists('Save as', 'Draft');
// The "Published", "Promoted to front page", and "Sticky at top of lists"
// checkboxes should not be anywhere on this form. We want to assert the
// absence of these fields by their form element name, since it's possible
// to change the labels using base field overrides.
$assert_session->fieldNotExists('status[value]');
$assert_session->fieldNotExists('promote[value]');
$assert_session->fieldNotExists('sticky[value]');
// Preview should be disabled for this content type.
$assert_session->buttonNotExists('Preview');
// Ensure it's possible to add a menu link, but only to the main menu, which
// should be selected by default.
$menu = $assert_session->selectExists('menu[menu_parent]');
$this->assertSame('main:', $menu->getValue());
$this->assertCount(1, $menu->findAll('css', 'option'));
// Assert that the fields are in the correct order.
$this->assertFieldsOrder([
'title',
'body',
'field_categories',
'field_page_image',
'field_tags',
'moderation_state',
]);
// Submit the form and ensure that we see the expected error message(s).
$page->pressButton('Save');
$assert_session->pageTextContains('Title field is required.');
// Fill in the required fields and assert that things went as expected.
$page->fillField('Title', 'Living with video');
// For convenience, the parent class creates a few categories during set-up.
// @see \Drupal\Tests\acquia_cms_common\Functional\ContentModelTestBase::setUp()
$page->selectFieldOption('Categories', 'Music');
$page->fillField('Tags', 'techno');
$page->pressButton('Save');
$assert_session->pageTextContains('Living with video has been created.');
// Assert that the Pathauto pattern was used to create the URL alias.
$assert_session->addressEquals('/living-video');
// Assert that the expected schema.org data and meta tags are present.
$this->assertSchemaData([
'@graph' => [
[
'@type' => 'Article',
'name' => 'Living with video',
'description' => 'This is an awesome remix!',
'image' => [
'@type' => 'ImageObject',
'url' => $image_url,
],
],
],
]);
$this->assertMetaTag('keywords', 'Music, techno');
$this->assertMetaTag('description', 'This is an awesome remix!');
$this->assertMetaTag('og:type', 'page');
$this->assertMetaTag('og:url', $session->getCurrentUrl());
$this->assertMetaTag('og:title', 'Living with video');
$this->assertMetaTag('og:description', 'This is an awesome remix!');
$this->assertMetaTag('og:image', $image_url);
$this->assertMetaTag('twitter:card', 'summary_large_image');
$this->assertMetaTag('twitter:title', 'Living with video');
$this->assertMetaTag('twitter:description', 'This is an awesome remix!');
// In the release of 2.x of metatag 'twitter:url' is removed.
// @see https://www.drupal.org/node/3329072
// $this->assertMetaTag('twitter:url', $session->getCurrentUrl());
$this->assertMetaTag('twitter:image', $image_url);
// Assert that the techno tag was created dynamically in the correct
// vocabulary.
/** @var \Drupal\taxonomy\TermInterface $tag */
$tag = Term::load(4);
$this->assertInstanceOf(Term::class, $tag);
$this->assertSame('tags', $tag->bundle());
$this->assertSame('techno', $tag->getName());
}
}
