2011-07-13 20:16:14 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Tests for the FauxResponse class
|
|
|
|
|
*
|
|
|
|
|
* Copyright @ 2011 Alexandre Emsenhuber
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class FauxResponseTest extends MediaWikiTestCase {
|
2013-10-24 10:54:02 +00:00
|
|
|
/** @var FauxResponse */
|
|
|
|
|
protected $response;
|
2011-07-13 20:16:14 +00:00
|
|
|
|
2012-10-08 10:56:20 +00:00
|
|
|
protected function setUp() {
|
2012-10-23 17:02:36 +00:00
|
|
|
parent::setUp();
|
2011-07-13 20:16:14 +00:00
|
|
|
$this->response = new FauxResponse;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-24 10:54:02 +00:00
|
|
|
/**
|
2015-09-29 02:09:07 +00:00
|
|
|
* @covers FauxResponse::setCookie
|
|
|
|
|
* @covers FauxResponse::getCookie
|
|
|
|
|
* @covers FauxResponse::getCookieData
|
|
|
|
|
* @covers FauxResponse::getCookies
|
2013-10-24 10:54:02 +00:00
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testCookie() {
|
2015-09-29 02:09:07 +00:00
|
|
|
$expire = time() + 100;
|
2016-02-17 09:09:32 +00:00
|
|
|
$cookie = [
|
2015-09-29 02:09:07 +00:00
|
|
|
'value' => 'val',
|
|
|
|
|
'path' => '/path',
|
|
|
|
|
'domain' => 'domain',
|
|
|
|
|
'secure' => true,
|
|
|
|
|
'httpOnly' => false,
|
|
|
|
|
'raw' => false,
|
|
|
|
|
'expire' => $expire,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2015-09-29 02:09:07 +00:00
|
|
|
|
|
|
|
|
$this->assertEquals( null, $this->response->getCookie( 'xkey' ), 'Non-existing cookie' );
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->response->setCookie( 'key', 'val', $expire, [
|
2015-09-29 02:09:07 +00:00
|
|
|
'prefix' => 'x',
|
|
|
|
|
'path' => '/path',
|
|
|
|
|
'domain' => 'domain',
|
|
|
|
|
'secure' => 1,
|
|
|
|
|
'httpOnly' => 0,
|
2016-02-17 09:09:32 +00:00
|
|
|
] );
|
2015-09-29 02:09:07 +00:00
|
|
|
$this->assertEquals( 'val', $this->response->getCookie( 'xkey' ), 'Existing cookie' );
|
|
|
|
|
$this->assertEquals( $cookie, $this->response->getCookieData( 'xkey' ),
|
|
|
|
|
'Existing cookie (data)' );
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->assertEquals( [ 'xkey' => $cookie ], $this->response->getCookies(),
|
2015-09-29 02:09:07 +00:00
|
|
|
'Existing cookies' );
|
2011-07-13 20:16:14 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-24 10:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* @covers FauxResponse::getheader
|
|
|
|
|
* @covers FauxResponse::header
|
|
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testHeader() {
|
2016-03-18 13:55:54 +00:00
|
|
|
$this->assertEquals( null, $this->response->getHeader( 'Location' ), 'Non-existing header' );
|
2011-07-13 20:16:14 +00:00
|
|
|
|
|
|
|
|
$this->response->header( 'Location: http://localhost/' );
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
'http://localhost/',
|
2016-03-18 13:55:54 +00:00
|
|
|
$this->response->getHeader( 'Location' ),
|
2014-04-24 10:05:52 +00:00
|
|
|
'Set header'
|
|
|
|
|
);
|
2011-07-13 20:16:14 +00:00
|
|
|
|
|
|
|
|
$this->response->header( 'Location: http://127.0.0.1/' );
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
'http://127.0.0.1/',
|
2016-03-18 13:55:54 +00:00
|
|
|
$this->response->getHeader( 'Location' ),
|
2014-04-24 10:05:52 +00:00
|
|
|
'Same header'
|
|
|
|
|
);
|
2011-07-13 20:16:14 +00:00
|
|
|
|
|
|
|
|
$this->response->header( 'Location: http://127.0.0.2/', false );
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
'http://127.0.0.1/',
|
2016-03-18 13:55:54 +00:00
|
|
|
$this->response->getHeader( 'Location' ),
|
2014-04-24 10:05:52 +00:00
|
|
|
'Same header with override disabled'
|
|
|
|
|
);
|
2013-05-31 13:43:31 +00:00
|
|
|
|
|
|
|
|
$this->response->header( 'Location: http://localhost/' );
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
'http://localhost/',
|
2016-03-18 13:55:54 +00:00
|
|
|
$this->response->getHeader( 'LOCATION' ),
|
2014-04-24 10:05:52 +00:00
|
|
|
'Get header case insensitive'
|
|
|
|
|
);
|
2011-07-13 20:16:14 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-24 10:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* @covers FauxResponse::getStatusCode
|
|
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testResponseCode() {
|
2011-07-13 20:16:14 +00:00
|
|
|
$this->response->header( 'HTTP/1.1 200' );
|
|
|
|
|
$this->assertEquals( 200, $this->response->getStatusCode(), 'Header with no message' );
|
|
|
|
|
|
|
|
|
|
$this->response->header( 'HTTP/1.x 201' );
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
201,
|
|
|
|
|
$this->response->getStatusCode(),
|
|
|
|
|
'Header with no message and protocol 1.x'
|
|
|
|
|
);
|
2011-07-13 20:16:14 +00:00
|
|
|
|
|
|
|
|
$this->response->header( 'HTTP/1.1 202 OK' );
|
|
|
|
|
$this->assertEquals( 202, $this->response->getStatusCode(), 'Normal header' );
|
|
|
|
|
|
|
|
|
|
$this->response->header( 'HTTP/1.x 203 OK' );
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
203,
|
|
|
|
|
$this->response->getStatusCode(),
|
|
|
|
|
'Normal header with no message and protocol 1.x'
|
|
|
|
|
);
|
2011-07-13 20:16:14 +00:00
|
|
|
|
|
|
|
|
$this->response->header( 'HTTP/1.x 204 OK', false, 205 );
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
205,
|
|
|
|
|
$this->response->getStatusCode(),
|
|
|
|
|
'Third parameter overrides the HTTP/... header'
|
|
|
|
|
);
|
2011-07-13 20:16:14 +00:00
|
|
|
|
2015-05-24 12:31:11 +00:00
|
|
|
$this->response->statusHeader( 210 );
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
210,
|
|
|
|
|
$this->response->getStatusCode(),
|
|
|
|
|
'Handle statusHeader method'
|
|
|
|
|
);
|
|
|
|
|
|
2011-07-13 20:16:14 +00:00
|
|
|
$this->response->header( 'Location: http://localhost/', false, 206 );
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
206,
|
|
|
|
|
$this->response->getStatusCode(),
|
|
|
|
|
'Third parameter with another header'
|
|
|
|
|
);
|
2011-07-13 20:16:14 +00:00
|
|
|
}
|
|
|
|
|
}
|