public function XmlParserTest::testRaw in Feeds extensible parsers 8
Tests raw parsing.
File
- tests/
src/ Unit/ Feeds/ Parser/ XmlParserTest.php, line 70
Class
- XmlParserTest
- @coversDefaultClass \Drupal\feeds_ex\Feeds\Parser\XmlParser @group feeds_ex
Namespace
Drupal\Tests\feeds_ex\Unit\Feeds\ParserCode
public function testRaw() {
$fetcher_result = new RawFetcherResult(file_get_contents($this->moduleDir . '/tests/resources/test.xml'), $this->fileSystem);
$config = [
'context' => [
'value' => '/items/item',
],
'sources' => [
'title' => [
'name' => 'Title',
'value' => 'title',
],
'description' => [
'name' => 'Title',
'value' => 'description',
'raw' => TRUE,
],
],
] + $this->parser
->defaultConfiguration();
$this->parser
->setConfiguration($config);
$result = $this->parser
->parse($this->feed, $fetcher_result, $this->state);
$this
->assertCount(3, $result);
foreach ($result as $delta => $item) {
$this
->assertSame('I am a title' . $delta, $item
->get('title'));
$this
->assertSame('<description><text>I am a description' . $delta . '</text></description>', $item
->get('description'));
}
}