localgov_step_by_step-2.1.10/tests/src/Functional/PagesIntegrationTest.php
tests/src/Functional/PagesIntegrationTest.php
<?php
namespace Drupal\Tests\localgov_step_by_step\Functional;
use Drupal\Tests\BrowserTestBase;
use Drupal\Tests\Traits\Core\CronRunTrait;
use Drupal\Tests\node\Traits\NodeCreationTrait;
use Drupal\Tests\system\Functional\Menu\AssertBreadcrumbTrait;
use Drupal\Tests\taxonomy\Traits\TaxonomyTestTrait;
use Drupal\node\NodeInterface;
use Drupal\taxonomy\Entity\Vocabulary;
/**
* Tests pages working together with search, pathauto, services and topics.
*
* @group localgov_step_by_step
*/
class PagesIntegrationTest extends BrowserTestBase {
use NodeCreationTrait;
use AssertBreadcrumbTrait;
use TaxonomyTestTrait;
use CronRunTrait;
/**
* {@inheritdoc}
*/
protected $profile = 'testing';
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* A user with permission to bypass content access checks.
*
* @var \Drupal\user\UserInterface
*/
protected $adminUser;
/**
* The node storage.
*
* @var \Drupal\node\NodeStorageInterface
*/
protected $nodeStorage;
/**
* Modules to enable.
*
* @var array
*/
protected static $modules = [
'localgov_core',
'localgov_services_landing',
'localgov_services_sublanding',
'localgov_services_navigation',
'localgov_topics',
'localgov_step_by_step',
'localgov_search',
'localgov_search_db',
];
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->drupalPlaceBlock('system_breadcrumb_block');
$this->adminUser = $this->drupalCreateUser([
'bypass node access',
'administer nodes',
]);
$this->nodeStorage = $this->container->get('entity_type.manager')->getStorage('node');
}
/**
* Post overview into a topic.
*/
public function testTopicIntegration() {
$vocabulary = Vocabulary::load('localgov_topic');
$term = $this->createTerm($vocabulary);
$this->drupalLogin($this->adminUser);
$this->drupalGet('node/add/localgov_step_by_step_overview');
$form = $this->getSession()->getPage();
$form->fillField('edit-title-0-value', 'Step by Step 1');
$form->fillField('edit-body-0-summary', 'Step by Step 1 summary');
$form->fillField('edit-body-0-value', 'Step by Step 1 description');
$form->fillField('edit-localgov-topic-classified-0-target-id', "({$term->id()})");
$form->checkField('edit-status-value');
$form->pressButton('edit-submit');
}
/**
* Post overview into a service.
*/
public function testServicesIntegration() {
$landing = $this->createNode([
'title' => 'Landing Page 1',
'type' => 'localgov_services_landing',
'status' => NodeInterface::PUBLISHED,
]);
$sublanding = $this->createNode([
'title' => 'Sublanding 1',
'type' => 'localgov_services_sublanding',
'status' => NodeInterface::PUBLISHED,
'localgov_services_parent' => ['target_id' => $landing->id()],
]);
$this->drupalLogin($this->adminUser);
$this->drupalGet('node/add/localgov_step_by_step_overview');
$form = $this->getSession()->getPage();
$form->fillField('edit-title-0-value', 'Step by Step 1');
$form->fillField('edit-body-0-summary', 'Step by Step 1 summary');
$form->fillField('edit-body-0-value', 'Step by Step 1 description');
$form->fillField('edit-localgov-services-parent-0-target-id', "Sublanding 1 ({$sublanding->id()})");
$form->checkField('edit-status-value');
$form->pressButton('edit-submit');
$this->assertSession()->pageTextContains('Step by Step 1');
$trail = ['' => 'Home'];
$trail += ['landing-page-1' => 'Landing Page 1'];
$trail += ['landing-page-1/sublanding-1' => 'Sublanding 1'];
$this->assertBreadcrumb(NULL, $trail);
}
/**
* LocalGov Search integration.
*/
public function testLocalgovSearch() {
$body = [
'value' => 'Science is the search for truth, that is the effort to understand the world: it involves the rejection of bias, of dogma, of revelation, but not the rejection of morality.',
'summary' => 'One of the greatest joys known to man is to take a flight into ignorance in search of knowledge.',
];
$this->createNode([
'title' => 'Test Step By Step',
'body' => $body,
'type' => 'localgov_step_by_step_overview',
'status' => NodeInterface::PUBLISHED,
]);
$this->cronRun();
$this->drupalGet('search', ['query' => ['s' => 'bias+dogma+revelation']]);
$this->assertSession()->pageTextContains('Test Step By Step');
$this->assertSession()->responseContains('<strong>bias</strong>');
$this->assertSession()->responseContains('<strong>dogma</strong>');
$this->assertSession()->responseContains('<strong>revelation</strong>');
}
/**
* Pathauto and breadcrumbs.
*/
public function testPagePath() {
$overview = $this->createNode([
'title' => 'Overview 1',
'type' => 'localgov_step_by_step_overview',
'status' => NodeInterface::PUBLISHED,
]);
$this->createNode([
'title' => 'Page 1',
'type' => 'localgov_step_by_step_page',
'status' => NodeInterface::PUBLISHED,
'localgov_step_parent' => ['target_id' => $overview->id()],
]);
$this->drupalGet('step-by-step/overview-1/page-1');
$this->assertSession()->pageTextContains('Page 1');
$trail = ['' => 'Home'];
$trail += ['step-by-step/overview-1' => 'Overview 1'];
$this->assertBreadcrumb(NULL, $trail);
}
}
