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

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

OEL-1017: Set content variable using markup on teaser template and update...

OEL-1017: Set content variable using markup on teaser template and update Functional test node view rendering.
parent 349724bc
No related branches found
No related tags found
1 merge request!68OEL-1017: [oe_whitelabel] Style the news content type
......@@ -7,14 +7,9 @@
{% set _title %}
<a class="text-underline-hover" href="{{ url }}">{{ label }}</a>
{% endset %}
{% set _content = {
'#type': 'html_tag',
'#tag': 'span',
'#attributes': {
class: 'text-muted text-nowrap me-4-5',
},
'#value': content.oe_publication_date,
}%}
{% set _content %}
<span class="text-muted text-nowrap me-4-5">{{ content.oe_publication_date }}</span>
{% endset %}
<article{{attributes}}>
{{ pattern('card', {
variant: 'search',
......
......@@ -79,15 +79,11 @@ class ContentNewsRenderTest extends WhitelabelBrowserTestBase {
* Tests that the News page renders correctly in full display.
*/
public function testNewsRenderingFull(): void {
$node = \Drupal::entityTypeManager()
->getStorage('node')
->loadByProperties(['title' => 'Test news node']);
// 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());
$crawler = new Crawler((string)$render);
// Assert content banner title.
$content_banner = $crawler->filter('.bcl-content-banner');
......@@ -131,7 +127,7 @@ class ContentNewsRenderTest extends WhitelabelBrowserTestBase {
$builder = \Drupal::entityTypeManager()->getViewBuilder('node');
$build = $builder->view($this->node, 'teaser');
$render = $this->container->get('renderer')->renderRoot($build);
$crawler = new Crawler($render->__toString());
$crawler = new Crawler((string)$render);
// Assert content banner title.
$this->assertEquals(
......
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