Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * @see https://github.com/zendframework/zend-diactoros for the canonical ..
Decoded Output download
<?php
/**
* @see https://github.com/zendframework/zend-diactoros for the canonical source repository
* @copyright Copyright (c) 2015-2018 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License
*/
declare(strict_types=1);
namespace ZendTest\Diactoros\Response;
use InvalidArgumentException;
use PHPUnit\Framework\TestCase;
use Zend\Diactoros\Response\RedirectResponse;
use Zend\Diactoros\Uri;
class RedirectResponseTest extends TestCase
{
public function testConstructorAcceptsStringUriAndProduces302ResponseWithLocationHeader()
{
$response = new RedirectResponse('/foo/bar');
$this->assertSame(302, $response->getStatusCode());
$this->assertTrue($response->hasHeader('Location'));
$this->assertSame('/foo/bar', $response->getHeaderLine('Location'));
}
public function testConstructorAcceptsUriInstanceAndProduces302ResponseWithLocationHeader()
{
$uri = new Uri('https://example.com:10082/foo/bar');
$response = new RedirectResponse($uri);
$this->assertSame(302, $response->getStatusCode());
$this->assertTrue($response->hasHeader('Location'));
$this->assertSame((string) $uri, $response->getHeaderLine('Location'));
}
public function testConstructorAllowsSpecifyingAlternateStatusCode()
{
$response = new RedirectResponse('/foo/bar', 301);
$this->assertSame(301, $response->getStatusCode());
$this->assertTrue($response->hasHeader('Location'));
$this->assertSame('/foo/bar', $response->getHeaderLine('Location'));
}
public function testConstructorAllowsSpecifyingHeaders()
{
$response = new RedirectResponse('/foo/bar', 302, ['X-Foo' => ['Bar']]);
$this->assertSame(302, $response->getStatusCode());
$this->assertTrue($response->hasHeader('Location'));
$this->assertSame('/foo/bar', $response->getHeaderLine('Location'));
$this->assertTrue($response->hasHeader('X-Foo'));
$this->assertSame('Bar', $response->getHeaderLine('X-Foo'));
}
public function invalidUris()
{
return [
'null' => [ null ],
'false' => [ false ],
'true' => [ true ],
'zero' => [ 0 ],
'int' => [ 1 ],
'zero-float' => [ 0.0 ],
'float' => [ 1.1 ],
'array' => [ [ '/foo/bar' ] ],
'object' => [ (object) [ '/foo/bar' ] ],
];
}
/**
* @dataProvider invalidUris
*/
public function testConstructorRaisesExceptionOnInvalidUri($uri)
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Uri');
new RedirectResponse($uri);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* @see https://github.com/zendframework/zend-diactoros for the canonical source repository
* @copyright Copyright (c) 2015-2018 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License
*/
declare(strict_types=1);
namespace ZendTest\Diactoros\Response;
use InvalidArgumentException;
use PHPUnit\Framework\TestCase;
use Zend\Diactoros\Response\RedirectResponse;
use Zend\Diactoros\Uri;
class RedirectResponseTest extends TestCase
{
public function testConstructorAcceptsStringUriAndProduces302ResponseWithLocationHeader()
{
$response = new RedirectResponse('/foo/bar');
$this->assertSame(302, $response->getStatusCode());
$this->assertTrue($response->hasHeader('Location'));
$this->assertSame('/foo/bar', $response->getHeaderLine('Location'));
}
public function testConstructorAcceptsUriInstanceAndProduces302ResponseWithLocationHeader()
{
$uri = new Uri('https://example.com:10082/foo/bar');
$response = new RedirectResponse($uri);
$this->assertSame(302, $response->getStatusCode());
$this->assertTrue($response->hasHeader('Location'));
$this->assertSame((string) $uri, $response->getHeaderLine('Location'));
}
public function testConstructorAllowsSpecifyingAlternateStatusCode()
{
$response = new RedirectResponse('/foo/bar', 301);
$this->assertSame(301, $response->getStatusCode());
$this->assertTrue($response->hasHeader('Location'));
$this->assertSame('/foo/bar', $response->getHeaderLine('Location'));
}
public function testConstructorAllowsSpecifyingHeaders()
{
$response = new RedirectResponse('/foo/bar', 302, ['X-Foo' => ['Bar']]);
$this->assertSame(302, $response->getStatusCode());
$this->assertTrue($response->hasHeader('Location'));
$this->assertSame('/foo/bar', $response->getHeaderLine('Location'));
$this->assertTrue($response->hasHeader('X-Foo'));
$this->assertSame('Bar', $response->getHeaderLine('X-Foo'));
}
public function invalidUris()
{
return [
'null' => [ null ],
'false' => [ false ],
'true' => [ true ],
'zero' => [ 0 ],
'int' => [ 1 ],
'zero-float' => [ 0.0 ],
'float' => [ 1.1 ],
'array' => [ [ '/foo/bar' ] ],
'object' => [ (object) [ '/foo/bar' ] ],
];
}
/**
* @dataProvider invalidUris
*/
public function testConstructorRaisesExceptionOnInvalidUri($uri)
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Uri');
new RedirectResponse($uri);
}
}
Function Calls
None |
Stats
MD5 | 120e9c01121fbc60afb8ea22619625b2 |
Eval Count | 0 |
Decode Time | 111 ms |