You are here

UploadFetcherTest.php in Feeds 8.3

File

tests/src/Unit/Feeds/Fetcher/UploadFetcherTest.php
View source
<?php

namespace Drupal\Tests\feeds\Unit\Feeds\Fetcher;

use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Tests\feeds\Unit\FeedsUnitTestCase;
use Drupal\feeds\FeedInterface;
use Drupal\feeds\FeedTypeInterface;
use Drupal\feeds\Feeds\Fetcher\UploadFetcher;
use Drupal\feeds\StateInterface;
use Drupal\file\FileUsage\FileUsageInterface;
use RuntimeException;

/**
 * @coversDefaultClass \Drupal\feeds\Feeds\Fetcher\UploadFetcher
 * @group feeds
 */
class UploadFetcherTest extends FeedsUnitTestCase {

  /**
   * The file entity storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $fileStorage;

  /**
   * The Feeds fetcher plugin under test.
   *
   * @var \Drupal\feeds\Feeds\Fetcher\UploadFetcher
   */
  protected $fetcher;

  /**
   * The state object.
   *
   * @var \Drupal\feeds\StateInterface
   */
  protected $state;

  /**
   * {@inheritdoc}
   */
  public function setUp() {
    parent::setUp();
    $this->fileStorage = $this
      ->createMock(EntityStorageInterface::class);
    $entity_manager = $this
      ->createMock(EntityTypeManagerInterface::class);
    $entity_manager
      ->expects($this
      ->once())
      ->method('getStorage')
      ->with('file')
      ->will($this
      ->returnValue($this->fileStorage));
    $this->fetcher = new UploadFetcher([
      'feed_type' => $this
        ->createMock(FeedTypeInterface::class),
    ], 'test_plugin', [
      'plugin_type' => 'fetcher',
    ], $this
      ->createMock(FileUsageInterface::class), $entity_manager, $this
      ->getMockStreamWrapperManager());
    $this->fetcher
      ->setStringTranslation($this
      ->getStringTranslationStub());
    $this->state = $this
      ->createMock(StateInterface::class);
  }

  /**
   * Tests a fetch that succeeds.
   *
   * @covers ::fetch
   */
  public function testFetch() {
    touch('vfs://feeds/test_file');
    $feed = $this
      ->createMock(FeedInterface::class);
    $feed
      ->expects($this
      ->any())
      ->method('getSource')
      ->will($this
      ->returnValue('vfs://feeds/test_file'));
    $this->fetcher
      ->fetch($feed, $this->state);
  }

  /**
   * Tests a fetch that fails.
   *
   * @covers ::fetch
   */
  public function testFetchException() {
    $feed = $this
      ->createMock(FeedInterface::class);
    $feed
      ->expects($this
      ->any())
      ->method('getSource')
      ->will($this
      ->returnValue('vfs://feeds/test_file'));
    $this
      ->expectException(RuntimeException::class);
    $this->fetcher
      ->fetch($feed, $this->state);
  }

  /**
   * @covers ::onFeedDeleteMultiple
   */
  public function testOnFeedDeleteMultiple() {
    $feed = $this
      ->createMock(FeedInterface::class);
    $feed
      ->expects($this
      ->exactly(2))
      ->method('getConfigurationFor')
      ->with($this->fetcher)
      ->will($this
      ->returnValue([
      'fid' => 10,
    ] + $this->fetcher
      ->defaultFeedConfiguration()));
    $feeds = [
      $feed,
      $feed,
    ];
    $this->fetcher
      ->onFeedDeleteMultiple($feeds);
  }

}

Classes

Namesort descending Description
UploadFetcherTest @coversDefaultClass \Drupal\feeds\Feeds\Fetcher\UploadFetcher @group feeds