You are here

class SyndicationParserTest in Feeds 8.3

@coversDefaultClass \Drupal\feeds\Feeds\Parser\SyndicationParser @group feeds

Hierarchy

Expanded class hierarchy of SyndicationParserTest

File

tests/src/Unit/Feeds/Parser/SyndicationParserTest.php, line 19

Namespace

Drupal\Tests\feeds\Unit\Feeds\Parser
View source
class SyndicationParserTest extends FeedsUnitTestCase {

  /**
   * The Feeds parser plugin under test.
   *
   * @var \Drupal\feeds\Feeds\Parser\SyndicationParser
   */
  protected $parser;

  /**
   * The feed type entity.
   *
   * @var \Drupal\feeds\FeedTypeInterface
   */
  protected $feedType;

  /**
   * The feed entity.
   *
   * @var \Drupal\feeds\FeedInterface
   */
  protected $feed;

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

  /**
   * A list of syndication readers.
   *
   * @var array
   */
  protected $readerExtensions = [
    'feed.reader.dublincoreentry' => 'Zend\\Feed\\Reader\\Extension\\DublinCore\\Entry',
    'feed.reader.dublincorefeed' => 'Zend\\Feed\\Reader\\Extension\\DublinCore\\Feed',
    'feed.reader.contententry' => 'Zend\\Feed\\Reader\\Extension\\Content\\Entry',
    'feed.reader.atomentry' => 'Zend\\Feed\\Reader\\Extension\\Atom\\Entry',
    'feed.reader.atomfeed' => 'Zend\\Feed\\Reader\\Extension\\Atom\\Feed',
    'feed.reader.slashentry' => 'Zend\\Feed\\Reader\\Extension\\Slash\\Entry',
    'feed.reader.wellformedwebentry' => 'Zend\\Feed\\Reader\\Extension\\WellFormedWeb\\Entry',
    'feed.reader.threadentry' => 'Zend\\Feed\\Reader\\Extension\\Thread\\Entry',
    'feed.reader.podcastentry' => 'Zend\\Feed\\Reader\\Extension\\Podcast\\Entry',
    'feed.reader.podcastfeed' => 'Zend\\Feed\\Reader\\Extension\\Podcast\\Feed',
    'feed.reader.georssentry' => 'Drupal\\feeds\\Zend\\Extension\\Georss\\Entry',
  ];

  /**
   * {@inheritdoc}
   */
  public function setUp() {
    parent::setUp();
    $container = new ContainerBuilder();
    $manager = new ZfExtensionManagerSfContainer('feed.reader.');
    $manager
      ->setContainer($container);
    $manager
      ->setStandalone(StandaloneExtensionManager::class);
    foreach ($this->readerExtensions as $key => $class) {
      $container
        ->set($key, new $class());
    }
    $container
      ->set('feed.bridge.reader', $manager);
    \Drupal::setContainer($container);
    $this->feedType = $this
      ->createMock('Drupal\\feeds\\FeedTypeInterface');
    $configuration = [
      'feed_type' => $this->feedType,
    ];
    $this->parser = new SyndicationParser($configuration, 'syndication', []);
    $this->parser
      ->setStringTranslation($this
      ->getStringTranslationStub());
    $this->state = new State();
    $this->feed = $this
      ->createMock('Drupal\\feeds\\FeedInterface');
    $this->feed
      ->expects($this
      ->any())
      ->method('getType')
      ->will($this
      ->returnValue($this->feedType));
  }

  /**
   * Tests parsing a RSS feed that succeeds.
   *
   * @covers ::parse
   */
  public function testParse() {
    $file = $this
      ->resourcesPath() . '/rss/googlenewstz.rss2';
    $fetcher_result = new RawFetcherResult(file_get_contents($file), $this
      ->getMockFileSystem());
    $result = $this->parser
      ->parse($this->feed, $fetcher_result, $this->state);
    $this
      ->assertSame(count($result), 6);
    $this
      ->assertSame($result[0]
      ->get('title'), "First thoughts: Dems' Black Tuesday - msnbc.com");
    $this
      ->assertSame($result[0]
      ->get('author_name'), 'Person Name');
    $this
      ->assertSame($result[0]
      ->get('timestamp'), 1262805987);
    $this
      ->assertSame($result[0]
      ->get('updated'), 1262805987);
    $this
      ->assertSame($result[0]
      ->get('guid'), 'tag:news.google.com,2005:cluster=17593687403189');
    $this
      ->assertSame($result[3]
      ->get('title'), 'NEWSMAKER-New Japan finance minister a fiery battler - Reuters');
  }

