You are here

class GeoRSSFeedsMapperLocationTestCase in Location Feeds 7

Same name and namespace in other branches
  1. 6 tests/location_feeds.georss.test \GeoRSSFeedsMapperLocationTestCase

Hierarchy

Expanded class hierarchy of GeoRSSFeedsMapperLocationTestCase

File

tests/location_feeds.georss.test, line 13

View source
class GeoRSSFeedsMapperLocationTestCase extends FeedsMapperLocationTestCase {
  public static function getInfo() {
    return array(
      'name' => t('GeoRSS Locations'),
      'description' => t('Test Feeds Mapper support for GeoRSS Locations.'),
      'group' => t('Location Feeds'),
    );
  }

  /**
   * Set up the test.
   */
  public function setUp() {

    // Call parent setup with required modules.
    parent::setUp(array(
      'location',
      'location_node',
      'location_feeds',
    ));

    // Create user and login.
    $this
      ->drupalLogin($this
      ->drupalCreateUser(array(
      'administer content types',
      'administer feeds',
      'administer nodes',
      'administer site configuration',
      'submit latitude/longitude',
    )));
  }

  /**
   * Basic test loading an RSS feed for nodes with locations.
   */
  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 nodes');

    // Check the imported locations
    $x = 0;
    $nodes = db_query("SELECT nid FROM {node} WHERE type=:type", array(
      ':type' => $type,
    ));
    foreach ($nodes as $node) {
      $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++;
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FeedsMapperLocationTestCase::createLocationType public function
FeedsMapperLocationTestCase::saveUserLocationSettings public function
GeoRSSFeedsMapperLocationTestCase::getInfo public static function
GeoRSSFeedsMapperLocationTestCase::setUp public function Set up the test.
GeoRSSFeedsMapperLocationTestCase::test public function Basic test loading an RSS feed for nodes with locations.