Change to tdd_blog
This commit is contained in:
parent
5be880e496
commit
ccaa426a38
7 changed files with 95 additions and 66 deletions
tests/src
17
tests/src/Functional/PageListTest.php
Normal file
17
tests/src/Functional/PageListTest.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
namespace Drupal\Tests\tdd_blog\Functional;
|
||||
|
||||
use Drupal\Tests\BrowserTestBase;
|
||||
|
||||
class PageListTest extends BrowserTestBase {
|
||||
|
||||
protected static $modules = ['tdd_blog'];
|
||||
|
||||
public function testBlogPageExists() {
|
||||
$this->drupalGet('blog');
|
||||
|
||||
$this->assertSession()->statusCodeEquals(200);
|
||||
}
|
||||
|
||||
}
|
|
@ -1,14 +1,14 @@
|
|||
<?php
|
||||
|
||||
namespace Drupal\Tests\tdd_dublin\Kernel;
|
||||
namespace Drupal\Tests\tdd_blog\Kernel;
|
||||
|
||||
use Drupal\Core\Datetime\DrupalDateTime;
|
||||
use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
|
||||
use Drupal\node\Entity\Node;
|
||||
use Drupal\Tests\node\Traits\NodeCreationTrait;
|
||||
use Drupal\views\ResultRow;
|
||||
|
||||
/**
|
||||
* @group tdd_dublin
|
||||
* @group tdd_blog
|
||||
*/
|
||||
class PageListTest extends EntityKernelTestBase {
|
||||
|
||||
|
@ -19,7 +19,7 @@ class PageListTest extends EntityKernelTestBase {
|
|||
*/
|
||||
public static $modules = [
|
||||
'node',
|
||||
'tdd_dublin',
|
||||
'tdd_blog',
|
||||
'views',
|
||||
];
|
||||
|
||||
|
@ -32,7 +32,7 @@ class PageListTest extends EntityKernelTestBase {
|
|||
$this->installEntitySchema('node');
|
||||
$this->installEntitySchema('user');
|
||||
|
||||
$this->installConfig(['filter', 'tdd_dublin']);
|
||||
$this->installConfig(['filter', 'tdd_blog']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -41,58 +41,59 @@ class PageListTest extends EntityKernelTestBase {
|
|||
* Ensure that only published pages are returned by the view. Unpublished
|
||||
* pages or content of different types should not be shown.
|
||||
*/
|
||||
public function testOnlyPublishedPagesAreShown() {
|
||||
// This is a published page, so it should be visible.
|
||||
public function testOnlyPublishedArticlesAreShown() {
|
||||
// This is a published article, so it should be visible.
|
||||
$this->createNode(['type' => 'page', 'status' => TRUE]);
|
||||
|
||||
// This is an article, so it should not be visible.
|
||||
// This is a page, so it should not be visible.
|
||||
$this->createNode(['type' => 'article']);
|
||||
|
||||
// This page is not published, so it should not be visible.
|
||||
$this->createNode(['type' => 'page', 'status' => FALSE]);
|
||||
// This article is not published, so it should not be visible.
|
||||
$this->createNode(['type' => 'article', 'status' => FALSE]);
|
||||
|
||||
// Rather than testing the rendered HTML, we are going to load the view
|
||||
// results programmatically and run assertions against the data it returns.
|
||||
// This makes it easier to test certain scenarios, and ensures that the
|
||||
// test is future-proofed and won't fail at a later date due to a change in
|
||||
// the presentation code.
|
||||
$nids = array_map(function (ResultRow $result) {
|
||||
return $result->_entity->id();
|
||||
}, views_get_view_result('pages'));
|
||||
$nids = $this->getViewResults();
|
||||
|
||||
// Only node 1 matches the criteria of being a published page, so only that
|
||||
// node ID should be being returned from the view. assertEquals() can be
|
||||
// used to compare the expected result to what is being returned.
|
||||
$this->assertEquals([1], $nids);
|
||||
$this->assertEquals([2], $nids);
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensure that the results are ordered by title.
|
||||
*/
|
||||
public function testResultsAreOrderedAlphabetically() {
|
||||
// Create a number of nodes with different titles, specifying the title for
|
||||
// each. These are intentionally not in alphabetical order so that when the
|
||||
// assertion is written for the results to be in the expected order, it
|
||||
// will fail, rather than them being in the expected order based on the
|
||||
// default sort criteria based on the created timestamp.
|
||||
//
|
||||
// Also, the titles are added explicitly so that the assertion can be
|
||||
// written against the expected order based on these titles. If they
|
||||
// weren't added, each title would be automatically generated so the
|
||||
// expected order would not be known beforehand.
|
||||
$this->createNode(['title' => 'Page A']);
|
||||
$this->createNode(['title' => 'Page D']);
|
||||
$this->createNode(['title' => 'Page C']);
|
||||
$this->createNode(['title' => 'Page B']);
|
||||
public function testArticlesAreOrderedByDate() {
|
||||
$this->createNode(['type' => 'article', 'created' => (new DrupalDateTime('+1 day'))->getTimestamp()]);
|
||||
$this->createNode(['type' => 'article', 'created' => (new DrupalDateTime('+1 month'))->getTimestamp()]);
|
||||
$this->createNode(['type' => 'article', 'created' => (new DrupalDateTime('+3 days'))->getTimestamp()]);
|
||||
$this->createNode(['type' => 'article', 'created' => (new DrupalDateTime('+1 hour'))->getTimestamp()]);
|
||||
|
||||
// Get the result data from the view.
|
||||
$nids = array_map(function (ResultRow $result) {
|
||||
return $result->_entity->id();
|
||||
}, views_get_view_result('pages'));
|
||||
$nids = $this->getViewResults();
|
||||
|
||||
// Compare the expected order based on the titles defined above to the
|
||||
// ordered results from the view.
|
||||
$this->assertEquals([1, 4, 3, 2], $nids);
|
||||
$this->assertEquals([4, 1, 3, 2], $nids);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load the view and get the results.
|
||||
*
|
||||
* @param string $view
|
||||
* (optional) The name of the view. Defaults to 'blog'.
|
||||
*
|
||||
* @return array
|
||||
* An array of returned entity IDs.
|
||||
*/
|
||||
private function getViewResults($view = 'blog') {
|
||||
return array_map(function (ResultRow $result) {
|
||||
return $result->_entity->id();
|
||||
}, views_get_view_result($view));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue