You are here

public function FeedsCSVtoUsersTest::test in Feeds 8.2

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

File

lib/Drupal/feeds/Tests/FeedsCSVtoUsersTest.php, line 25
Tests for plugins/FeedsUserProcessor.inc

Class

FeedsCSVtoUsersTest
Test aggregating a feed as data records.

Namespace

Drupal\feeds\Tests

Code

public function test() {

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

  // Set and configure plugins.
  $this
    ->setPlugin('user_import', 'file');
  $this
    ->setPlugin('user_import', 'csv');
  $this
    ->setPlugin('user_import', 'user');

  // Go to mapping page and create a couple of mappings.
  $mappings = array(
    0 => array(
      'source' => 'name',
      'target' => 'name',
      'unique' => FALSE,
    ),
    1 => array(
      'source' => 'mail',
      'target' => 'mail',
      'unique' => TRUE,
    ),
    2 => array(
      'source' => 'since',
      'target' => 'created',
    ),
    3 => array(
      'source' => 'password',
      'target' => 'pass',
    ),
  );
  $this
    ->addMappings('user_import', $mappings);

  // Use standalone form.
  $this
    ->setSettings('user_import', '', array(
    'content_type' => '',
  ));

  // 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', 'user', $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', 'user', 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.
  $account = user_load_by_name('Fester');
  $this
    ->assertTrue($account, 'Imported user account loaded.');
  $account->pass_raw = 'fest';
  $this
    ->drupalLogin($account);
}