  /**
   * Tests parsing an Atom feed.
   *
   * @covers ::parse
   */
  public function testParseAtom() {
    $file = $this
      ->resourcesPath() . '/atom/entries.atom';
    $fetcher_result = new RawFetcherResult(file_get_contents($file), $this
      ->getMockFileSystem());
    $result = $this->parser
      ->parse($this->feed, $fetcher_result, $this->state);
    $this
      ->assertSame(count($result), 3);
    $this
      ->assertSame($result[0]
      ->get('title'), 'Re-spin the patch');
    $this
      ->assertSame($result[0]
      ->get('content'), 'Re-spin the patch for feeds 7.x-2.0-beta2.');
    $this
      ->assertSame($result[0]
      ->get('description'), 'Re-spin the patch for feeds 7.x-2.0-beta2.');
    $this
      ->assertSame($result[0]
      ->get('author_name'), 'natew');
    $this
      ->assertSame($result[0]
      ->get('timestamp'), 1475082480);
    $this
      ->assertSame($result[0]
      ->get('updated'), 1477756140);
    $this
      ->assertSame($result[0]
      ->get('url'), 'node/1281496#comment-11669575');
    $this
      ->assertSame($result[0]
      ->get('guid'), 'comment-11669575');
  }

  /**
   * Tests parsing an invalid feed.
   *
   * @covers ::parse
   */
  public function testInvalidFeed() {
    $fetcher_result = new RawFetcherResult('beep boop', $this
      ->getMockFileSystem());
    $this
      ->expectException(RuntimeException::class);
    $result = $this->parser
      ->parse($this->feed, $fetcher_result, $this->state);
  }

  /**
   * Tests parsing an empty feed.
   *
   * @covers ::parse
   */
  public function testEmptyFeed() {
    $result = new RawFetcherResult('', $this
      ->getMockFileSystem());
    $this
      ->expectException(EmptyFeedException::class);
    $this->parser
      ->parse($this->feed, $result, $this->state);
  }

  /**
   * @covers ::getMappingSources
   */
  public function testGetMappingSources() {

    // Not really much to test here.
    $this
      ->assertSame(count($this->parser
      ->getMappingSources()), 17);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FeedsMockingTrait::getMockAccount protected function Mocks an account object.
FeedsMockingTrait::getMockedAccountSwitcher protected function Returns a mocked AccountSwitcher object.
FeedsMockingTrait::getMockFeed protected function Returns a mocked feed entity.
FeedsMockingTrait::getMockFeedType protected function Returns a mocked feed type entity.
FeedsMockingTrait::getMockFieldDefinition protected function Mocks a field definition. 1
FeedsMockingTrait::getMockFileSystem protected function Mocks the file system.
FeedsReflectionTrait::callProtectedMethod protected function Calls a protected method on the given object.
FeedsReflectionTrait::getMethod protected function Gets a ReflectionMethod for a class method.
FeedsReflectionTrait::getProtectedClosure protected function Returns a dynamically created closure for the object's method.
FeedsReflectionTrait::setProtectedProperty protected function Sets a protected property.
FeedsUnitTestCase::absolutePath protected function Returns the absolute directory path of the Feeds module.
FeedsUnitTestCase::defineConstants protected function Defines stub constants.
FeedsUnitTestCase::getMockStreamWrapperManager protected function Returns a mock stream wrapper manager.
FeedsUnitTestCase::resourcesPath protected function Returns the absolute directory path of the resources folder.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
SyndicationParserTest::$feed protected property The feed entity.
SyndicationParserTest::$feedType protected property The feed type entity.
SyndicationParserTest::$parser protected property The Feeds parser plugin under test.
SyndicationParserTest::$readerExtensions protected property A list of syndication readers.
SyndicationParserTest::$state protected property The state object.
SyndicationParserTest::setUp public function Overrides FeedsUnitTestCase::setUp
SyndicationParserTest::testEmptyFeed public function Tests parsing an empty feed.
SyndicationParserTest::testGetMappingSources public function @covers ::getMappingSources
SyndicationParserTest::testInvalidFeed public function Tests parsing an invalid feed.
SyndicationParserTest::testParse public function Tests parsing a RSS feed that succeeds.
SyndicationParserTest::testParseAtom public function Tests parsing an Atom feed.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
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.