ProviderRepositoryTest.php

Same filename in this branch
  1. 11.x core/modules/media/tests/src/Unit/ProviderRepositoryTest.php
  2. 11.x core/modules/media/tests/src/Functional/ProviderRepositoryTest.php
Same filename and directory in other branches
  1. 9 core/modules/media/tests/src/Unit/ProviderRepositoryTest.php
  2. 9 core/modules/media/tests/src/Kernel/ProviderRepositoryTest.php
  3. 9 core/modules/media/tests/src/Functional/ProviderRepositoryTest.php
  4. 8.9.x core/modules/media/tests/src/Functional/ProviderRepositoryTest.php
  5. 10 core/modules/media/tests/src/Unit/ProviderRepositoryTest.php
  6. 10 core/modules/media/tests/src/Functional/ProviderRepositoryTest.php
  7. 10 core/modules/media/tests/src/Kernel/ProviderRepositoryTest.php

Namespace

Drupal\Tests\media\Kernel

File

core/modules/media/tests/src/Kernel/ProviderRepositoryTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\media\Kernel;

use Drupal\media\OEmbed\ProviderException;
use GuzzleHttp\Psr7\Utils;

/**
 * Tests the oEmbed provider repository.
 *
 * @covers \Drupal\media\OEmbed\ProviderRepository
 *
 * @group media
 */
class ProviderRepositoryTest extends MediaKernelTestBase {
  
  /**
   * Tests that provider discovery fails if the provider database is empty.
   *
   * @param string $content
   *   The expected JSON content of the provider database.
   *
   * @dataProvider providerEmptyProviderList
   */
  public function testEmptyProviderList($content) : void {
    $response = $this->prophesize('\\GuzzleHttp\\Psr7\\Response');
    $response->getBody()
      ->willReturn(Utils::streamFor($content));
    $client = $this->createMock('\\GuzzleHttp\\Client');
    $client->method('request')
      ->withAnyParameters()
      ->willReturn($response->reveal());
    $this->container
      ->set('http_client', $client);
    $this->expectException(ProviderException::class);
    $this->expectExceptionMessage('Remote oEmbed providers database returned invalid or empty list.');
    $this->container
      ->get('media.oembed.provider_repository')
      ->getAll();
  }
  
  /**
   * Data provider for testEmptyProviderList().
   *
   * @see ::testEmptyProviderList()
   *
   * @return array
   *   An array of test cases.
   */
  public static function providerEmptyProviderList() {
    return [
      'empty array' => [
        '[]',
      ],
      'empty string' => [
        '',
      ],
    ];
  }
  
  /**
   * Tests that provider discovery fails with a non-existent provider database.
   *
   * @param string $providers_url
   *   The URL of the provider database.
   * @param string $exception_message
   *   The expected exception message.
   *
   * @dataProvider providerNonExistingProviderDatabase
   */
  public function testNonExistingProviderDatabase($providers_url, $exception_message) : void {
    $this->config('media.settings')
      ->set('oembed_providers_url', $providers_url)
      ->save();
    $this->expectException(ProviderException::class);
    $this->expectExceptionMessage($exception_message);
    $this->container
      ->get('media.oembed.provider_repository')
      ->getAll();
  }
  
  /**
   * Data provider for testEmptyProviderList().
   *
   * @see ::testEmptyProviderList()
   *
   * @return array
   *   An array of test cases.
   */
  public static function providerNonExistingProviderDatabase() {
    return [
      [
        'http://oembed1.com/providers.json',
        'Could not retrieve the oEmbed provider database from http://oembed1.com/providers.json',
      ],
      [
        'http://oembed.com/providers1.json',
        'Could not retrieve the oEmbed provider database from http://oembed.com/providers1.json',
      ],
    ];
  }

}

Classes

Title Deprecated Summary
ProviderRepositoryTest Tests the oEmbed provider repository.

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