public function FeedsJSONPathParserTestCase::test in Feeds JSONPath Parser 6
Same name and namespace in other branches
- 7 tests/feeds_jsonpath_parser.test \FeedsJSONPathParserTestCase::test()
Run tests.
File
- tests/
feeds_jsonpath_parser.test, line 41 - Tests for FeedsJSONPathParser.inc.
Class
- FeedsJSONPathParserTestCase
- Test single feeds.
Code
public function test() {
$this
->createImporterConfiguration('JSONPath', 'jsonpath');
$this
->setPlugin('jsonpath', 'FeedsJSONPathParser');
$this
->addMappings('jsonpath', array(
array(
'source' => 'jsonpath_parser:0',
'target' => 'title',
'unique' => FALSE,
),
array(
'source' => 'jsonpath_parser:1',
'target' => 'url',
'unique' => TRUE,
),
));
// Set importer default settings.
$edit = array(
'jsonpath[context]' => '$.store.book[*]',
'jsonpath[sources][jsonpath_parser:0]' => 'author',
'jsonpath[sources][jsonpath_parser:1]' => 'price',
);
$this
->drupalPost('admin/build/feeds/edit/jsonpath/settings/FeedsJSONPathParser', $edit, 'Save');
$this
->assertText('Your changes have been saved.');
$this
->assertRaw('$.store.book[*]');
$this
->assertRaw('author');
$this
->assertRaw('price');
// Test import.
$path = $GLOBALS['base_url'] . '/' . drupal_get_path('module', 'feeds_jsonpath_parser') . '/tests/feeds_jsonpath_parser/';
$nid = $this
->createFeedNode('jsonpath', $path . 'test.json', 'Testing JSONPath Parser');
$this
->assertText('Created 4 Story nodes');
// Import again, this verifies url field was mapped correctly.
$this
->drupalPost('node/' . $nid . '/import', array(), 'Import');
$this
->assertText('There is no new content.');
// Assert accuracy of aggregated content. I find humor in using our own
// issue queue to run tests against.
$this
->drupalGet('node');
$this
->assertText('Nigel Rees');
$this
->assertText('Evelyn Waugh');
$this
->assertText('Herman Melville');
$this
->assertText('J. R. R. Tolkien');
// Test that overriding default settings works.
$edit = array(
'feeds[FeedsJSONPathParser][jsonpath][context]' => '/foo',
'feeds[FeedsJSONPathParser][jsonpath][sources][jsonpath_parser:0]' => 'bar',
'feeds[FeedsJSONPathParser][jsonpath][sources][jsonpath_parser:1]' => 'baz',
);
$this
->drupalPost('node/' . $nid . '/edit', $edit, 'Save');
$this
->drupalGet('node/' . $nid . '/edit');
// Why not use XPath to test JSONPath?
$this
->assertFieldByXPath('//input[@id="edit-feeds-FeedsJSONPathParser-jsonpath-context"][1]/@value', '/foo', 'Field has correct value.');
$this
->assertFieldByXPath('//input[@id="edit-feeds-FeedsJSONPathParser-jsonpath-sources-jsonpath-parser:0"][1]/@value', 'bar', 'Field has correct value.');
$this
->assertFieldByXPath('//input[@id="edit-feeds-FeedsJSONPathParser-jsonpath-sources-jsonpath-parser:1"][1]/@value', 'baz', 'Field has correct value.');
// Assert the we don't create an empty node when XPath values don't return anything.
// That happened at one point.
$this
->drupalPost('node/' . $nid . '/import', array(), 'Import');
$this
->assertText('There is no new content.');
// Put the values back so we can test inheritance if the form was changed
// and then changed back.
$edit = array(
'feeds[FeedsJSONPathParser][jsonpath][context]' => '$.store.book[*]',
'feeds[FeedsJSONPathParser][jsonpath][sources][jsonpath_parser:0]' => 'author',
'feeds[FeedsJSONPathParser][jsonpath][sources][jsonpath_parser:1]' => 'price',
);
$this
->drupalPost('node/' . $nid . '/edit', $edit, 'Save');
$this
->drupalGet('node/' . $nid . '/edit');
$this
->assertFieldByXPath('//input[@id="edit-feeds-FeedsJSONPathParser-jsonpath-context"][1]/@value', '$.store.book[*]', 'Field has correct value.');
$this
->assertFieldByXPath('//input[@id="edit-feeds-FeedsJSONPathParser-jsonpath-sources-jsonpath-parser:0"][1]/@value', 'author', 'Field has correct value.');
$this
->assertFieldByXPath('//input[@id="edit-feeds-FeedsJSONPathParser-jsonpath-sources-jsonpath-parser:1"][1]/@value', 'price', 'Field has correct value.');
// Change importer defaults.
$edit = array(
'jsonpath[context]' => '//tr',
'jsonpath[sources][jsonpath_parser:0]' => 'booya',
'jsonpath[sources][jsonpath_parser:1]' => 'boyz',
);
$this
->drupalPost('admin/build/feeds/edit/jsonpath/settings/FeedsJSONPathParser', $edit, 'Save');
$this
->assertText('Your changes have been saved.');
$this
->assertRaw('//tr');
$this
->assertRaw('booya');
$this
->assertRaw('boyz');
// Make sure the changes propigated.
$this
->drupalGet('node/' . $nid . '/edit');
$this
->assertFieldByXPath('//input[@id="edit-feeds-FeedsJSONPathParser-jsonpath-context"][1]/@value', '//tr', 'Field has correct value.');
$this
->assertFieldByXPath('//input[@id="edit-feeds-FeedsJSONPathParser-jsonpath-sources-jsonpath-parser:0"][1]/@value', 'booya', 'Field has correct value.');
$this
->assertFieldByXPath('//input[@id="edit-feeds-FeedsJSONPathParser-jsonpath-sources-jsonpath-parser:1"][1]/@value', 'boyz', 'Field has correct value.');
}