EndpointTest.php

Same filename and directory in other branches
  1. 10 core/modules/media/tests/src/Unit/EndpointTest.php
  2. 11.x core/modules/media/tests/src/Unit/EndpointTest.php

Namespace

Drupal\Tests\media\Unit

File

core/modules/media/tests/src/Unit/EndpointTest.php

View source
<?php

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'));
    }

}

Classes

Title Deprecated Summary
EndpointTest @coversDefaultClass \Drupal\media\OEmbed\Endpoint

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