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

Skip to content
Snippets Groups Projects
Unverified Commit ac52df4f authored by Gilmar Lima's avatar Gilmar Lima Committed by GitHub
Browse files

OEL-1017: Correct test comments and create test instance node.

parent 1c1e56bc
No related branches found
No related tags found
1 merge request!68OEL-1017: [oe_whitelabel] Style the news content type
......@@ -30,13 +30,20 @@ class ContentNewsRenderTest extends ContentRenderTestBase {
'oe_whitelabel_news',
];
/**
* A node to be rendered in diferent display views.
*
* @var \Drupal\node\Entity\Node
*/
protected $node;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
// Create a sample media entity to be embedded.
// Create a sample image media entity to be embedded.
File::create([
'uri' => $this->getTestFiles('image')[0]->uri,
])->save();
......@@ -72,9 +79,9 @@ class ContentNewsRenderTest extends ContentRenderTestBase {
}
/**
* Tests that the News page renders correctly.
* Tests that the News page renders correctly in full display.
*/
public function testNewsRendering(): void {
public function testNewsRenderingFull(): void {
$this->drupalGet($this->node->toUrl());
// Build node full view.
......@@ -113,13 +120,13 @@ class ContentNewsRenderTest extends ContentRenderTestBase {
}
/**
* Tests that the News page renders correctly.
* Tests that the News page renders correctly in teaser display.
*/
public function testNewsRenderingTeaser(): void {
$this->drupalGet($this->node->toUrl());
// Build node full view.
// Build node teaser view.
$builder = \Drupal::entityTypeManager()->getViewBuilder('node');
$build = $builder->view($this->node, 'teaser');
$render = $this->container->get('renderer')->renderRoot($build);
......@@ -136,7 +143,7 @@ class ContentNewsRenderTest extends ContentRenderTestBase {
'Test news node',
trim($crawler->filter('h5.card-title')->text())
);
// Assert content banner publication date.
// Assert content banner content.
$this->assertEquals(
'http://www.example.org is a web page',
trim($crawler->filter('p.card-text')->text())
......
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