3 * Tests for the FauxResponse class
5 * Copyright @ 2011 Alexandre Emsenhuber
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
25 class FauxResponseTest
extends MediaWikiTestCase
{
26 /** @var FauxResponse */
29 protected function setUp() {
31 $this->response
= new FauxResponse
;
35 * @covers FauxResponse::setCookie
36 * @covers FauxResponse::getCookie
37 * @covers FauxResponse::getCookieData
38 * @covers FauxResponse::getCookies
40 public function testCookie() {
41 $expire = time() +
100;
52 $this->assertEquals( null, $this->response
->getCookie( 'xkey' ), 'Non-existing cookie' );
53 $this->response
->setCookie( 'key', 'val', $expire, [
60 $this->assertEquals( 'val', $this->response
->getCookie( 'xkey' ), 'Existing cookie' );
61 $this->assertEquals( $cookie, $this->response
->getCookieData( 'xkey' ),
62 'Existing cookie (data)' );
63 $this->assertEquals( [ 'xkey' => $cookie ], $this->response
->getCookies(),
68 * @covers FauxResponse::getheader
69 * @covers FauxResponse::header
71 public function testHeader() {
72 $this->assertEquals( null, $this->response
->getHeader( 'Location' ), 'Non-existing header' );
74 $this->response
->header( 'Location: http://localhost/' );
77 $this->response
->getHeader( 'Location' ),
81 $this->response
->header( 'Location: http://127.0.0.1/' );
84 $this->response
->getHeader( 'Location' ),
88 $this->response
->header( 'Location: http://127.0.0.2/', false );
91 $this->response
->getHeader( 'Location' ),
92 'Same header with override disabled'
95 $this->response
->header( 'Location: http://localhost/' );
98 $this->response
->getHeader( 'LOCATION' ),
99 'Get header case insensitive'
104 * @covers FauxResponse::getStatusCode
106 public function testResponseCode() {
107 $this->response
->header( 'HTTP/1.1 200' );
108 $this->assertEquals( 200, $this->response
->getStatusCode(), 'Header with no message' );
110 $this->response
->header( 'HTTP/1.x 201' );
113 $this->response
->getStatusCode(),
114 'Header with no message and protocol 1.x'
117 $this->response
->header( 'HTTP/1.1 202 OK' );
118 $this->assertEquals( 202, $this->response
->getStatusCode(), 'Normal header' );
120 $this->response
->header( 'HTTP/1.x 203 OK' );
123 $this->response
->getStatusCode(),
124 'Normal header with no message and protocol 1.x'
127 $this->response
->header( 'HTTP/1.x 204 OK', false, 205 );
130 $this->response
->getStatusCode(),
131 'Third parameter overrides the HTTP/... header'
134 $this->response
->statusHeader( 210 );
137 $this->response
->getStatusCode(),
138 'Handle statusHeader method'
141 $this->response
->header( 'Location: http://localhost/', false, 206 );
144 $this->response
->getStatusCode(),
145 'Third parameter with another header'