|
@@ -21,9 +21,9 @@ use Symfony\Component\HttpFoundation\Request;
|
|
class RequestMatcherTest extends \PHPUnit_Framework_TestCase
|
|
class RequestMatcherTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
{
|
|
/**
|
|
/**
|
|
- * @dataProvider testIpProvider
|
|
|
|
|
|
+ * @dataProvider testIpv4Provider
|
|
*/
|
|
*/
|
|
- public function testIp($matches, $remoteAddr, $cidr)
|
|
|
|
|
|
+ public function testIpv4($matches, $remoteAddr, $cidr)
|
|
{
|
|
{
|
|
$request = Request::create('', 'get', array(), array(), array(), array('REMOTE_ADDR' => $remoteAddr));
|
|
$request = Request::create('', 'get', array(), array(), array(), array('REMOTE_ADDR' => $remoteAddr));
|
|
|
|
|
|
@@ -33,7 +33,7 @@ class RequestMatcherTest extends \PHPUnit_Framework_TestCase
|
|
$this->assertEquals($matches, $matcher->matches($request));
|
|
$this->assertEquals($matches, $matcher->matches($request));
|
|
}
|
|
}
|
|
|
|
|
|
- public function testIpProvider()
|
|
|
|
|
|
+ public function testIpv4Provider()
|
|
{
|
|
{
|
|
return array(
|
|
return array(
|
|
array(true, '192.168.1.1', '192.168.1.1'),
|
|
array(true, '192.168.1.1', '192.168.1.1'),
|
|
@@ -41,11 +41,54 @@ class RequestMatcherTest extends \PHPUnit_Framework_TestCase
|
|
array(true, '192.168.1.1', '192.168.1.0/24'),
|
|
array(true, '192.168.1.1', '192.168.1.0/24'),
|
|
array(false, '192.168.1.1', '1.2.3.4/1'),
|
|
array(false, '192.168.1.1', '1.2.3.4/1'),
|
|
array(false, '192.168.1.1', '192.168.1/33'),
|
|
array(false, '192.168.1.1', '192.168.1/33'),
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @dataProvider testIpv6Provider
|
|
|
|
+ */
|
|
|
|
+ public function testIpv6($matches, $remoteAddr, $cidr)
|
|
|
|
+ {
|
|
|
|
+ if (!defined('AF_INET6')) {
|
|
|
|
+ $this->markTestSkipped('Only works when PHP is compiled without the option "disable-ipv6".');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $request = Request::create('', 'get', array(), array(), array(), array('REMOTE_ADDR' => $remoteAddr));
|
|
|
|
+
|
|
|
|
+ $matcher = new RequestMatcher();
|
|
|
|
+ $matcher->matchIp($cidr);
|
|
|
|
+
|
|
|
|
+ $this->assertEquals($matches, $matcher->matches($request));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public function testIpv6Provider()
|
|
|
|
+ {
|
|
|
|
+ return array(
|
|
array(true, '2a01:198:603:0:396e:4789:8e99:890f', '2a01:198:603:0::/65'),
|
|
array(true, '2a01:198:603:0:396e:4789:8e99:890f', '2a01:198:603:0::/65'),
|
|
array(false, '2a00:198:603:0:396e:4789:8e99:890f', '2a01:198:603:0::/65'),
|
|
array(false, '2a00:198:603:0:396e:4789:8e99:890f', '2a01:198:603:0::/65'),
|
|
);
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public function testAnIpv6WithOptionDisabledIpv6()
|
|
|
|
+ {
|
|
|
|
+ if (defined('AF_INET6')) {
|
|
|
|
+ $this->markTestSkipped('Only works when PHP is compiled with the option "disable-ipv6".');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $request = Request::create('', 'get', array(), array(), array(), array('REMOTE_ADDR' => '2a01:198:603:0:396e:4789:8e99:890f'));
|
|
|
|
+
|
|
|
|
+ $matcher = new RequestMatcher();
|
|
|
|
+ $matcher->matchIp('2a01:198:603:0::/65');
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ $matcher->matches($request);
|
|
|
|
+
|
|
|
|
+ $this->fail('An expected RuntimeException has not been raised.');
|
|
|
|
+ } catch (\Exception $e) {
|
|
|
|
+ $this->assertInstanceOf('\RuntimeException', $e);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
public function testMethod()
|
|
public function testMethod()
|
|
{
|
|
{
|
|
$matcher = new RequestMatcher();
|
|
$matcher = new RequestMatcher();
|
|
@@ -135,4 +178,3 @@ class RequestMatcherTest extends \PHPUnit_Framework_TestCase
|
|
$this->assertFalse($matcher->matches($request));
|
|
$this->assertFalse($matcher->matches($request));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|