
| Current Path : /var/www/html/rocksensor1/web/core/modules/media/tests/src/Unit/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/modules/media/tests/src/Unit/EndpointTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\media\Unit;
use Drupal\media\OEmbed\Endpoint;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\media\OEmbed\Endpoint
*
* @group media
*/
class EndpointTest extends UnitTestCase {
/**
* @covers ::matchUrl
*/
public function testMatchUrl(): void {
$endpoint = new Endpoint(
'https://www.youtube.com/oembed',
$this->createMock('\Drupal\media\OEmbed\Provider'),
['https://*.youtube.com/playlist?list=*']
);
$this->assertTrue($endpoint->matchUrl('https://www.youtube.com/playlist?list=aBc-EzAs123'));
}
/**
* @covers ::matchUrl
*/
public function testCaseSensitiveMatch(): void {
$endpoint = new Endpoint(
'https://www.example.com/oembed',
$this->createMock('\Drupal\media\OEmbed\Provider'),
['https://*.example.com/Video/*'],
);
$this->assertTrue($endpoint->matchUrl('https://foo.example.com/Video/bar'));
}
}