You are here

public function UrlResolverTest::providerEndpointMatching 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::providerEndpointMatching()
  2. 10 core/modules/media/tests/src/Functional/UrlResolverTest.php \Drupal\Tests\media\Functional\UrlResolverTest::providerEndpointMatching()

Data provider for testEndpointMatching().

Return value

array

See also

::testEndpointMatching()

File

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

Class

UrlResolverTest
Tests the oEmbed URL resolver service.

Namespace

Drupal\Tests\media\Functional

Code

public function providerEndpointMatching() {
  return [
    'match by endpoint: Twitter' => [
      'https://twitter.com/Dries/status/999985431595880448',
      'https://publish.twitter.com/oembed?url=https://twitter.com/Dries/status/999985431595880448',
    ],
    'match by endpoint: Vimeo' => [
      'https://vimeo.com/14782834',
      'https://vimeo.com/api/oembed.json?url=https://vimeo.com/14782834',
    ],
    'match by endpoint: CollegeHumor' => [
      'http://www.collegehumor.com/video/40002870/lets-not-get-a-drink-sometime',
      'http://www.collegehumor.com/oembed.json?url=http://www.collegehumor.com/video/40002870/lets-not-get-a-drink-sometime',
    ],
    'match by endpoint: Facebook' => [
      'https://www.facebook.com/facebook/videos/10153231379946729/',
      'https://www.facebook.com/plugins/video/oembed.json?url=https://www.facebook.com/facebook/videos/10153231379946729/',
    ],
  ];
}