function UrlResolverTest::providerEndpointMatching

Same name in other branches
  1. 9 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()
  3. 11.x 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',
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.