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

Skip to content
Snippets Groups Projects
Commit 28913cc6 authored by escuriola's avatar escuriola Committed by drishu
Browse files

OEL-453: Authentication Block Test.

parent 22dbbd4f
No related branches found
No related tags found
1 merge request!6OEL-453: [oe_whitelabel] authentication
<?php
declare(strict_types = 1);
namespace Drupal\Tests\oe_whitelabel\Kernel;
use Drupal\KernelTests\KernelTestBase;
use Symfony\Component\DomCrawler\Crawler;
/**
* Tests the Site Branding Block rendering.
*/
class AuthenticationBlockTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'block',
'cas',
'components',
'externalauth',
'oe_authentication',
'ui_patterns',
'ui_patterns_library',
'user',
'system',
];
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
/** @var \Drupal\Core\Extension\ThemeInstallerInterface $theme_installer */
\Drupal::service('theme_installer')->install(['oe_whitelabel']);
\Drupal::configFactory()
->getEditable('system.theme')
->set('default', 'oe_whitelabel')
->save();
$this->container->set('theme.registry', NULL);
$this->container->get('cache.render')->deleteAll();
}
/**
* Tests the rendering of blocks.
*/
public function testBlockRendering(): void {
$entity_type_manager = $this->container
->get('entity_type.manager')
->getStorage('block');
$entity = $entity_type_manager->create([
'id' => 'euloginlinkblock',
'theme' => 'oe_whitelabel',
'plugin' => 'oe_authentication_login_block',
'settings' => [
'id' => 'oe_authentication_login_block',
'label' => 'EU Login Link Block',
'provider' => 'oe_authentication',
'label_display' => '0',
],
]);
$entity->save();
$builder = \Drupal::entityTypeManager()->getViewBuilder('block');
$build = $builder->view($entity, 'block');
$render = $this->container->get('renderer')->renderRoot($build);
$crawler = new Crawler($render->__toString());
$actual = $crawler->filter('#block-euloginlinkblock');
$this->assertCount(1, $actual);
}
}
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