class BanMiddlewareTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/ban/tests/src/Unit/BanMiddlewareTest.php \Drupal\Tests\ban\Unit\BanMiddlewareTest
@coversDefaultClass \Drupal\ban\BanMiddleware @group ban
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\ban\Unit\BanMiddlewareTest
Expanded class hierarchy of BanMiddlewareTest
File
- core/
modules/ ban/ tests/ src/ Unit/ BanMiddlewareTest.php, line 20 - Contains \Drupal\Tests\ban\Unit\BanMiddlewareTest.
Namespace
Drupal\Tests\ban\UnitView source
class BanMiddlewareTest extends UnitTestCase {
/**
* The mocked wrapped kernel.
*
* @var \Symfony\Component\HttpKernel\HttpKernelInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $kernel;
/**
* The mocked ban IP manager.
*
* @var \Drupal\ban\BanIpManagerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $banManager;
/**
* The tested ban middleware.
*
* @var \Drupal\ban\BanMiddleware
*/
protected $banMiddleware;
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->kernel = $this
->getMock('Symfony\\Component\\HttpKernel\\HttpKernelInterface');
$this->banManager = $this
->getMock('Drupal\\ban\\BanIpManagerInterface');
$this->banMiddleware = new BanMiddleware($this->kernel, $this->banManager);
}
/**
* Tests a banned IP.
*/
public function testBannedIp() {
$banned_ip = '17.0.0.2';
$this->banManager
->expects($this
->once())
->method('isBanned')
->with($banned_ip)
->willReturn(TRUE);
$this->kernel
->expects($this
->never())
->method('handle');
$request = Request::create('/test-path');
$request->server
->set('REMOTE_ADDR', $banned_ip);
$response = $this->banMiddleware
->handle($request);
$this
->assertEquals(403, $response
->getStatusCode());
}
/**
* Tests an unbanned IP.
*/
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);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BanMiddlewareTest:: |
protected | property | The mocked ban IP manager. | |
BanMiddlewareTest:: |
protected | property | The tested ban middleware. | |
BanMiddlewareTest:: |
protected | property | The mocked wrapped kernel. | |
BanMiddlewareTest:: |
protected | function |
Overrides UnitTestCase:: |
|
BanMiddlewareTest:: |
public | function | Tests a banned IP. | |
BanMiddlewareTest:: |
public | function | Tests an unbanned IP. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |