1 user.test UserCancelTestCase::testUserBlockUnpublish()

Disable account and unpublish all content.

File

core/modules/user/tests/user.test, line 790
Tests for user.module.

Class

UserCancelTestCase
Test cancelling a user.

Code

function testUserBlockUnpublish() {
  config_set('system.core', 'user_cancel_method', 'user_cancel_block_unpublish');

  // Create a user.
  $account = $this->backdropCreateUser(array('cancel account'));
  $this->backdropLogin($account);
  // Load real user object.
  $account = user_load($account->uid, TRUE);

  // Create a node with two revisions.
  $node = $this->backdropCreateNode(array('uid' => $account->uid));
  $settings = get_object_vars($node);
  $settings['revision'] = 1;
  $node = $this->backdropCreateNode($settings);

  // Attempt to cancel account.
  $this->backdropGet('user/' . $account->uid . '/edit');
  $this->backdropPost(NULL, NULL, t('Cancel account'));
  $this->assertText(t('Are you sure you want to cancel your account?'), 'Confirmation form to cancel account displayed.');
  $this->assertText(t('Your account will be blocked and you will no longer be able to log in. All of your content will be hidden from everyone but administrators.'), 'Informs that all content will be unpublished.');

  // Confirm account cancellation.
  $timestamp = time();
  $this->backdropPost(NULL, NULL, t('Cancel account'));
  $this->assertText(t('A confirmation request to cancel your account has been sent to your email address.'), 'Account cancellation request mailed message displayed.');

  // Confirm account cancellation request.
  $this->backdropGet("user/$account->uid/cancel/confirm/$timestamp/" . user_pass_rehash($account->pass, $timestamp, $account->login, $account->uid));
  $account = user_load($account->uid, TRUE);
  $this->assertTrue($account->status == 0, 'User has been blocked.');

  // Confirm user's content has been unpublished.
  $test_node = node_load($node->nid, NULL, TRUE);
  $this->assertTrue($test_node->status == 0, 'Node of the user has been unpublished.');
  $test_node = node_load($node->nid, $node->vid, TRUE);
  $this->assertTrue($test_node->status == 0, 'Node revision of the user has been unpublished.');

  // Confirm that the confirmation message made it through to the end user.
  $this->assertRaw(t('%name has been disabled.', array('%name' => $account->name)), 'Confirmation message displayed to user.');
}