You are here

public function LoginTest::testIpDifferUser in Restrict Login or Role Access by IP Address 8.4

File

src/Tests/LoginTest.php, line 34

Class

LoginTest
Tests logins are restricted to certain IP address range(s).

Namespace

Drupal\restrict_by_ip\Tests

Code

public function testIpDifferUser() {

  // Add out of range user IP.
  $this->conf
    ->set('user.' . $this->regularUser
    ->id(), $this->outOfRangeCIDR)
    ->save();
  $this
    ->assertNoLogin();
}