class OEmbedSourceTest
Same name and namespace in other branches
- 10 core/modules/media/tests/src/Kernel/OEmbedSourceTest.php \Drupal\Tests\media\Kernel\OEmbedSourceTest
- 11.x core/modules/media/tests/src/Kernel/OEmbedSourceTest.php \Drupal\Tests\media\Kernel\OEmbedSourceTest
- 9 core/modules/media/tests/src/Kernel/OEmbedSourceTest.php \Drupal\Tests\media\Kernel\OEmbedSourceTest
@coversDefaultClass \Drupal\media\Plugin\media\Source\OEmbed
@group media
Hierarchy
- class \Drupal\KernelTests\KernelTestBase implements \Drupal\Core\DependencyInjection\ServiceProviderInterface uses \Drupal\KernelTests\AssertLegacyTrait, \Drupal\KernelTests\AssertContentTrait, \Drupal\Tests\AssertHelperTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\PhpunitCompatibilityTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\media\Kernel\MediaKernelTestBase uses \Drupal\Tests\media\Traits\MediaTypeCreationTrait extends \Drupal\KernelTests\KernelTestBase
- class \Drupal\Tests\media\Kernel\OEmbedSourceTest extends \Drupal\Tests\media\Kernel\MediaKernelTestBase
- class \Drupal\Tests\media\Kernel\MediaKernelTestBase uses \Drupal\Tests\media\Traits\MediaTypeCreationTrait extends \Drupal\KernelTests\KernelTestBase
Expanded class hierarchy of OEmbedSourceTest
File
-
core/
modules/ media/ tests/ src/ Kernel/ OEmbedSourceTest.php, line 21
Namespace
Drupal\Tests\media\KernelView source
class OEmbedSourceTest extends MediaKernelTestBase {
/**
* @covers ::getMetadata
*/
public function testGetMetadata() {
$configuration = [
'source_field' => 'field_test_oembed',
];
$plugin = OEmbed::create($this->container, $configuration, 'oembed', []);
// Test that NULL is returned for a media item with no source value.
$media = $this->prophesize('\\Drupal\\media\\MediaInterface');
$field_items = $this->prophesize('\\Drupal\\Core\\Field\\FieldItemListInterface');
$field_items->isEmpty()
->willReturn(TRUE);
$media->get($configuration['source_field'])
->willReturn($field_items->reveal());
$this->assertNull($plugin->getMetadata($media->reveal(), 'type'));
}
/**
* @covers ::getLocalThumbnailUri
*/
public function testLocalThumbnailUriQueryStringIsIgnored() {
// There's no need to resolve the resource URL in this test; we just need
// to fetch the resource.
$this->container
->set('media.oembed.url_resolver', $this->prophesize(UrlResolverInterface::class)
->reveal());
$thumbnail_url = Url::fromUri('internal:/core/misc/druplicon.png?foo=bar');
// Create a mocked resource whose thumbnail URL contains a query string.
$resource = $this->prophesize(Resource::class);
$resource->getTitle()
->willReturn('Test resource');
$resource->getThumbnailUrl()
->willReturn($thumbnail_url);
// The source plugin will try to fetch the remote thumbnail, so mock the
// HTTP client to ensure that request returns an empty "OK" response.
$http_client = $this->prophesize(Client::class);
$http_client->get(Argument::type('string'))
->willReturn(new Response());
$this->container
->set('http_client', $http_client->reveal());
// Mock the resource fetcher so that it will return our mocked resource.
$resource_fetcher = $this->prophesize(ResourceFetcherInterface::class);
$resource_fetcher->fetchResource(NULL)
->willReturn($resource->reveal());
$this->container
->set('media.oembed.resource_fetcher', $resource_fetcher->reveal());
$media_type = $this->createMediaType('oembed:video');
$source = $media_type->getSource();
$media = Media::create([
'bundle' => $media_type->id(),
$source->getSourceFieldDefinition($media_type)
->getName() => $this->randomString(),
]);
$media->save();
// Get the local thumbnail URI and ensure that it does not contain any
// query string.
$local_thumbnail_uri = $media_type->getSource()
->getMetadata($media, 'thumbnail_uri');
$expected_uri = 'public://oembed_thumbnails/' . Crypt::hashBase64('/core/misc/druplicon.png') . '.png';
$this->assertSame($expected_uri, $local_thumbnail_uri);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.