function IpIsBannedTest::testConditionEvaluation
Tests evaluating the condition.
@covers ::evaluate
File
-
tests/
src/ Unit/ Integration/ Condition/ IpIsBannedTest.php, line 68
Class
- IpIsBannedTest
- @coversDefaultClass \Drupal\rules\Plugin\Condition\IpIsBanned @group RulesCondition
Namespace
Drupal\Tests\rules\Unit\Integration\ConditionCode
public function testConditionEvaluation() {
// Test an IPv4 address that has not been banned; should return FALSE.
// TEST-NET-1 IPv4.
$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());
// Test an IPv6 address that has not been banned; should return FALSE.
// TEST-NET-1 IPv4 '192.0.2.0' converted to IPv6.
$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());
// Ban an IPv4 address and an IPv6 address.
$ip_addresses_to_ban = [
// TEST-NET-1 IPv4.
'IPv4' => [
'ip' => '192.0.2.0',
],
// TEST-NET-1 IPv4 '192.0.2.0' converted to IPv6.
'IPv6' => [
'ip' => '2002:0:0:0:0:0:c000:200',
],
];
// Ban the above IP addresses.
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);
}
// Test an IPv4 address that has been banned; should return 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());
// Test an IPv6 address that has been banned; should return TRUE.
$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());
}