OEmbedIframeControllerTest.php in Drupal 10
File
core/modules/media/tests/src/Kernel/OEmbedIframeControllerTest.php
View source
<?php
namespace Drupal\Tests\media\Kernel;
use Drupal\Core\Render\HtmlResponse;
use Drupal\media\Controller\OEmbedIframeController;
use Drupal\media\OEmbed\Provider;
use Drupal\media\OEmbed\Resource;
use Prophecy\Argument;
use Symfony\Component\HttpFoundation\Request;
class OEmbedIframeControllerTest extends MediaKernelTestBase {
protected static $modules = [
'media_test_oembed',
];
public function providerBadHashParameter() {
return [
'no hash' => [
'',
],
'invalid hash' => [
$this
->randomString(),
],
];
}
public function testBadHashParameter($hash) {
$controller = $this->container
->get('controller_resolver')
->getControllerFromDefinition('\\Drupal\\media\\Controller\\OEmbedIframeController::render');
$this
->assertIsCallable($controller);
$this
->expectException('\\Symfony\\Component\\HttpKernel\\Exception\\AccessDeniedHttpException');
$this
->expectExceptionMessage('This resource is not available');
$request = new Request([
'url' => 'https://example.com/path/to/resource',
'hash' => $hash,
]);
$controller($request);
}
public function testResourcePassedToPreprocess() {
$hash = $this->container
->get('media.oembed.iframe_url_helper')
->getHash('', 0, 0);
$url_resolver = $this
->prophesize('\\Drupal\\media\\OEmbed\\UrlResolverInterface');
$resource_fetcher = $this
->prophesize('\\Drupal\\media\\OEmbed\\ResourceFetcherInterface');
$provider = new Provider('YouTube', 'https://youtube.com', [
[
'url' => 'https://youtube.com/foo',
],
]);
$resource = Resource::rich('<iframe src="https://youtube.com/watch?feature=oembed"></iframe>', 320, 240, $provider);
$resource_fetcher
->fetchResource(Argument::cetera())
->willReturn($resource);
$this->container
->set('media.oembed.url_resolver', $url_resolver
->reveal());
$this->container
->set('media.oembed.resource_fetcher', $resource_fetcher
->reveal());
$request = new Request([
'url' => '',
'hash' => $hash,
]);
$response = $this->container
->get('html_response.attachments_processor')
->processAttachments(OEmbedIframeController::create($this->container)
->render($request));
assert($response instanceof HtmlResponse);
$content = $response
->getContent();
$this
->assertStringContainsString('&pasta=rigatoni', $content);
$this
->assertStringContainsString('test.css', $content);
$this
->assertContains('yo_there', $response
->getCacheableMetadata()
->getCacheTags());
$this
->assertStringContainsString('text/html', $response->headers
->get('Content-Type'));
}
}