You are here

public function UrlResolverTest::testEndpointMatching in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/media/tests/src/Functional/UrlResolverTest.php \Drupal\Tests\media\Functional\UrlResolverTest::testEndpointMatching()
  2. 10 core/modules/media/tests/src/Functional/UrlResolverTest.php \Drupal\Tests\media\Functional\UrlResolverTest::testEndpointMatching()

Tests resource URL resolution when the asset URL can be matched to a provider endpoint.

@covers ::getProviderByUrl @covers ::getResourceUrl

@dataProvider providerEndpointMatching

Parameters

string $url: The asset URL to resolve.

string $resource_url: The expected oEmbed resource URL of the asset.

File

core/modules/media/tests/src/Functional/UrlResolverTest.php, line 74

Class

UrlResolverTest
Tests the oEmbed URL resolver service.

Namespace

Drupal\Tests\media\Functional

Code

public function testEndpointMatching($url, $resource_url) {
  $this
    ->assertSame($resource_url, $this->container
    ->get('media.oembed.url_resolver')
    ->getResourceUrl($url));
}