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

Skip to content
Snippets Groups Projects
Commit 06b23131 authored by drishu's avatar drishu
Browse files

OEL-453: Check more markup in test.

parent 28913cc6
No related branches found
No related tags found
1 merge request!6OEL-453: [oe_whitelabel] authentication
name: OpenEuropa Whitelabel Authentication
type: module
description: The OpenEuropa Whitelabel autentication integration.
package: OpenEuropa Whitelabel Theme
core_version_requirement: ^8.9 || ^9.1
dependencies:
- openeuropa:oe_authentication
......@@ -8,7 +8,7 @@ use Drupal\KernelTests\KernelTestBase;
use Symfony\Component\DomCrawler\Crawler;
/**
* Tests the Site Branding Block rendering.
* Tests the OE Authentication LoginBlock rendering.
*/
class AuthenticationBlockTest extends KernelTestBase {
......@@ -39,8 +39,8 @@ class AuthenticationBlockTest extends KernelTestBase {
->getEditable('system.theme')
->set('default', 'oe_whitelabel')
->save();
$this->container->set('theme.registry', NULL);
$this->container->set('theme.registry', NULL);
$this->container->get('cache.render')->deleteAll();
}
......@@ -70,6 +70,13 @@ class AuthenticationBlockTest extends KernelTestBase {
$actual = $crawler->filter('#block-euloginlinkblock');
$this->assertCount(1, $actual);
$icon = $actual->filter('svg');
$this->assertSame('bi icon--m', $icon->attr('class'));
$use = $icon->filter('use');
$expected = '/themes/contrib/oe_bootstrap_theme/assets/icons/bootstrap-icons.svg#person-fill';
$this->assertSame($expected, $use->attr('xlink:href'));
$link = $crawler->filter('a');
$this->assertSame('Log in', $link->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