public function GeoRSSFeedsMapperLocationTestCase::test in Location Feeds 6
Same name and namespace in other branches
- 7 tests/location_feeds.georss.test \GeoRSSFeedsMapperLocationTestCase::test()
Basic test loading an RSS feed for nodes with locations.
File
- tests/
location_feeds.georss.test, line 45
Class
Code
public function test() {
$settings = array();
$type = $this
->createLocationType($settings);
// Test constants
$loc = array(
0 => array(
'latitude' => 32.1783,
'longitude' => -115.2768,
),
1 => array(
'latitude' => 40.6083,
'longitude' => -124.7635,
),
);
// Create and configure importer.
// Create a feed.
$this
->createImporterConfiguration('Location import', 'location_import');
// Set and configure plugins.
$this
->setSettings('location_import', NULL, array(
'content_type' => '',
'import_period' => FEEDS_SCHEDULE_NEVER,
));
$this
->setPlugin('location_import', 'FeedsFileFetcher');
$this
->setPlugin('location_import', 'FeedsCSVParser');
$this
->setSettings('location_import', 'FeedsNodeProcessor', array(
'content_type' => $type,
));
// Go to mapping page and create a couple of mappings.
$mappings = array(
array(
'source' => 'title',
'target' => 'title',
'unique' => FALSE,
),
array(
'source' => 'guid',
'target' => 'guid',
'unique' => TRUE,
),
array(
'source' => 'georss:point',
'target' => 'locations:georss:point',
'unique' => FALSE,
),
);
$this
->addMappings('location_import', $mappings);
// Import CSV file.
$this
->importFile('location_import', drupal_get_path('module', 'location_feeds') . '/tests/feeds/location_georss.csv');
$this
->assertText('Created 2 ' . $type . ' nodes.');
// Check the imported locations
$x = 0;
$res = db_query("SELECT nid FROM {node} WHERE type='%s'", $type);
while ($node = db_fetch_object($res)) {
$node = node_load($node->nid);
$this
->assertEqual($loc[$x]['latitude'], $node->locations[0]['latitude'], t('Testing latitude import, expected: @e, found: @f', array(
'@e' => $loc[$x]['latitude'],
'@f' => $node->locations[0]['latitude'],
)));
$this
->assertEqual($loc[$x]['longitude'], $node->locations[0]['longitude'], t('Testing longitude import, expected: @e, found: @f', array(
'@e' => $loc[$x]['longitude'],
'@f' => $node->locations[0]['longitude'],
)));
$x++;
}
}