You are here

public function FeedsCSVtoUsersTest::test in Feeds 7.2

Same name and namespace in other branches
  1. 6 tests/feeds_processor_user.test \FeedsCSVtoUsersTest::test()
  2. 7 tests/feeds_processor_user.test \FeedsCSVtoUsersTest::test()

Test user creation, refreshing/deleting feeds and feed items.

File

tests/feeds_processor_user.test, line 74
Tests for plugins/FeedsUserProcessor.inc.

Class

FeedsCSVtoUsersTest
Test aggregating a feed as data records.

Code

public function test() {

  // Create roles and assign one of them to the users to be imported.
  $manager_rid = $this
    ->drupalCreateRole(array(
    'access content',
  ), 'manager');
  $admin_rid = $this
    ->drupalCreateRole(array(
    'access content',
  ), 'administrator');
  $edit = array(
    "roles[{$manager_rid}]" => TRUE,
    "roles[{$admin_rid}]" => FALSE,
  );
  $this
    ->setSettings('user_import', 'FeedsUserProcessor', $edit);

  // Import CSV file.
  $this
    ->importFile('user_import', $this
    ->absolutePath() . '/tests/feeds/users.csv');

  // Assert result.
  $this
    ->assertText('Created 3 users');

  // 1 user has an invalid email address, all users should be assigned
  // the manager role.
  $this
    ->assertText('Failed importing 2 users.');
  $this
    ->drupalGet('admin/people');
  $this
    ->assertText('Morticia');
  $this
    ->assertText('Fester');
  $this
    ->assertText('Gomez');
  $count = db_query("SELECT count(*) FROM {users_roles} WHERE rid = :rid", array(
    ':rid' => $manager_rid,
  ))
    ->fetchField();
  $this
    ->assertEqual($count, 3, t('All imported users were assigned the manager role.'));
  $count = db_query("SELECT count(*) FROM {users_roles} WHERE rid = :rid", array(
    ':rid' => $admin_rid,
  ))
    ->fetchField();
  $this
    ->assertEqual($count, 0, t('No imported user was assigned the administrator role.'));

  // Run import again, verify no new users.
  $this
    ->importFile('user_import', $this
    ->absolutePath() . '/tests/feeds/users.csv');
  $this
    ->assertText('Failed importing 2 users.');

  // Attempt to log in as one of the imported users.
  $account = user_load_by_name('Morticia');
  $this
    ->assertTrue($account, 'Imported user account loaded.');
  $account->pass_raw = 'mort';
  $this
    ->drupalLogin($account);

  // Login as admin.
  $this
    ->drupalLogin($this->admin_user);

  // Removing a mapping forces updating without needing a different file.
  // We are also testing that if we don't map anything to the user's password
  // that it will keep its existing one.
  $mappings = array(
    3 => array(
      'source' => 'password',
      'target' => 'pass',
    ),
  );
  $this
    ->removeMappings('user_import', $mappings);
  $this
    ->setSettings('user_import', 'FeedsUserProcessor', array(
    'update_existing' => 2,
  ));
  $this
    ->importFile('user_import', $this
    ->absolutePath() . '/tests/feeds/users.csv');

  // Assert result.
  $this
    ->assertText('Updated 3 users');
  $this
    ->assertText('Failed importing 2 user');

  // Attempt to log in as one of the imported users.
  $this
    ->feedsLoginUser('Fester', 'fest');

  // Login as admin.
  $this
    ->drupalLogin($this->admin_user);

  // Import modified CSV file, one (valid) user is missing.
  $this
    ->setSettings('user_import', 'FeedsUserProcessor', array(
    'update_existing' => 2,
    'update_non_existent' => 'block',
  ));
  $this
    ->importFile('user_import', $this
    ->absolutePath() . '/tests/feeds/users2.csv');
  $this
    ->assertText('Blocked 1 user');
  $this
    ->assertText('Failed importing 2 user');

  // Import the original CSV file again.
  $this
    ->importFile('user_import', $this
    ->absolutePath() . '/tests/feeds/users.csv');
  $this
    ->assertText('Updated 1 user');
  $this
    ->assertText('Failed importing 2 user');
}