function RegistrationStandardTestCase::testUserCancel in Entity Registration 7.2
Same name and namespace in other branches
- 8.2 tests/registration.test \RegistrationStandardTestCase::testUserCancel()
- 7 tests/registration.test \RegistrationStandardTestCase::testUserCancel()
Ensure registrations are processed when a user is cancelled.
Tests authorship, and people association, of registrations.
File
- tests/
registration.test, line 522 - Tests for the Registration module
Class
- RegistrationStandardTestCase
- Creates a registration type Create node entity type ensure registration type exists
Code
function testUserCancel() {
$admin = $this
->drupalCreateUser(array(
'administer users',
));
$this
->drupalLogin($admin);
// Blocking a user.
$user = $this
->drupalCreateUser();
$registration = $this
->createRegistration(array(
'author_uid' => $user->uid,
));
$edit = array(
'user_cancel_method' => 'user_cancel_block',
);
$this
->drupalPost('user/' . $user->uid . '/cancel', $edit, t('Cancel account'));
$registration_reload = $this
->loadRegistration($registration->registration_id);
$this
->assertTrue($registration_reload instanceof Registration, t('Blocking a user does not modify his registrations.'));
// Reassign a users content.
$user = $this
->drupalCreateUser();
$registration_author = $this
->createRegistration(array(
'author_uid' => $user->uid,
));
$registration_people = $this
->createRegistration(array(
'registrant_id' => $user->uid,
));
$edit = array(
'user_cancel_method' => 'user_cancel_reassign',
);
$this
->drupalPost('user/' . $user->uid . '/cancel', $edit, t('Cancel account'));
$registration_author_db = $this
->loadRegistration($registration_author->registration_id);
$this
->assertTrue($registration_author_db->author_uid == 0, t('Cancelling user, and reassigning registrations he is author, to anonymous.'));
$registration_people_db = $this
->loadRegistration($registration_people->registration_id);
$this
->assertTrue($registration_people_db->registrant_id == NULL, t('Cancelling user, and reassigning registrations he is associated, to anonymous.'));
// Delete a users content.
$user = $this
->drupalCreateUser();
$registration_author = $this
->createRegistration(array(
'author_uid' => $user->uid,
));
$registration_people = $this
->createRegistration(array(
'registrant_id' => $user->uid,
));
$edit = array(
'user_cancel_method' => 'user_cancel_delete',
);
$this
->drupalPost('user/' . $user->uid . '/cancel', $edit, t('Cancel account'));
$registration_author_db = $this
->loadRegistration($registration_author->registration_id);
$this
->assertFalse($registration_author_db, t('Deleting user, deletes registrations he authored.'));
$registration_people_db = $this
->loadRegistration($registration_people->registration_id);
$this
->assertTrue($registration_people_db->registrant_id == NULL, t('Deleting user, and reassigning registrations he is associated, to anonymous.'));
}