FeedsExJsonPathLines.test in Feeds extensible parsers 7.2
Same filename and directory in other branches
Contains FeedsExJsonPathLinesUnitTests.
File
src/Tests/FeedsExJsonPathLines.testView source
<?php
/**
* @file
* Contains FeedsExJsonPathLinesUnitTests.
*/
/**
* Unit tests for FeedsExJsonPathLines.
*/
class FeedsExJsonPathLinesUnitTests extends FeedsExUnitTestBase {
/**
* The mocked FeedsSource.
*
* @var FeedsSource
*/
protected $source;
/**
* The parser being tested.
*
* @var FeedsParser
*/
protected $parser;
/**
* The fetcher result used during parsing.
*
* @var FeedsFetcherResult
*/
protected $fetcherResult;
public static function getInfo() {
return array(
'name' => 'JSONPath JSON lines parser unit tests',
'description' => 'Unit tests for FeedsExJsonPathLines.',
'group' => 'Feeds EX',
);
}
public function setUp() {
parent::setUp();
require_once $this->moduleDir . '/src/FeedsExJsonPath.inc';
require_once $this->moduleDir . '/src/FeedsExJsonPathLines.inc';
$this
->downloadJsonPath();
$this->source = $this
->getMockFeedsSource();
$this->parser = FeedsConfigurable::instance('FeedsExJsonPathLines', 'test_parser');
$this->parser
->addConfig(array(
'sources' => array(
'title' => array(
'name' => 'Title',
'value' => 'name',
),
),
));
$this->fetcherResult = new FeedsFileFetcherResult($this->moduleDir . '/tests/resources/test.jsonl');
}
/**
* Tests simple parsing.
*/
public function testSimpleParsing() {
$result = $this->parser
->parse($this->source, $this->fetcherResult);
$this
->assertEqual(count($result->items), 4, format_string('@count items parsed.', array(
'@count' => count($result->items),
)));
foreach (array(
'Gilbert',
'Alexa',
'May',
'Deloise',
) as $delta => $name) {
$this
->assertEqual($name, $result->items[$delta]['title']);
}
}
/**
* Tests batch parsing.
*/
public function testBatching() {
$this
->variableSet('feeds_process_limit', 1);
foreach (array(
'Gilbert',
'Alexa',
'May',
'Deloise',
) as $name) {
$result = $this->parser
->parse($this->source, $this->fetcherResult);
$this
->assertEqual(count($result->items), 1, format_string('@count items parsed.', array(
'@count' => count($result->items),
)));
$this
->assertEqual($result->items[0]['title'], $name);
}
}
}
Classes
Name | Description |
---|---|
FeedsExJsonPathLinesUnitTests | Unit tests for FeedsExJsonPathLines. |