public function UserExpireTest::testUserExpire in User Expire 8
Tests user expiration functionality.
File
- tests/
src/ Functional/ UserExpireTest.php, line 37
Class
- UserExpireTest
- Tests for User expire module.
Namespace
Drupal\Tests\user_expire\FunctionalCode
public function testUserExpire() {
$connection = Database::getConnection();
$basic_account = $this
->drupalCreateUser();
$this
->assertTrue($basic_account
->isActive(), $this
->t('User account is currently enabled.'));
user_expire_set_expiration($basic_account, \Drupal::time()
->getRequestTime() - 1);
user_expire_expire_users([
$basic_account,
]);
$this
->assertFalse($basic_account
->isActive(), $this
->t('User account has been successfully disabled.'));
// Admin sets expiry, it's saved properly.
$admin_user = $this
->drupalCreateUser([
'administer permissions',
'administer users',
'set user expiration',
'view expiring users report',
'administer user expire settings',
]);
$this
->drupalLogin($admin_user);
// Ensure the report is clear.
$this
->drupalGet('admin/reports/expiring-users');
$this
->assertNoText('0 sec from now', $this
->t('Processed expiration does not show in Expiring users report'));
// Make them active again.
$edit = [];
$edit['status'] = 1;
// And set the expiration to something passed.
$edit['user_expiration'] = 1;
$edit['user_expiration_date[date]'] = "2002-08-18";
$this
->drupalPostForm("user/" . $basic_account
->id() . "/edit", $edit, $this
->t('Save'));
// Ensure it was re-activated.
$this
->assertRaw('type="radio" id="edit-status-1" name="status" value="1" checked="checked" class="form-radio"', $this
->t('User account is currently enabled.'));
// And the expiration was really really saved.
$this
->assertRaw('expiration date is set to Sun, 08/18/2002 - 00:00.');
$this
->drupalGet('admin/reports/expiring-users');
$this
->assertRaw('0 sec from now', 'Expiration shows in Expiring users report');
$this
->drupalLogout($admin_user);
// User edits account, expiry is still set.
$this
->drupalLogin($basic_account);
$edit = [];
$edit['pass[pass1]'] = $new_pass = $this
->randomMachineName();
$edit['pass[pass2]'] = $new_pass;
$edit['current_pass'] = $basic_account->pass_raw;
$this
->drupalPostForm("user/" . $basic_account
->id() . "/edit", $edit, $this
->t('Save'));
$this
->assertRaw($this
->t("The changes have been saved."));
$this
->drupalLogout($basic_account);
// Admin looks again and expiry is still set.
$this
->drupalLogin($admin_user);
$this
->drupalGet('admin/reports/expiring-users');
$this
->assertRaw('0 sec from now', 'Expiration shows in Expiring users report');
// Cron runs, account is locked, removed from expiry.
user_expire_cron();
$this
->drupalGet('admin/reports/expiring-users');
$this
->assertNoText('0 sec from now', $this
->t('Processed expiration does not show in Expiring users report'));
$this
->drupalGet("user/" . $basic_account
->id() . "/edit");
$this
->assertRaw('type="radio" id="edit-status-0" name="status" value="0" checked="checked" class="form-radio"', $this
->t('User account is currently disabled.'));
// Testing account expiry by role.
// Create a role.
$rid = $this
->drupalCreateRole([]);
$edit = [
'label' => $rid,
'id' => $rid . '_role',
];
$this
->drupalPostForm('admin/people/roles/add', $edit, $this
->t('Save'));
$this
->assertText($this
->t('Role @name has been added.', [
'@name' => $rid,
]), 'Role ' . $rid . ' has been added.');
$role = Role::load($rid);
$this
->assertTrue(is_object($role), 'The role was successfully retrieved from the database.');
// Grant that role to the basic user.
$edit = [];
$edit['status'] = 1;
// And definitely unset the expiration.
$edit['user_expiration'] = FALSE;
$edit['roles[' . $rid . ']'] = $rid;
$this
->drupalPostForm("user/" . $basic_account
->id() . "/edit", $edit, $this
->t('Save'));
$this
->assertRaw('type="radio" id="edit-status-1" name="status" value="1" checked="checked" class="form-radio"', $this
->t('User account is currently enabled.'));
// Confirm there are no per-user expiration records.
$this
->drupalGet('admin/reports/expiring-users');
$this
->assertNoText('0 sec from now', $this
->t('Processed expiration does not show in Expiring users report'));
// Fake that their access time is 90 days and 2 seconds.
// Be sure to use REQUEST_TIME because the query to identify uses
// REQUEST_TIME and that value gets pretty old in the context of simpletest.
$connection
->query('UPDATE {users_field_data} SET access = :time WHERE uid = :uid', [
':time' => \Drupal::time()
->getRequestTime() - 7776002,
':uid' => $basic_account
->id(),
]);
// Set it to expire after 90 days of inactivity.
$edit = [
'user_expire_' . $rid => 7776000,
];
$this
->drupalPostForm("admin/config/people/user-expire", $edit, $this
->t('Save configuration'));
// Process it.
user_expire_expire_by_role();
// Ensure they are disabled.
$this
->drupalGet("user/" . $basic_account
->id() . "/edit");
$this
->assertRaw('type="radio" id="edit-status-0" name="status" value="0" checked="checked" class="form-radio"', $this
->t('User account is currently disabled.'));
// Ensure a brand new user is not blocked (i.e. access = 0).
$new_basic_account = $this
->drupalCreateUser();
// Set auth users to expire after 90 days of inactivity.
$edit = [
'user_expire_' . RoleInterface::AUTHENTICATED_ID => 7776000,
];
$this
->drupalPostForm("admin/config/people/user-expire", $edit, $this
->t('Save configuration'));
// Process it.
user_expire_expire_by_role();
// Ensure they are still enabled.
$this
->drupalGet("user/" . $new_basic_account
->id() . "/edit");
$this
->assertRaw('type="radio" id="edit-status-1" name="status" value="1" checked="checked" class="form-radio"', $this
->t('New user account stays active.'));
// Age the new user's created by 90+ days.
$connection
->query('UPDATE {users_field_data} SET created = :time WHERE uid = :uid', [
':time' => \Drupal::time()
->getRequestTime() - 7776002,
':uid' => $new_basic_account
->id(),
]);
// Process it.
user_expire_expire_by_role();
// Ensure they are disabled.
$this
->drupalGet("user/" . $new_basic_account
->id() . "/edit");
$this
->assertRaw('type="radio" id="edit-status-0" name="status" value="0" checked="checked" class="form-radio"', $this
->t('User account is currently disabled.'));
}