MediaEmbedFilterDisabledIntegrationsTest.php
Same filename in other branches
- 9 core/modules/media/tests/src/Kernel/MediaEmbedFilterDisabledIntegrationsTest.php
- 9 core/modules/quickedit/tests/src/Kernel/MediaEmbedFilterDisabledIntegrationsTest.php
- 8.9.x core/modules/media/tests/src/Kernel/MediaEmbedFilterDisabledIntegrationsTest.php
- 10 core/modules/media/tests/src/Kernel/MediaEmbedFilterDisabledIntegrationsTest.php
Namespace
Drupal\Tests\media\KernelFile
-
core/
modules/ media/ tests/ src/ Kernel/ MediaEmbedFilterDisabledIntegrationsTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\media\Kernel;
/**
* Tests that media embed disables certain integrations.
*
* @coversDefaultClass \Drupal\media\Plugin\Filter\MediaEmbed
* @group media
*/
class MediaEmbedFilterDisabledIntegrationsTest extends MediaEmbedFilterTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'contextual',
// @see media_test_embed_entity_view_alter()
'media_test_embed',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->container
->get('current_user')
->getAccount()
->addRole($this->drupalCreateRole([
'access contextual links',
]));
}
/**
* @covers ::renderMedia
* @covers ::disableContextualLinks
*/
public function testDisabledIntegrations() : void {
$text = $this->createEmbedCode([
'data-entity-type' => 'media',
'data-entity-uuid' => static::EMBEDDED_ENTITY_UUID,
]);
$this->applyFilter($text);
$this->assertCount(1, $this->cssSelect('div[data-media-embed-test-view-mode]'));
$this->assertCount(0, $this->cssSelect('div[data-media-embed-test-view-mode].contextual-region'));
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
MediaEmbedFilterDisabledIntegrationsTest | Tests that media embed disables certain integrations. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.