You are here

function FeedsMapperProfileTestCase::test in Feeds 7

Same name and namespace in other branches
  1. 6 tests/feeds_mapper_profile.test \FeedsMapperProfileTestCase::test()
  2. 7.2 tests/feeds_mapper_profile.test \FeedsMapperProfileTestCase::test()

Basic test loading a doulbe entry CSV file.

File

tests/feeds_mapper_profile.test, line 43

Class

FeedsMapperProfileTestCase
Class for testing Feeds <em>content</em> mapper.

Code

function test() {

  // Create profile fields.
  $edit = array(
    'category' => 'test',
    'title' => 'color',
    'name' => 'profile_textfield_test',
  );
  $name = $this
    ->drupalPost('admin/user/profile/add/textfield', $edit, t('Save field'));
  $edit = array(
    'category' => 'test',
    'title' => 'letter',
    'name' => 'profile_select_test',
    'options' => 'alpha' . "\n" . 'beta' . "\n" . 'gamma',
  );
  $name = $this
    ->drupalPost('admin/user/profile/add/selection', $edit, t('Save field'));

  // Create an importer.
  $this
    ->createImporterConfiguration('Profile import', 'profile_import');

  // Set and configure plugins.
  $this
    ->setPlugin('profile_import', 'FeedsFileFetcher');
  $this
    ->setPlugin('profile_import', 'FeedsCSVParser');
  $this
    ->setPlugin('profile_import', 'FeedsUserProcessor');

  // Go to mapping page and create a couple of mappings.
  $mappings = array(
    '0' => array(
      'source' => 'name',
      'target' => 'name',
      'unique' => 0,
    ),
    '1' => array(
      'source' => 'mail',
      'target' => 'mail',
      'unique' => 1,
    ),
    '2' => array(
      'source' => 'color',
      'target' => 'profile_textfield_test',
      'unique' => FALSE,
    ),
    '3' => array(
      'source' => 'letter',
      'target' => 'profile_select_test',
      'unique' => FALSE,
    ),
  );
  $this
    ->addMappings('profile_import', $mappings);

  // Change some of the basic configuration.
  $edit = array(
    'content_type' => '',
    'import_period' => FEEDS_SCHEDULE_NEVER,
  );
  $this
    ->drupalPost('admin/structure/feeds/edit/profile_import/settings', $edit, 'Save');

  // Import CSV file.
  $this
    ->importFile('profile_import', $this
    ->absolutePath() . '/tests/feeds/profile.csv');
  $this
    ->assertText('Created 2 users.');

  // Check the two imported users.
  $this
    ->drupalGet('admin/user/user');
  $this
    ->assertText('magna');
  $this
    ->assertText('rhoncus');
  $account = user_load_by_name('magna');
  $this
    ->assertEqual($account->profile_textfield_test, 'red', 'User profile_textfield_test is correct');
  $this
    ->assertEqual($account->profile_select_test, 'alpha', 'User profile_select_test is correct');
  $account = user_load_by_name('rhoncus');
  $this
    ->assertEqual($account->profile_textfield_test, 'blue', 'User profile_textfield_test is correct');
  $this
    ->assertEqual($account->profile_select_test, 'beta', 'User profile_select_test is correct');
}