IpIsBannedTest.php in Rules 8.3
File
tests/src/Unit/Integration/Condition/IpIsBannedTest.php
View source
<?php
namespace Drupal\Tests\rules\Unit\Integration\Condition;
use Drupal\Core\Plugin\Context\Context;
use Drupal\ban\BanIpManagerInterface;
use Drupal\Tests\rules\Unit\Integration\RulesIntegrationTestBase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
class IpIsBannedTest extends RulesIntegrationTestBase {
protected $condition;
protected $banManager;
protected $request;
protected $requestStack;
protected function setUp() : void {
parent::setUp();
$this
->enableModule('ban');
$this->banManager = $this
->prophesize(BanIpManagerInterface::class);
$this->container
->set('ban.ip_manager', $this->banManager
->reveal());
$this->request = $this
->prophesize(Request::class);
$this->requestStack = $this
->prophesize(RequestStack::class);
$this->requestStack
->getCurrentRequest()
->willReturn($this->request
->reveal());
$this->container
->set('request_stack', $this->requestStack
->reveal());
$this->condition = $this->conditionManager
->createInstance('rules_ip_is_banned');
}
public function testConditionEvaluation() {
$ipv4 = '192.0.2.0';
$this->banManager
->isBanned($ipv4)
->willReturn(FALSE);
$context = $this->condition
->getContext('ip');
$context = Context::createFromContext($context, $this
->getTypedData('string', $ipv4));
$this->condition
->setContext('ip', $context);
$this
->assertFalse($this->condition
->evaluate());
$ipv6 = '2002:0:0:0:0:0:c000:200';
$this->banManager
->isBanned($ipv6)
->willReturn(FALSE);
$context = $this->condition
->getContext('ip');
$context = Context::createFromContext($context, $this
->getTypedData('string', $ipv6));
$this->condition
->setContext('ip', $context);
$this
->assertFalse($this->condition
->evaluate());
$ip_addresses_to_ban = [
'IPv4' => [
'ip' => '192.0.2.0',
],
'IPv6' => [
'ip' => '2002:0:0:0:0:0:c000:200',
],
];
foreach ($ip_addresses_to_ban as $ip_address_to_ban) {
$this->banManager
->banIp($ip_address_to_ban['ip']);
$this->banManager
->isBanned($ip_address_to_ban['ip'])
->willReturn(TRUE);
}
$context = $this->condition
->getContext('ip');
$context = Context::createFromContext($context, $this
->getTypedData('string', $ip_addresses_to_ban['IPv4']['ip']));
$this->condition
->setContext('ip', $context);
$this
->assertTrue($this->condition
->evaluate());
$context = $this->condition
->getContext('ip');
$context = Context::createFromContext($context, $this
->getTypedData('string', $ip_addresses_to_ban['IPv6']['ip']));
$this->condition
->setContext('ip', $context);
$this
->assertTrue($this->condition
->evaluate());
}
}