You are here

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

File

src/Tests/LoginTest.php, line 27

Class

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

Namespace

Drupal\restrict_by_ip\Tests

Code

public function testIpMatchUser() {

  // Add in range user IP.
  $this->conf
    ->set('user.' . $this->regularUser
    ->id(), $this->currentIPCIDR)
    ->save();
  $this
    ->drupalLogin($this->regularUser);
}