Blocks an IP address via the top visitors report and then unblocks it.
function testIPAddressBlocking() {
// IP address for testing.
$test_ip_address = '192.168.1.1';
// Verify the IP address from accesslog appears on the top visitors page
// and that a 'ban IP address' link is displayed.
$this
->drupalLogin($this->blocking_user);
$this
->drupalGet('admin/reports/visitors');
$this
->assertText($test_ip_address, 'IP address found.');
$this
->assertText(t('ban IP address'), 'Ban IP link displayed');
// Block the IP address.
$this
->clickLink('ban IP address');
$this
->assertText(t('IP address bans'), 'IP banning page displayed.');
$edit = array();
$edit['ip'] = $test_ip_address;
$this
->drupalPost('admin/config/people/ban', $edit, t('Add'));
$ip = db_query("SELECT iid from {ban_ip} WHERE ip = :ip", array(
':ip' => $edit['ip'],
))
->fetchField();
$this
->assertNotEqual($ip, FALSE, 'IP address found in database');
$this
->assertRaw(t('The IP address %ip has been banned.', array(
'%ip' => $edit['ip'],
)), 'IP address was banned.');
// Verify that the block/unblock link on the top visitors page has been
// altered.
$this
->drupalGet('admin/reports/visitors');
$this
->assertText(t('unban IP address'), 'Unban IP address link displayed');
// Unblock the IP address.
$this
->clickLink('unban IP address');
$this
->assertRaw(t('Are you sure you want to unblock %ip?', array(
'%ip' => $test_ip_address,
)), 'IP address deletion confirmation found.');
$edit = array();
$this
->drupalPost('admin/config/people/ban/delete/1', NULL, t('Delete'));
$this
->assertRaw(t('The IP address %ip was deleted.', array(
'%ip' => $test_ip_address,
)), 'IP address deleted.');
}