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

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

OEL-1017: Create rendering tests for full and teaser displays and update drone php version.

parent 5b03dd42
No related branches found
No related tags found
1 merge request!68OEL-1017: [oe_whitelabel] Style the news content type
......@@ -105,4 +105,4 @@ matrix:
- lowest
- highest
PHP_VERSION:
- 7.3
- 7.4
<?php
declare(strict_types = 1);
namespace Drupal\Tests\oe_whitelabel\Functional;
use Symfony\Component\DomCrawler\Crawler;
use Drupal\Tests\media\Traits\MediaTypeCreationTrait;
use Drupal\media\Entity\Media;
use Drupal\file\Entity\File;
use Drupal\Tests\TestFileCreationTrait;
/**
* Tests that the News content type renders correctly.
*
* @group batch1
*/
class ContentNewsRenderTest extends ContentRenderTestBase {
use MediaTypeCreationTrait;
use TestFileCreationTrait;
/**
* {@inheritdoc}
*/
public static $modules = [
'system',
'oe_whitelabel_helper',
'oe_starter_content_news',
'oe_whitelabel_news',
];
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
// Create a sample media entity to be embedded.
File::create([
'uri' => $this->getTestFiles('image')[0]->uri,
])->save();
$media_image = Media::create([
'bundle' => 'image',
'name' => 'Starter Image test',
'oe_media_image' => [
[
'target_id' => 1,
'alt' => 'Starter Image test alt',
'title' => 'Starter Image test title',
],
],
]);
$media_image->save();
// 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->set('oe_featured_media', [$media_image]);
$node->save();
$this->node = $node;
}
/**
* Tests that the News page renders correctly.
*/
public function testNewsRendering(): void {
$this->drupalGet($this->node->toUrl());
// Build node full view.
$builder = \Drupal::entityTypeManager()->getViewBuilder('node');
$build = $builder->view($this->node, 'full');
$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 publication date.
$this->assertEquals(
'10 February 2022',
trim($content_banner->filter('.card-body > div.my-4')->text())
);
// Assert content banner summary.
$this->assertEquals(
'http://www.example.org is a web page',
trim($content_banner->filter('.oe-news__oe-summary')->text())
);
// Assert the news content.
$this->assertEquals(
'News body',
trim($crawler->filter('.oe-news__body')->text())
);
}
/**
* Tests that the News page renders correctly.
*/
public function testNewsRenderingTeaser(): void {
$this->drupalGet($this->node->toUrl());
// Build node full 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 publication date.
$this->assertEquals(
'http://www.example.org is a web page',
trim($crawler->filter('p.card-text')->text())
);
// Assert content banner publication date.
$this->assertEquals(
'10 February 2022',
trim($crawler->filter('div.card-body > span.text-muted')->text())
);
}
}
<?php
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 {
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
// Enable and set OpenEuropa Theme as default.
\Drupal::service('theme_installer')->install(['oe_whitelabel']);
\Drupal::configFactory()
->getEditable('system.theme')
->set('default', 'oe_whitelabel')
->save();
// Rebuild the ui_pattern definitions to collect the ones provided by
// oe_whitelabel itself.
\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