You are here

class ResourceFetcherTest in Drupal 9

Same name in this branch
  1. 9 core/modules/media/tests/src/Functional/ResourceFetcherTest.php \Drupal\Tests\media\Functional\ResourceFetcherTest
  2. 9 core/modules/media/tests/src/Unit/ResourceFetcherTest.php \Drupal\Tests\media\Unit\ResourceFetcherTest
  3. 9 core/modules/media/tests/src/Kernel/ResourceFetcherTest.php \Drupal\Tests\media\Kernel\ResourceFetcherTest

@group media

@coversDefaultClass \Drupal\media\OEmbed\ResourceFetcher

Hierarchy

Expanded class hierarchy of ResourceFetcherTest

File

core/modules/media/tests/src/Unit/ResourceFetcherTest.php, line 21

Namespace

Drupal\Tests\media\Unit
View source
class ResourceFetcherTest extends UnitTestCase {

  /**
   * Tests that resources are fetched with a hard-coded timeout.
   */
  public function testFetchTimeout() : void {
    $url = 'https://example.com/oembed?url=resource';
    $headers = [
      'Content-Type' => [
        'text/javascript',
      ],
    ];
    $body = Json::encode([
      'version' => '1.0',
      'type' => 'video',
      'html' => 'test',
    ]);
    $response = new Response(200, $headers, $body);
    $client = $this
      ->prophesize(Client::class);
    $client
      ->request('GET', $url, [
      RequestOptions::TIMEOUT => 5,
    ])
      ->shouldBeCalled()
      ->willReturn($response);
    $fetcher = new ResourceFetcher($client
      ->reveal(), $this
      ->createMock('\\Drupal\\media\\OEmbed\\ProviderRepositoryInterface'), new NullBackend('default'));
    $fetcher
      ->fetchResource($url);
  }

  /**
   * Tests how the resource fetcher handles unknown Content-Type headers.
   *
   * @covers ::fetchResource
   */
  public function testUnknownContentTypeHeader() : void {
    $headers = [
      'Content-Type' => [
        'text/html',
      ],
    ];
    $body = Json::encode([
      'version' => '1.0',
      'type' => 'video',
      'html' => 'test',
    ]);
    $valid_response = new Response(200, $headers, $body);

    // Strip off the trailing '}' to produce a response that will cause a JSON
    // parse error.
    $invalid_response = new Response(200, $headers, rtrim($body, '}'));

    // A response that is valid JSON, but does not decode to an array, should
    // produce an exception as well.
    $non_array_response = new Response(200, $headers, '"Valid JSON, but not an array..."');
    $mock_handler = new MockHandler([
      $valid_response,
      $invalid_response,
      $non_array_response,
    ]);
    $client = new Client([
      'handler' => HandlerStack::create($mock_handler),
    ]);
    $providers = $this
      ->createMock('\\Drupal\\media\\OEmbed\\ProviderRepositoryInterface');
    $fetcher = new ResourceFetcher($client, $providers, new NullBackend('default'));

    /** @var \Drupal\media\OEmbed\Resource $resource */
    $resource = $fetcher
      ->fetchResource('valid');

    // The resource should have been successfully decoded as JSON.
    $this
      ->assertSame('video', $resource
      ->getType());
    $this
      ->assertSame('test', $resource
      ->getHtml());

    // Invalid JSON should throw an exception.
    try {
      $fetcher
        ->fetchResource('invalid');
      $this
        ->fail('Expected a ResourceException to be thrown for invalid JSON.');
    } catch (ResourceException $e) {
      $this
        ->assertSame('Error decoding oEmbed resource: Syntax error', $e
        ->getMessage());
    }

    // Valid JSON that does not produce an array should also throw an exception.
    $this
      ->expectException(ResourceException::class);
    $this
      ->expectExceptionMessage('The oEmbed resource could not be decoded.');
    $fetcher
      ->fetchResource('non_array');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
ResourceFetcherTest::testFetchTimeout public function Tests that resources are fetched with a hard-coded timeout.
ResourceFetcherTest::testUnknownContentTypeHeader public function Tests how the resource fetcher handles unknown Content-Type headers.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 308
UnitTestCase::setUpBeforeClass public static function