Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 5011331f authored by Gilmar Lima's avatar Gilmar Lima
Browse files

OEL-1017: Rename base test class, remove browser rendering from test and...

OEL-1017: Rename base test class, remove browser rendering from test and update display image assertion.
parent 2d04bc43
No related branches found
No related tags found
1 merge request!68OEL-1017: [oe_whitelabel] Style the news content type
......@@ -12,10 +12,8 @@ use Drupal\Tests\TestFileCreationTrait;
/**
* Tests that the News content type renders correctly.
*
* @group batch1
*/
class ContentNewsRenderTest extends ContentRenderTestBase {
class ContentNewsRenderTest extends WhitelabelBrowserTestBase {
use MediaTypeCreationTrait;
use TestFileCreationTrait;
......@@ -24,16 +22,13 @@ class ContentNewsRenderTest extends ContentRenderTestBase {
* {@inheritdoc}
*/
public static $modules = [
'system',
'oe_whitelabel_helper',
'oe_starter_content_news',
'oe_whitelabel_news',
];
/**
* A node to be rendered in diferent display views.
* A node to be rendered in different display views.
*
* @var \Drupal\node\Entity\Node
* @var \Drupal\node\NodeInterface
*/
protected $node;
......@@ -62,17 +57,19 @@ class ContentNewsRenderTest extends ContentRenderTestBase {
// Create a News node.
/** @var \Drupal\node\Entity\Node $node */
$node = $this->getStorage('node')->create([
'type' => 'oe_news',
'title' => 'Test news node',
'oe_summary' => 'http://www.example.org is a web page',
'body' => 'News body',
'oe_publication_date' => [
'value' => '2022-02-09T20:00:00',
],
'uid' => 1,
'status' => 1,
]);
$node = \Drupal::entityTypeManager()
->getStorage('node')
->create([
'type' => 'oe_news',
'title' => 'Test news node',
'oe_summary' => 'http://www.example.org is a web page',
'body' => 'News body',
'oe_publication_date' => [
'value' => '2022-02-09T20:00:00',
],
'uid' => 1,
'status' => 1,
]);
$node->set('oe_featured_media', [$media_image]);
$node->save();
$this->node = $node;
......@@ -82,7 +79,9 @@ class ContentNewsRenderTest extends ContentRenderTestBase {
* Tests that the News page renders correctly in full display.
*/
public function testNewsRenderingFull(): void {
$this->drupalGet($this->node->toUrl());
$node = \Drupal::entityTypeManager()
->getStorage('node')
->loadByProperties(['title' => 'Test news node']);
// Build node full view.
$builder = \Drupal::entityTypeManager()->getViewBuilder('node');
......@@ -90,18 +89,23 @@ class ContentNewsRenderTest extends ContentRenderTestBase {
$render = $this->container->get('renderer')->renderRoot($build);
$crawler = new Crawler($render->__toString());
// Assert content banner image.
$picture = $this->assertSession()->elementExists('css', 'img.card-img-top');
$image = $this->assertSession()->elementExists('css', 'img.rounded-1', $picture);
$this->assertStringContainsString('image-test.png', $image->getAttribute('src'));
$this->assertEquals('Starter Image test alt', $image->getAttribute('alt'));
// Assert content banner title.
$content_banner = $crawler->filter('.bcl-content-banner');
$this->assertEquals(
'Test news node',
trim($content_banner->filter('.card-title')->text())
);
// Assert content banner image.
$image = $content_banner->filter('img');
$this->assertCount(1, $image);
$this->assertCount(1, $image->filter('.card-img-top'));
$this->assertStringContainsString(
'image-test.png',
trim($image->attr('src'))
);
$this->assertEquals('Starter Image test alt',
$image->attr('alt')
);
// Assert content banner publication date.
$this->assertEquals(
'10 February 2022',
......@@ -123,26 +127,25 @@ class ContentNewsRenderTest extends ContentRenderTestBase {
* Tests that the News page renders correctly in teaser display.
*/
public function testNewsRenderingTeaser(): void {
$this->drupalGet($this->node->toUrl());
// Build node teaser view.
$builder = \Drupal::entityTypeManager()->getViewBuilder('node');
$build = $builder->view($this->node, 'teaser');
$render = $this->container->get('renderer')->renderRoot($build);
$crawler = new Crawler($render->__toString());
// Assert content banner image.
$picture = $this->assertSession()->elementExists('css', 'img.card-img-top');
$image = $this->assertSession()->elementExists('css', 'img.rounded-1', $picture);
$this->assertStringContainsString('image-test.png', $image->getAttribute('src'));
$this->assertEquals('Starter Image test alt', $image->getAttribute('alt'));
// Assert content banner title.
$this->assertEquals(
'Test news node',
trim($crawler->filter('h5.card-title')->text())
);
// Assert content banner image.
$image = $crawler->filter('img');
$this->assertCount(1, $image);
$this->assertCount(1, $image->filter('.card-img-top'));
$this->assertStringContainsString(
'image-test.png',
trim($image->attr('src'))
);
// Assert content banner content.
$this->assertEquals(
'http://www.example.org is a web page',
......
......@@ -4,13 +4,12 @@ declare(strict_types = 1);
namespace Drupal\Tests\oe_whitelabel\Functional;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Tests\BrowserTestBase;
/**
* Base class for testing content types.
*/
abstract class ContentRenderTestBase extends BrowserTestBase {
abstract class WhitelabelBrowserTestBase extends BrowserTestBase {
/**
* {@inheritdoc}
......@@ -35,17 +34,4 @@ abstract class ContentRenderTestBase extends BrowserTestBase {
\Drupal::service('plugin.manager.ui_patterns')->clearCachedDefinitions();
}
/**
* Gets the entity type's storage.
*
* @param string $entity_type_id
* The entity type ID to get a storage for.
*
* @return \Drupal\Core\Entity\EntityStorageInterface
* The entity type's storage.
*/
protected function getStorage(string $entity_type_id): EntityStorageInterface {
return \Drupal::entityTypeManager()->getStorage($entity_type_id);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment