You are here

public function BanMiddlewareTest::testUnbannedIp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/ban/tests/src/Unit/BanMiddlewareTest.php \Drupal\Tests\ban\Unit\BanMiddlewareTest::testUnbannedIp()

Tests an unbanned IP.

File

core/modules/ban/tests/src/Unit/BanMiddlewareTest.php, line 72

Class

BanMiddlewareTest
@coversDefaultClass \Drupal\ban\BanMiddleware @group ban

Namespace

Drupal\Tests\ban\Unit

Code

public function testUnbannedIp() {
  $unbanned_ip = '18.0.0.2';
  $this->banManager
    ->expects($this
    ->once())
    ->method('isBanned')
    ->with($unbanned_ip)
    ->willReturn(FALSE);
  $request = Request::create('/test-path');
  $request->server
    ->set('REMOTE_ADDR', $unbanned_ip);
  $expected_response = new Response(200);
  $this->kernel
    ->expects($this
    ->once())
    ->method('handle')
    ->with($request, HttpKernelInterface::MASTER_REQUEST, TRUE)
    ->willReturn($expected_response);
  $response = $this->banMiddleware
    ->handle($request);
  $this
    ->assertSame($expected_response, $response);
}