| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 2.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Network;
- use Cake\Core\Configure;
- use Cake\Error;
- use Cake\Network\Request;
- use Cake\Network\Session;
- use Cake\Routing\Dispatcher;
- use Cake\TestSuite\TestCase;
- use Cake\Utility\Xml;
- /**
- * Class TestRequest
- *
- */
- class RequestTest extends TestCase {
- /**
- * Setup callback
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $this->_case = null;
- if (isset($_GET['case'])) {
- $this->_case = $_GET['case'];
- unset($_GET['case']);
- }
- Configure::write('App.baseUrl', false);
- }
- /**
- * TearDown
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- if (!empty($this->_case)) {
- $_GET['case'] = $this->_case;
- }
- }
- /**
- * Test that the autoparse = false constructor works.
- *
- * @return void
- */
- public function testNoAutoParseConstruction() {
- $_GET = array(
- 'one' => 'param'
- );
- $request = new Request();
- $this->assertFalse(isset($request->query['one']));
- }
- /**
- * Test construction
- *
- * @return void
- */
- public function testConstructionQueryData() {
- $data = array(
- 'query' => array(
- 'one' => 'param',
- 'two' => 'banana'
- ),
- 'url' => 'some/path'
- );
- $request = new Request($data);
- $this->assertEquals($request->query, $data['query']);
- $this->assertEquals('some/path', $request->url);
- }
- /**
- * Test that querystring args provided in the URL string are parsed.
- *
- * @return void
- */
- public function testQueryStringParsingFromInputUrl() {
- $_GET = array();
- $request = new Request(array('url' => 'some/path?one=something&two=else'));
- $expected = array('one' => 'something', 'two' => 'else');
- $this->assertEquals($expected, $request->query);
- $this->assertEquals('some/path?one=something&two=else', $request->url);
- }
- /**
- * Test that named arguments + querystrings are handled correctly.
- *
- * @return void
- */
- public function testQueryStringAndNamedParams() {
- $_SERVER['REQUEST_URI'] = '/tasks/index?ts=123456';
- $request = Request::createFromGlobals();
- $this->assertEquals('tasks/index', $request->url);
- $_SERVER['REQUEST_URI'] = '/tasks/index/?ts=123456';
- $request = Request::createFromGlobals();
- $this->assertEquals('tasks/index/', $request->url);
- $_SERVER['REQUEST_URI'] = '/some/path?url=http://cakephp.org';
- $request = Request::createFromGlobals();
- $this->assertEquals('some/path', $request->url);
- $_SERVER['REQUEST_URI'] = Configure::read('App.fullBaseUrl') . '/other/path?url=http://cakephp.org';
- $request = Request::createFromGlobals();
- $this->assertEquals('other/path', $request->url);
- }
- /**
- * Test addParams() method
- *
- * @return void
- */
- public function testAddParams() {
- $request = new Request();
- $request->params = array('controller' => 'posts', 'action' => 'view');
- $result = $request->addParams(array('plugin' => null, 'action' => 'index'));
- $this->assertSame($result, $request, 'Method did not return itself. %s');
- $this->assertEquals('posts', $request->controller);
- $this->assertEquals('index', $request->action);
- $this->assertEquals(null, $request->plugin);
- }
- /**
- * Test splicing in paths.
- *
- * @return void
- */
- public function testAddPaths() {
- $request = new Request();
- $request->webroot = '/some/path/going/here/';
- $result = $request->addPaths(array(
- 'random' => '/something', 'webroot' => '/', 'here' => '/', 'base' => '/base_dir'
- ));
- $this->assertSame($result, $request, 'Method did not return itself. %s');
- $this->assertEquals('/', $request->webroot);
- $this->assertEquals('/base_dir', $request->base);
- $this->assertEquals('/', $request->here);
- $this->assertFalse(isset($request->random));
- }
- /**
- * Test parsing POST data into the object.
- *
- * @return void
- */
- public function testPostParsing() {
- $post = array(
- 'Article' => array('title')
- );
- $request = new Request(compact('post'));
- $this->assertEquals($post, $request->data);
- $post = array('one' => 1, 'two' => 'three');
- $request = new Request(compact('post'));
- $this->assertEquals($post, $request->data);
- $post = array(
- 'Article' => array('title' => 'Testing'),
- 'action' => 'update'
- );
- $request = new Request(compact('post'));
- $this->assertEquals($post, $request->data);
- }
- /**
- * Test parsing PUT data into the object.
- *
- * @return void
- */
- public function testPutParsing() {
- $data = array(
- 'Article' => array('title')
- );
- $request = new Request([
- 'input' => 'Article[]=title',
- 'environment' => [
- 'REQUEST_METHOD' => 'PUT',
- 'CONTENT_TYPE' => 'application/x-www-form-urlencoded; charset=UTF-8'
- ]
- ]);
- $this->assertEquals($data, $request->data);
- $data = array('one' => 1, 'two' => 'three');
- $request = new Request([
- 'input' => 'one=1&two=three',
- 'environment' => [
- 'REQUEST_METHOD' => 'PUT',
- 'CONTENT_TYPE' => 'application/x-www-form-urlencoded; charset=UTF-8'
- ]
- ]);
- $this->assertEquals($data, $request->data);
- $request = new Request([
- 'input' => 'Article[title]=Testing&action=update',
- 'environment' => [
- 'REQUEST_METHOD' => 'DELETE',
- 'CONTENT_TYPE' => 'application/x-www-form-urlencoded; charset=UTF-8'
- ]
- ]);
- $expected = array(
- 'Article' => array('title' => 'Testing'),
- 'action' => 'update'
- );
- $this->assertEquals($expected, $request->data);
- $data = array(
- 'Article' => array('title'),
- 'Tag' => array('Tag' => array(1, 2))
- );
- $request = new Request([
- 'input' => 'Article[]=title&Tag[Tag][]=1&Tag[Tag][]=2',
- 'environment' => [
- 'REQUEST_METHOD' => 'PATCH',
- 'CONTENT_TYPE' => 'application/x-www-form-urlencoded; charset=UTF-8'
- ]
- ]);
- $this->assertEquals($data, $request->data);
- }
- /**
- * Test parsing json PUT data into the object.
- *
- * @return void
- */
- public function testPutParsingJSON() {
- $data = '{"Article":["title"]}';
- $request = new Request([
- 'input' => $data,
- 'environment' => [
- 'REQUEST_METHOD' => 'PUT',
- 'CONTENT_TYPE' => 'application/json'
- ]
- ]);
- $this->assertEquals([], $request->data);
- $result = $request->input('json_decode', true);
- $this->assertEquals(['title'], $result['Article']);
- }
- /**
- * Test processing files with `file` field names.
- *
- * @return void
- */
- public function testProcessFilesNested() {
- $files = [
- 'image_main' => [
- 'name' => ['file' => 'born on.txt'],
- 'type' => ['file' => 'text/plain'],
- 'tmp_name' => ['file' => '/private/var/tmp/php'],
- 'error' => ['file' => 0],
- 'size' => ['file' => 17178]
- ],
- 0 => [
- 'name' => ['image' => 'scratch.text'],
- 'type' => ['image' => 'text/plain'],
- 'tmp_name' => ['image' => '/private/var/tmp/phpChIZPb'],
- 'error' => ['image' => 0],
- 'size' => ['image' => 1490]
- ],
- 'pictures' => [
- 'name' => [
- 0 => ['file' => 'a-file.png'],
- 1 => ['file' => 'a-moose.png']
- ],
- 'type' => [
- 0 => ['file' => 'image/png'],
- 1 => ['file' => 'image/jpg']
- ],
- 'tmp_name' => [
- 0 => ['file' => '/tmp/file123'],
- 1 => ['file' => '/tmp/file234']
- ],
- 'error' => [
- 0 => ['file' => '0'],
- 1 => ['file' => '0']
- ],
- 'size' => [
- 0 => ['file' => 17188],
- 1 => ['file' => 2010]
- ],
- ]
- ];
- $post = [
- 'pictures' => [
- 0 => ['name' => 'A cat'],
- 1 => ['name' => 'A moose']
- ],
- 0 => [
- 'name' => 'A dog'
- ]
- ];
- $request = new Request(compact('files', 'post'));
- $expected = [
- 'image_main' => [
- 'file' => [
- 'name' => 'born on.txt',
- 'type' => 'text/plain',
- 'tmp_name' => '/private/var/tmp/php',
- 'error' => 0,
- 'size' => 17178,
- ]
- ],
- 'pictures' => [
- 0 => [
- 'name' => 'A cat',
- 'file' => [
- 'name' => 'a-file.png',
- 'type' => 'image/png',
- 'tmp_name' => '/tmp/file123',
- 'error' => '0',
- 'size' => 17188,
- ]
- ],
- 1 => [
- 'name' => 'A moose',
- 'file' => [
- 'name' => 'a-moose.png',
- 'type' => 'image/jpg',
- 'tmp_name' => '/tmp/file234',
- 'error' => '0',
- 'size' => 2010,
- ]
- ]
- ],
- 0 => [
- 'name' => 'A dog',
- 'image' => [
- 'name' => 'scratch.text',
- 'type' => 'text/plain',
- 'tmp_name' => '/private/var/tmp/phpChIZPb',
- 'error' => 0,
- 'size' => 1490
- ]
- ]
- ];
- $this->assertEquals($expected, $request->data);
- }
- /**
- * Test processing a file input with no .'s in it.
- *
- * @return void
- */
- public function testProcessFilesFlat() {
- $files = [
- 'birth_cert' => [
- 'name' => 'born on.txt',
- 'type' => 'application/octet-stream',
- 'tmp_name' => '/private/var/tmp/phpbsUWfH',
- 'error' => 0,
- 'size' => 123,
- ]
- ];
- $request = new Request(compact('files'));
- $expected = [
- 'birth_cert' => [
- 'name' => 'born on.txt',
- 'type' => 'application/octet-stream',
- 'tmp_name' => '/private/var/tmp/phpbsUWfH',
- 'error' => 0,
- 'size' => 123
- ]
- ];
- $this->assertEquals($expected, $request->data);
- }
- /**
- * Test that files in the 0th index work.
- *
- * @return void
- */
- public function testFilesZeroithIndex() {
- $files = array(
- 0 => array(
- 'name' => 'cake_sqlserver_patch.patch',
- 'type' => 'text/plain',
- 'tmp_name' => '/private/var/tmp/phpy05Ywj',
- 'error' => 0,
- 'size' => 6271,
- ),
- );
- $request = new Request([
- 'files' => $files
- ]);
- $this->assertEquals($files, $request->data);
- }
- /**
- * Test method overrides coming in from POST data.
- *
- * @return void
- */
- public function testMethodOverrides() {
- $post = array('_method' => 'POST');
- $request = new Request(compact('post'));
- $this->assertEquals('POST', $request->env('REQUEST_METHOD'));
- $post = array('_method' => 'DELETE');
- $request = new Request(compact('post'));
- $this->assertEquals('DELETE', $request->env('REQUEST_METHOD'));
- $request = new Request(['environment' => ['HTTP_X_HTTP_METHOD_OVERRIDE' => 'PUT']]);
- $this->assertEquals('PUT', $request->env('REQUEST_METHOD'));
- }
- /**
- * Test the clientIp method.
- *
- * @return void
- */
- public function testclientIp() {
- $request = new Request(['environment' => [
- 'HTTP_X_FORWARDED_FOR' => '192.168.1.5, 10.0.1.1, proxy.com',
- 'HTTP_CLIENT_IP' => '192.168.1.2',
- 'REMOTE_ADDR' => '192.168.1.3'
- ]]);
- $request->trustProxy = true;
- $this->assertEquals('192.168.1.5', $request->clientIp());
- $request->trustProxy = false;
- $this->assertEquals('192.168.1.2', $request->clientIp());
- $request->env('HTTP_X_FORWARDED_FOR', '');
- $this->assertEquals('192.168.1.2', $request->clientIp());
- $request->env('HTTP_CLIENT_IP', '');
- $this->assertEquals('192.168.1.3', $request->clientIp());
- $request->env('HTTP_CLIENTADDRESS', '10.0.1.2, 10.0.1.1');
- $this->assertEquals('10.0.1.2', $request->clientIp());
- }
- /**
- * Test the referrer function.
- *
- * @return void
- */
- public function testReferer() {
- $request = new Request();
- $request->webroot = '/';
- $request->env('HTTP_REFERER', 'http://cakephp.org');
- $result = $request->referer();
- $this->assertSame('http://cakephp.org', $result);
- $request->env('HTTP_REFERER', '');
- $result = $request->referer();
- $this->assertSame('/', $result);
- $request->env('HTTP_REFERER', Configure::read('App.fullBaseUrl') . '/some/path');
- $result = $request->referer(true);
- $this->assertSame('/some/path', $result);
- $request->env('HTTP_REFERER', Configure::read('App.fullBaseUrl') . '/some/path');
- $result = $request->referer(false);
- $this->assertSame(Configure::read('App.fullBaseUrl') . '/some/path', $result);
- }
- /**
- * Test referer() with a base path that duplicates the
- * first segment.
- *
- * @return void
- */
- public function testRefererBasePath() {
- $request = new Request('some/path');
- $request->url = 'users/login';
- $request->webroot = '/waves/';
- $request->base = '/waves';
- $request->here = '/waves/users/login';
- $request->env('HTTP_REFERER', Configure::read('App.fullBaseUrl') . '/waves/waves/add');
- $result = $request->referer(true);
- $this->assertSame('/waves/add', $result);
- }
- /**
- * test the simple uses of is()
- *
- * @return void
- */
- public function testIsHttpMethods() {
- $request = new Request();
- $this->assertFalse($request->is('undefined-behavior'));
- $request->env('REQUEST_METHOD', 'GET');
- $this->assertTrue($request->is('get'));
- $request->env('REQUEST_METHOD', 'POST');
- $this->assertTrue($request->is('POST'));
- $request->env('REQUEST_METHOD', 'PUT');
- $this->assertTrue($request->is('put'));
- $this->assertFalse($request->is('get'));
- $request->env('REQUEST_METHOD', 'DELETE');
- $this->assertTrue($request->is('delete'));
- $this->assertTrue($request->isDelete());
- $request->env('REQUEST_METHOD', 'delete');
- $this->assertFalse($request->is('delete'));
- }
- /**
- * Test is() with multiple types.
- *
- * @return void
- */
- public function testIsMultiple() {
- $request = new Request();
- $request->env('REQUEST_METHOD', 'GET');
- $this->assertTrue($request->is(array('get', 'post')));
- $request->env('REQUEST_METHOD', 'POST');
- $this->assertTrue($request->is(array('get', 'post')));
- $request->env('REQUEST_METHOD', 'PUT');
- $this->assertFalse($request->is(array('get', 'post')));
- }
- /**
- * Test isAll()
- *
- * @return void
- */
- public function testIsAll() {
- $request = new Request();
- $request->env('HTTP_X_REQUESTED_WITH', 'XMLHttpRequest');
- $request->env('REQUEST_METHOD', 'GET');
- $this->assertTrue($request->isAll(array('ajax', 'get')));
- $this->assertFalse($request->isAll(array('post', 'get')));
- $this->assertFalse($request->isAll(array('ajax', 'post')));
- }
- /**
- * Test the method() method.
- *
- * @return void
- */
- public function testMethod() {
- $request = new Request(['environment' => ['REQUEST_METHOD' => 'delete']]);
- $this->assertEquals('delete', $request->method());
- }
- /**
- * Test host retrieval.
- *
- * @return void
- */
- public function testHost() {
- $request = new Request(['environment' => [
- 'HTTP_HOST' => 'localhost',
- 'HTTP_X_FORWARDED_HOST' => 'cakephp.org',
- ]]);
- $this->assertEquals('localhost', $request->host());
- $request->trustProxy = true;
- $this->assertEquals('cakephp.org', $request->host());
- }
- /**
- * test port retrieval.
- *
- * @return void
- */
- public function testPort() {
- $request = new Request(['environment' => ['SERVER_PORT' => '80']]);
- $this->assertEquals('80', $request->port());
- $request->env('SERVER_PORT', '443');
- $request->env('HTTP_X_FORWARDED_PORT', '80');
- $this->assertEquals('443', $request->port());
- $request->trustProxy = true;
- $this->assertEquals('80', $request->port());
- }
- /**
- * test domain retrieval.
- *
- * @return void
- */
- public function testDomain() {
- $request = new Request(['environment' => ['HTTP_HOST' => 'something.example.com']]);
- $this->assertEquals('example.com', $request->domain());
- $request->env('HTTP_HOST', 'something.example.co.uk');
- $this->assertEquals('example.co.uk', $request->domain(2));
- }
- /**
- * Test scheme() method.
- *
- * @return void
- */
- public function testScheme() {
- $request = new Request(['environment' => ['HTTPS' => 'on']]);
- $this->assertEquals('https', $request->scheme());
- $request->env('HTTPS', '');
- $this->assertEquals('http', $request->scheme());
- $request->env('HTTP_X_FORWARDED_PROTO', 'https');
- $request->trustProxy = true;
- $this->assertEquals('https', $request->scheme());
- }
- /**
- * test getting subdomains for a host.
- *
- * @return void
- */
- public function testSubdomain() {
- $request = new Request(['environment' => ['HTTP_HOST' => 'something.example.com']]);
- $this->assertEquals(['something'], $request->subdomains());
- $request->env('HTTP_HOST', 'www.something.example.com');
- $this->assertEquals(array('www', 'something'), $request->subdomains());
- $request->env('HTTP_HOST', 'www.something.example.co.uk');
- $this->assertEquals(array('www', 'something'), $request->subdomains(2));
- $request->env('HTTP_HOST', 'example.co.uk');
- $this->assertEquals(array(), $request->subdomains(2));
- }
- /**
- * Test ajax, flash and friends
- *
- * @return void
- */
- public function testisAjaxFlashAndFriends() {
- $request = new Request();
- $request->env('HTTP_USER_AGENT', 'Shockwave Flash');
- $this->assertTrue($request->is('flash'));
- $request->env('HTTP_USER_AGENT', 'Adobe Flash');
- $this->assertTrue($request->is('flash'));
- $request->env('HTTP_X_REQUESTED_WITH', 'XMLHttpRequest');
- $this->assertTrue($request->is('ajax'));
- $request->env('HTTP_X_REQUESTED_WITH', 'XMLHTTPREQUEST');
- $this->assertFalse($request->is('ajax'));
- $this->assertFalse($request->isAjax());
- }
- /**
- * Test __call exceptions
- *
- * @expectedException \Cake\Error\Exception
- * @return void
- */
- public function testMagicCallExceptionOnUnknownMethod() {
- $request = new Request();
- $request->IamABanana();
- }
- /**
- * Test is(ssl)
- *
- * @return void
- */
- public function testIsSsl() {
- $_SERVER['HTTPS'] = 1;
- $request = new Request();
- $this->assertTrue($request->is('ssl'));
- $_SERVER['HTTPS'] = 'on';
- $request = new Request();
- $this->assertTrue($request->is('ssl'));
- $_SERVER['HTTPS'] = '1';
- $request = new Request();
- $this->assertTrue($request->is('ssl'));
- $_SERVER['HTTPS'] = 'I am not empty';
- $request = new Request();
- $this->assertTrue($request->is('ssl'));
- $_SERVER['HTTPS'] = 1;
- $request = new Request();
- $this->assertTrue($request->is('ssl'));
- $_SERVER['HTTPS'] = 'off';
- $request = new Request();
- $this->assertFalse($request->is('ssl'));
- $_SERVER['HTTPS'] = false;
- $request = new Request();
- $this->assertFalse($request->is('ssl'));
- $_SERVER['HTTPS'] = '';
- $request = new Request();
- $this->assertFalse($request->is('ssl'));
- }
- /**
- * Test getting request params with object properties.
- *
- * @return void
- */
- public function testMagicget() {
- $request = new Request();
- $request->params = array('controller' => 'posts', 'action' => 'view', 'plugin' => 'blogs');
- $this->assertEquals('posts', $request->controller);
- $this->assertEquals('view', $request->action);
- $this->assertEquals('blogs', $request->plugin);
- $this->assertNull($request->banana);
- }
- /**
- * Test isset()/empty() with overloaded properties.
- *
- * @return void
- */
- public function testMagicisset() {
- $request = new Request();
- $request->params = array(
- 'controller' => 'posts',
- 'action' => 'view',
- 'plugin' => 'blogs',
- );
- $this->assertTrue(isset($request->controller));
- $this->assertFalse(isset($request->notthere));
- $this->assertFalse(empty($request->controller));
- }
- /**
- * Test the array access implementation
- *
- * @return void
- */
- public function testArrayAccess() {
- $request = new Request();
- $request->params = array('controller' => 'posts', 'action' => 'view', 'plugin' => 'blogs');
- $this->assertEquals('posts', $request['controller']);
- $request['slug'] = 'speedy-slug';
- $this->assertEquals('speedy-slug', $request->slug);
- $this->assertEquals('speedy-slug', $request['slug']);
- $this->assertTrue(isset($request['action']));
- $this->assertFalse(isset($request['wrong-param']));
- $this->assertTrue(isset($request['plugin']));
- unset($request['plugin']);
- $this->assertFalse(isset($request['plugin']));
- $this->assertNull($request['plugin']);
- $this->assertNull($request->plugin);
- $request = new Request(array('url' => 'some/path?one=something&two=else'));
- $this->assertTrue(isset($request['url']['one']));
- $request->data = array('Post' => array('title' => 'something'));
- $this->assertEquals('something', $request['data']['Post']['title']);
- }
- /**
- * Test adding detectors and having them work.
- *
- * @return void
- */
- public function testAddDetector() {
- $request = new Request();
- Request::addDetector('closure', function ($request) {
- return true;
- });
- $this->assertTrue($request->is('closure'));
- Request::addDetector('get', function ($request) {
- return $request->env('REQUEST_METHOD') === 'GET';
- });
- $request->env('REQUEST_METHOD', 'GET');
- $this->assertTrue($request->is('get'));
- Request::addDetector('compare', array('env' => 'TEST_VAR', 'value' => 'something'));
- $request->env('TEST_VAR', 'something');
- $this->assertTrue($request->is('compare'), 'Value match failed.');
- $request->env('TEST_VAR', 'wrong');
- $this->assertFalse($request->is('compare'), 'Value mis-match failed.');
- Request::addDetector('compareCamelCase', array('env' => 'TEST_VAR', 'value' => 'foo'));
- $request->env('TEST_VAR', 'foo');
- $this->assertTrue($request->is('compareCamelCase'), 'Value match failed.');
- $this->assertTrue($request->is('comparecamelcase'), 'detectors should be case insensitive');
- $this->assertTrue($request->is('COMPARECAMELCASE'), 'detectors should be case insensitive');
- $request->env('TEST_VAR', 'not foo');
- $this->assertFalse($request->is('compareCamelCase'), 'Value match failed.');
- $this->assertFalse($request->is('comparecamelcase'), 'detectors should be case insensitive');
- $this->assertFalse($request->is('COMPARECAMELCASE'), 'detectors should be case insensitive');
- Request::addDetector('banana', array('env' => 'TEST_VAR', 'pattern' => '/^ban.*$/'));
- $request->env('TEST_VAR', 'banana');
- $this->assertTrue($request->isBanana());
- $request->env('TEST_VAR', 'wrong value');
- $this->assertFalse($request->isBanana());
- Request::addDetector('mobile', array('env' => 'HTTP_USER_AGENT', 'options' => array('Imagination')));
- $request->env('HTTP_USER_AGENT', 'Imagination land');
- $this->assertTrue($request->isMobile());
- Request::addDetector('callme', array('env' => 'TEST_VAR', 'callback' => array($this, 'detectCallback')));
- Request::addDetector('index', array('param' => 'action', 'value' => 'index'));
- $request->params['action'] = 'index';
- $this->assertTrue($request->isIndex());
- $request->params['action'] = 'add';
- $this->assertFalse($request->isIndex());
- $request->return = true;
- $this->assertTrue($request->isCallMe());
- $request->return = false;
- $this->assertFalse($request->isCallMe());
- Request::addDetector('callme', array($this, 'detectCallback'));
- $request->return = true;
- $this->assertTrue($request->isCallMe());
- Request::addDetector('extension', array('param' => 'ext', 'options' => array('pdf', 'png', 'txt')));
- $request->params['ext'] = 'pdf';
- $this->assertTrue($request->is('extension'));
- $request->params['ext'] = 'exe';
- $this->assertFalse($request->isExtension());
- }
- /**
- * Helper function for testing callbacks.
- *
- * @param $request
- * @return bool
- */
- public function detectCallback($request) {
- return (bool)$request->return;
- }
- /**
- * Test getting headers
- *
- * @return void
- */
- public function testHeader() {
- $request = new Request(['environment' => [
- 'HTTP_HOST' => 'localhost',
- 'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-ca) AppleWebKit/534.8+ (KHTML, like Gecko) Version/5.0 Safari/533.16'
- ]]);
- $this->assertEquals($request->env('HTTP_HOST'), $request->header('host'));
- $this->assertEquals($request->env('HTTP_USER_AGENT'), $request->header('User-Agent'));
- }
- /**
- * Test accepts() with and without parameters
- *
- * @return void
- */
- public function testAccepts() {
- $request = new Request(['environment' => [
- 'HTTP_ACCEPT' => 'text/xml,application/xml;q=0.9,application/xhtml+xml,text/html,text/plain,image/png'
- ]]);
- $result = $request->accepts();
- $expected = array(
- 'text/xml', 'application/xhtml+xml', 'text/html', 'text/plain', 'image/png', 'application/xml'
- );
- $this->assertEquals($expected, $result, 'Content types differ.');
- $result = $request->accepts('text/html');
- $this->assertTrue($result);
- $result = $request->accepts('image/gif');
- $this->assertFalse($result);
- }
- /**
- * Test that accept header types are trimmed for comparisons.
- *
- * @return void
- */
- public function testAcceptWithWhitespace() {
- $request = new Request(['environment' => [
- 'HTTP_ACCEPT' => 'text/xml , text/html , text/plain,image/png'
- ]]);
- $result = $request->accepts();
- $expected = array(
- 'text/xml', 'text/html', 'text/plain', 'image/png'
- );
- $this->assertEquals($expected, $result, 'Content types differ.');
- $this->assertTrue($request->accepts('text/html'));
- }
- /**
- * Content types from accepts() should respect the client's q preference values.
- *
- * @return void
- */
- public function testAcceptWithQvalueSorting() {
- $request = new Request(['environment' => [
- 'HTTP_ACCEPT' => 'text/html;q=0.8,application/json;q=0.7,application/xml;q=1.0'
- ]]);
- $result = $request->accepts();
- $expected = array('application/xml', 'text/html', 'application/json');
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the raw parsing of accept headers into the q value formatting.
- *
- * @return void
- */
- public function testParseAcceptWithQValue() {
- $request = new Request(['environment' => [
- 'HTTP_ACCEPT' => 'text/html;q=0.8,application/json;q=0.7,application/xml;q=1.0,image/png'
- ]]);
- $result = $request->parseAccept();
- $expected = array(
- '1.0' => array('application/xml', 'image/png'),
- '0.8' => array('text/html'),
- '0.7' => array('application/json'),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test parsing accept with a confusing accept value.
- *
- * @return void
- */
- public function testParseAcceptNoQValues() {
- $request = new Request(['environment' => [
- 'HTTP_ACCEPT' => 'application/json, text/plain, */*'
- ]]);
- $result = $request->parseAccept();
- $expected = array(
- '1.0' => array('application/json', 'text/plain', '*/*'),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test parsing accept ignores index param
- *
- * @return void
- */
- public function testParseAcceptIgnoreAcceptExtensions() {
- $request = new Request(['environment' => [
- 'url' => '/',
- 'HTTP_ACCEPT' => 'application/json;level=1, text/plain, */*'
- ]], false);
- $result = $request->parseAccept();
- $expected = array(
- '1.0' => array('application/json', 'text/plain', '*/*'),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that parsing accept headers with invalid syntax works.
- *
- * The header used is missing a q value for application/xml.
- *
- * @return void
- */
- public function testParseAcceptInvalidSyntax() {
- $request = new Request(['environment' => [
- 'url' => '/',
- 'HTTP_ACCEPT' => 'text/html,application/xhtml+xml,application/xml;image/png,image/jpeg,image/*;q=0.9,*/*;q=0.8'
- ]], false);
- $result = $request->parseAccept();
- $expected = array(
- '1.0' => array('text/html', 'application/xhtml+xml', 'application/xml', 'image/jpeg'),
- '0.9' => array('image/*'),
- '0.8' => array('*/*'),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test baseUrl and webroot with ModRewrite
- *
- * @return void
- */
- public function testBaseUrlAndWebrootWithModRewrite() {
- Configure::write('App.baseUrl', false);
- $_SERVER['DOCUMENT_ROOT'] = '/cake/repo/branches';
- $_SERVER['PHP_SELF'] = '/urlencode me/webroot/index.php';
- $_SERVER['PATH_INFO'] = '/posts/view/1';
- $request = Request::createFromGlobals();
- $this->assertEquals('/urlencode%20me', $request->base);
- $this->assertEquals('/urlencode%20me/', $request->webroot);
- $this->assertEquals('posts/view/1', $request->url);
- $_SERVER['DOCUMENT_ROOT'] = '/cake/repo/branches';
- $_SERVER['PHP_SELF'] = '/1.2.x.x/webroot/index.php';
- $_SERVER['PATH_INFO'] = '/posts/view/1';
- $request = Request::createFromGlobals();
- $this->assertEquals('/1.2.x.x', $request->base);
- $this->assertEquals('/1.2.x.x/', $request->webroot);
- $this->assertEquals('posts/view/1', $request->url);
- $_SERVER['DOCUMENT_ROOT'] = '/cake/repo/branches/1.2.x.x/webroot';
- $_SERVER['PHP_SELF'] = '/index.php';
- $_SERVER['PATH_INFO'] = '/posts/add';
- $request = Request::createFromGlobals();
- $this->assertEquals('', $request->base);
- $this->assertEquals('/', $request->webroot);
- $this->assertEquals('posts/add', $request->url);
- $_SERVER['DOCUMENT_ROOT'] = '/cake/repo/branches/1.2.x.x/test/';
- $_SERVER['PHP_SELF'] = '/webroot/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('', $request->base);
- $this->assertEquals('/', $request->webroot);
- $_SERVER['DOCUMENT_ROOT'] = '/some/apps/where';
- $_SERVER['PHP_SELF'] = '/webroot/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('', $request->base);
- $this->assertEquals('/', $request->webroot);
- Configure::write('App.dir', 'auth');
- $_SERVER['DOCUMENT_ROOT'] = '/cake/repo/branches';
- $_SERVER['PHP_SELF'] = '/demos/webroot/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('/demos', $request->base);
- $this->assertEquals('/demos/', $request->webroot);
- Configure::write('App.dir', 'code');
- $_SERVER['DOCUMENT_ROOT'] = '/Library/WebServer/Documents';
- $_SERVER['PHP_SELF'] = '/clients/PewterReport/webroot/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('/clients/PewterReport', $request->base);
- $this->assertEquals('/clients/PewterReport/', $request->webroot);
- }
- /**
- * Test baseUrl with ModRewrite alias
- *
- * @return void
- */
- public function testBaseUrlwithModRewriteAlias() {
- $_SERVER['DOCUMENT_ROOT'] = '/home/aplusnur/public_html';
- $_SERVER['PHP_SELF'] = '/control/index.php';
- Configure::write('App.base', '/control');
- $request = Request::createFromGlobals();
- $this->assertEquals('/control', $request->base);
- $this->assertEquals('/control/', $request->webroot);
- Configure::write('App.base', false);
- Configure::write('App.dir', 'affiliate');
- Configure::write('App.webroot', 'newaffiliate');
- $_SERVER['DOCUMENT_ROOT'] = '/var/www/abtravaff/html';
- $_SERVER['PHP_SELF'] = '/newaffiliate/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('', $request->base);
- $this->assertEquals('/', $request->webroot);
- }
- /**
- * Test base, webroot, URL and here parsing when there is URL rewriting but
- * CakePHP gets called with index.php in URL nonetheless.
- *
- * Tests uri with
- * - index.php/
- * - index.php/
- * - index.php/apples/
- * - index.php/bananas/eat/tasty_banana
- *
- * @link https://cakephp.lighthouseapp.com/projects/42648-cakephp/tickets/3318
- * @return void
- */
- public function testBaseUrlWithModRewriteAndIndexPhp() {
- $_SERVER['REQUEST_URI'] = '/cakephp/webroot/index.php';
- $_SERVER['PHP_SELF'] = '/cakephp/webroot/index.php';
- unset($_SERVER['PATH_INFO']);
- $request = Request::createFromGlobals();
- $this->assertEquals('/cakephp', $request->base);
- $this->assertEquals('/cakephp/', $request->webroot);
- $this->assertEquals('', $request->url);
- $this->assertEquals('/cakephp/', $request->here);
- $_SERVER['REQUEST_URI'] = '/cakephp/webroot/index.php/';
- $_SERVER['PHP_SELF'] = '/cakephp/webroot/index.php/';
- $_SERVER['PATH_INFO'] = '/';
- $request = Request::createFromGlobals();
- $this->assertEquals('/cakephp', $request->base);
- $this->assertEquals('/cakephp/', $request->webroot);
- $this->assertEquals('', $request->url);
- $this->assertEquals('/cakephp/', $request->here);
- $_SERVER['REQUEST_URI'] = '/cakephp/webroot/index.php/apples';
- $_SERVER['PHP_SELF'] = '/cakephp/webroot/index.php/apples';
- $_SERVER['PATH_INFO'] = '/apples';
- $request = Request::createFromGlobals();
- $this->assertEquals('/cakephp', $request->base);
- $this->assertEquals('/cakephp/', $request->webroot);
- $this->assertEquals('apples', $request->url);
- $this->assertEquals('/cakephp/apples', $request->here);
- $_SERVER['REQUEST_URI'] = '/cakephp/webroot/index.php/melons/share/';
- $_SERVER['PHP_SELF'] = '/cakephp/webroot/index.php/melons/share/';
- $_SERVER['PATH_INFO'] = '/melons/share/';
- $request = Request::createFromGlobals();
- $this->assertEquals('/cakephp', $request->base);
- $this->assertEquals('/cakephp/', $request->webroot);
- $this->assertEquals('melons/share/', $request->url);
- $this->assertEquals('/cakephp/melons/share/', $request->here);
- $_SERVER['REQUEST_URI'] = '/cakephp/webroot/index.php/bananas/eat/tasty_banana';
- $_SERVER['PHP_SELF'] = '/cakephp/webroot/index.php/bananas/eat/tasty_banana';
- $_SERVER['PATH_INFO'] = '/bananas/eat/tasty_banana';
- $request = Request::createFromGlobals();
- $this->assertEquals('/cakephp', $request->base);
- $this->assertEquals('/cakephp/', $request->webroot);
- $this->assertEquals('bananas/eat/tasty_banana', $request->url);
- $this->assertEquals('/cakephp/bananas/eat/tasty_banana', $request->here);
- }
- /**
- * Test base, webroot, and URL parsing when there is no URL rewriting
- *
- * @return void
- */
- public function testBaseUrlWithNoModRewrite() {
- $_SERVER['DOCUMENT_ROOT'] = '/Users/markstory/Sites';
- $_SERVER['SCRIPT_FILENAME'] = '/Users/markstory/Sites/cake/index.php';
- $_SERVER['PHP_SELF'] = '/cake/index.php/posts/index';
- $_SERVER['REQUEST_URI'] = '/cake/index.php/posts/index';
- Configure::write('App', array(
- 'dir' => APP_DIR,
- 'webroot' => WEBROOT_DIR,
- 'base' => false,
- 'baseUrl' => '/cake/index.php'
- ));
- $request = Request::createFromGlobals();
- $this->assertEquals('/cake/index.php', $request->base);
- $this->assertEquals('/cake/webroot/', $request->webroot);
- $this->assertEquals('posts/index', $request->url);
- }
- /**
- * Test baseUrl and webroot with baseUrl
- *
- * @return void
- */
- public function testBaseUrlAndWebrootWithBaseUrl() {
- Configure::write('App.dir', 'App');
- Configure::write('App.baseUrl', '/App/webroot/index.php');
- $request = Request::createFromGlobals();
- $this->assertEquals('/App/webroot/index.php', $request->base);
- $this->assertEquals('/App/webroot/', $request->webroot);
- Configure::write('App.baseUrl', '/App/webroot/test.php');
- $request = Request::createFromGlobals();
- $this->assertEquals('/App/webroot/test.php', $request->base);
- $this->assertEquals('/App/webroot/', $request->webroot);
- Configure::write('App.baseUrl', '/App/index.php');
- $request = Request::createFromGlobals();
- $this->assertEquals('/App/index.php', $request->base);
- $this->assertEquals('/App/webroot/', $request->webroot);
- Configure::write('App.baseUrl', '/CakeBB/App/webroot/index.php');
- $request = Request::createFromGlobals();
- $this->assertEquals('/CakeBB/App/webroot/index.php', $request->base);
- $this->assertEquals('/CakeBB/App/webroot/', $request->webroot);
- Configure::write('App.baseUrl', '/CakeBB/App/index.php');
- $request = Request::createFromGlobals();
- $this->assertEquals('/CakeBB/App/index.php', $request->base);
- $this->assertEquals('/CakeBB/App/webroot/', $request->webroot);
- Configure::write('App.baseUrl', '/CakeBB/index.php');
- $request = Request::createFromGlobals();
- $this->assertEquals('/CakeBB/index.php', $request->base);
- $this->assertEquals('/CakeBB/webroot/', $request->webroot);
- Configure::write('App.baseUrl', '/dbhauser/index.php');
- $_SERVER['DOCUMENT_ROOT'] = '/kunden/homepages/4/d181710652/htdocs/joomla';
- $_SERVER['SCRIPT_FILENAME'] = '/kunden/homepages/4/d181710652/htdocs/joomla/dbhauser/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('/dbhauser/index.php', $request->base);
- $this->assertEquals('/dbhauser/webroot/', $request->webroot);
- }
- /**
- * Test baseUrl with no rewrite and using the top level index.php.
- *
- * @return void
- */
- public function testBaseUrlNoRewriteTopLevelIndex() {
- Configure::write('App.baseUrl', '/index.php');
- $_SERVER['DOCUMENT_ROOT'] = '/Users/markstory/Sites/cake_dev';
- $_SERVER['SCRIPT_FILENAME'] = '/Users/markstory/Sites/cake_dev/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('/index.php', $request->base);
- $this->assertEquals('/webroot/', $request->webroot);
- }
- /**
- * Check that a sub-directory containing app|webroot doesn't get mishandled when re-writing is off.
- *
- * @return void
- */
- public function testBaseUrlWithAppAndWebrootInDirname() {
- Configure::write('App.baseUrl', '/approval/index.php');
- $_SERVER['DOCUMENT_ROOT'] = '/Users/markstory/Sites/';
- $_SERVER['SCRIPT_FILENAME'] = '/Users/markstory/Sites/approval/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('/approval/index.php', $request->base);
- $this->assertEquals('/approval/webroot/', $request->webroot);
- Configure::write('App.baseUrl', '/webrootable/index.php');
- $_SERVER['DOCUMENT_ROOT'] = '/Users/markstory/Sites/';
- $_SERVER['SCRIPT_FILENAME'] = '/Users/markstory/Sites/webrootable/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('/webrootable/index.php', $request->base);
- $this->assertEquals('/webrootable/webroot/', $request->webroot);
- }
- /**
- * Test baseUrl with no rewrite, and using the app/webroot/index.php file as is normal with virtual hosts.
- *
- * @return void
- */
- public function testBaseUrlNoRewriteWebrootIndex() {
- Configure::write('App.baseUrl', '/index.php');
- $_SERVER['DOCUMENT_ROOT'] = '/Users/markstory/Sites/cake_dev/webroot';
- $_SERVER['SCRIPT_FILENAME'] = '/Users/markstory/Sites/cake_dev/webroot/index.php';
- $request = Request::createFromGlobals();
- $this->assertEquals('/index.php', $request->base);
- $this->assertEquals('/', $request->webroot);
- }
- /**
- * Test that a request with a . in the main GET parameter is filtered out.
- * PHP changes GET parameter keys containing dots to _.
- *
- * @return void
- */
- public function testGetParamsWithDot() {
- $_GET = array();
- $_GET['/posts/index/add_add'] = '';
- $_SERVER['PHP_SELF'] = '/webroot/index.php';
- $_SERVER['REQUEST_URI'] = '/posts/index/add.add';
- $request = Request::createFromGlobals();
- $this->assertEquals('', $request->base);
- $this->assertEquals(array(), $request->query);
- $_GET = array();
- $_GET['/cake_dev/posts/index/add_add'] = '';
- $_SERVER['PHP_SELF'] = '/cake_dev/webroot/index.php';
- $_SERVER['REQUEST_URI'] = '/cake_dev/posts/index/add.add';
- $request = Request::createFromGlobals();
- $this->assertEquals('/cake_dev', $request->base);
- $this->assertEquals(array(), $request->query);
- }
- /**
- * Test that a request with urlencoded bits in the main GET parameter are filtered out.
- *
- * @return void
- */
- public function testGetParamWithUrlencodedElement() {
- $_GET = array();
- $_GET['/posts/add/∂∂'] = '';
- $_SERVER['PHP_SELF'] = '/webroot/index.php';
- $_SERVER['REQUEST_URI'] = '/posts/add/%E2%88%82%E2%88%82';
- $request = Request::createFromGlobals();
- $this->assertEquals('', $request->base);
- $this->assertEquals(array(), $request->query);
- $_GET = array();
- $_GET['/cake_dev/posts/add/∂∂'] = '';
- $_SERVER['PHP_SELF'] = '/cake_dev/webroot/index.php';
- $_SERVER['REQUEST_URI'] = '/cake_dev/posts/add/%E2%88%82%E2%88%82';
- $request = Request::createFromGlobals();
- $this->assertEquals('/cake_dev', $request->base);
- $this->assertEquals(array(), $request->query);
- }
- /**
- * Generator for environment configurations
- *
- * @return array Environment array
- */
- public static function environmentGenerator() {
- return array(
- array(
- 'IIS - No rewrite base path',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => '/index.php',
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'SCRIPT_NAME' => '/index.php',
- 'PATH_TRANSLATED' => 'C:\\Inetpub\\wwwroot',
- 'QUERY_STRING' => '',
- 'REQUEST_URI' => '/index.php',
- 'URL' => '/index.php',
- 'SCRIPT_FILENAME' => 'C:\\Inetpub\\wwwroot\\index.php',
- 'ORIG_PATH_INFO' => '/index.php',
- 'PATH_INFO' => '',
- 'ORIG_PATH_TRANSLATED' => 'C:\\Inetpub\\wwwroot\\index.php',
- 'DOCUMENT_ROOT' => 'C:\\Inetpub\\wwwroot',
- 'PHP_SELF' => '/index.php',
- ),
- ),
- array(
- 'base' => '/index.php',
- 'webroot' => '/webroot/',
- 'url' => ''
- ),
- ),
- array(
- 'IIS - No rewrite with path, no PHP_SELF',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => '/index.php?',
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'QUERY_STRING' => '/posts/add',
- 'REQUEST_URI' => '/index.php?/posts/add',
- 'PHP_SELF' => '',
- 'URL' => '/index.php?/posts/add',
- 'DOCUMENT_ROOT' => 'C:\\Inetpub\\wwwroot',
- 'argv' => array('/posts/add'),
- 'argc' => 1
- ),
- ),
- array(
- 'url' => 'posts/add',
- 'base' => '/index.php?',
- 'webroot' => '/webroot/'
- )
- ),
- array(
- 'IIS - No rewrite sub dir 2',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => '/site/index.php',
- 'dir' => 'TestApp',
- 'webroot' => 'webroot',
- ),
- 'SERVER' => array(
- 'SCRIPT_NAME' => '/site/index.php',
- 'PATH_TRANSLATED' => 'C:\\Inetpub\\wwwroot',
- 'QUERY_STRING' => '',
- 'REQUEST_URI' => '/site/index.php',
- 'URL' => '/site/index.php',
- 'SCRIPT_FILENAME' => 'C:\\Inetpub\\wwwroot\\site\\index.php',
- 'DOCUMENT_ROOT' => 'C:\\Inetpub\\wwwroot',
- 'PHP_SELF' => '/site/index.php',
- 'argv' => array(),
- 'argc' => 0
- ),
- ),
- array(
- 'url' => '',
- 'base' => '/site/index.php',
- 'webroot' => '/site/webroot/'
- ),
- ),
- array(
- 'IIS - No rewrite sub dir 2 with path',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => '/site/index.php',
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'GET' => array('/posts/add' => ''),
- 'SERVER' => array(
- 'SCRIPT_NAME' => '/site/index.php',
- 'PATH_TRANSLATED' => 'C:\\Inetpub\\wwwroot',
- 'QUERY_STRING' => '/posts/add',
- 'REQUEST_URI' => '/site/index.php/posts/add',
- 'URL' => '/site/index.php/posts/add',
- 'ORIG_PATH_TRANSLATED' => 'C:\\Inetpub\\wwwroot\\site\\index.php',
- 'DOCUMENT_ROOT' => 'C:\\Inetpub\\wwwroot',
- 'PHP_SELF' => '/site/index.php/posts/add',
- 'argv' => array('/posts/add'),
- 'argc' => 1
- ),
- ),
- array(
- 'url' => 'posts/add',
- 'base' => '/site/index.php',
- 'webroot' => '/site/webroot/'
- )
- ),
- array(
- 'Apache - No rewrite, document root set to webroot, requesting path',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => '/index.php',
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents/site/App/webroot',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/App/webroot/index.php',
- 'QUERY_STRING' => '',
- 'REQUEST_URI' => '/index.php/posts/index',
- 'SCRIPT_NAME' => '/index.php',
- 'PATH_INFO' => '/posts/index',
- 'PHP_SELF' => '/index.php/posts/index',
- ),
- ),
- array(
- 'url' => 'posts/index',
- 'base' => '/index.php',
- 'webroot' => '/'
- ),
- ),
- array(
- 'Apache - No rewrite, document root set to webroot, requesting root',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => '/index.php',
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents/site/App/webroot',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/App/webroot/index.php',
- 'QUERY_STRING' => '',
- 'REQUEST_URI' => '/index.php',
- 'SCRIPT_NAME' => '/index.php',
- 'PATH_INFO' => '',
- 'PHP_SELF' => '/index.php',
- ),
- ),
- array(
- 'url' => '',
- 'base' => '/index.php',
- 'webroot' => '/'
- ),
- ),
- array(
- 'Apache - No rewrite, document root set above top level cake dir, requesting path',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => '/site/index.php',
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'SERVER_NAME' => 'localhost',
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/index.php',
- 'REQUEST_URI' => '/site/index.php/posts/index',
- 'SCRIPT_NAME' => '/site/index.php',
- 'PATH_INFO' => '/posts/index',
- 'PHP_SELF' => '/site/index.php/posts/index',
- ),
- ),
- array(
- 'url' => 'posts/index',
- 'base' => '/site/index.php',
- 'webroot' => '/site/webroot/',
- ),
- ),
- array(
- 'Apache - No rewrite, document root set above top level cake dir, request root, no PATH_INFO',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => '/site/index.php',
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'SERVER_NAME' => 'localhost',
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/index.php',
- 'REQUEST_URI' => '/site/index.php/',
- 'SCRIPT_NAME' => '/site/index.php',
- 'PHP_SELF' => '/site/index.php/',
- ),
- ),
- array(
- 'url' => '',
- 'base' => '/site/index.php',
- 'webroot' => '/site/webroot/',
- ),
- ),
- array(
- 'Apache - No rewrite, document root set above top level cake dir, request path, with GET',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => '/site/index.php',
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'GET' => array('a' => 'b', 'c' => 'd'),
- 'SERVER' => array(
- 'SERVER_NAME' => 'localhost',
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/index.php',
- 'REQUEST_URI' => '/site/index.php/posts/index?a=b&c=d',
- 'SCRIPT_NAME' => '/site/index.php',
- 'PATH_INFO' => '/posts/index',
- 'PHP_SELF' => '/site/index.php/posts/index',
- 'QUERY_STRING' => 'a=b&c=d'
- ),
- ),
- array(
- 'urlParams' => array('a' => 'b', 'c' => 'd'),
- 'url' => 'posts/index',
- 'base' => '/site/index.php',
- 'webroot' => '/site/webroot/',
- ),
- ),
- array(
- 'Apache - w/rewrite, document root set above top level cake dir, request root, no PATH_INFO',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => false,
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'SERVER_NAME' => 'localhost',
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/index.php',
- 'REQUEST_URI' => '/site/',
- 'SCRIPT_NAME' => '/site/webroot/index.php',
- 'PHP_SELF' => '/site/webroot/index.php',
- ),
- ),
- array(
- 'url' => '',
- 'base' => '/site',
- 'webroot' => '/site/',
- ),
- ),
- array(
- 'Apache - w/rewrite, document root above top level cake dir, request root, no PATH_INFO/REQUEST_URI',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => false,
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'SERVER_NAME' => 'localhost',
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/index.php',
- 'SCRIPT_NAME' => '/site/webroot/index.php',
- 'PHP_SELF' => '/site/webroot/index.php',
- 'PATH_INFO' => null,
- 'REQUEST_URI' => null,
- ),
- ),
- array(
- 'url' => '',
- 'base' => '/site',
- 'webroot' => '/site/',
- ),
- ),
- array(
- 'Apache - w/rewrite, document root set to webroot, request root, no PATH_INFO/REQUEST_URI',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => false,
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'SERVER_NAME' => 'localhost',
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents/site/webroot',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/webroot/index.php',
- 'SCRIPT_NAME' => '/index.php',
- 'PHP_SELF' => '/index.php',
- 'PATH_INFO' => null,
- 'REQUEST_URI' => null,
- ),
- ),
- array(
- 'url' => '',
- 'base' => '',
- 'webroot' => '/',
- ),
- ),
- array(
- 'Apache - w/rewrite, document root set above top level cake dir, request root, absolute REQUEST_URI',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => false,
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'SERVER' => array(
- 'SERVER_NAME' => 'localhost',
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/index.php',
- 'REQUEST_URI' => '/site/posts/index',
- 'SCRIPT_NAME' => '/site/webroot/index.php',
- 'PHP_SELF' => '/site/webroot/index.php',
- ),
- ),
- array(
- 'url' => 'posts/index',
- 'base' => '/site',
- 'webroot' => '/site/',
- ),
- ),
- array(
- 'Nginx - w/rewrite, document root set to webroot, request root, no PATH_INFO',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => false,
- 'dir' => 'TestApp',
- 'webroot' => 'webroot'
- ),
- 'GET' => array('/posts/add' => ''),
- 'SERVER' => array(
- 'SERVER_NAME' => 'localhost',
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents/site/webroot',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/webroot/index.php',
- 'SCRIPT_NAME' => '/index.php',
- 'QUERY_STRING' => '/posts/add&',
- 'PHP_SELF' => '/index.php',
- 'PATH_INFO' => null,
- 'REQUEST_URI' => '/posts/add',
- ),
- ),
- array(
- 'url' => 'posts/add',
- 'base' => '',
- 'webroot' => '/',
- 'urlParams' => array()
- ),
- ),
- array(
- 'Nginx - w/rewrite, document root set above top level cake dir, request root, no PATH_INFO, base parameter set',
- array(
- 'App' => array(
- 'base' => false,
- 'baseUrl' => false,
- 'dir' => 'app',
- 'webroot' => 'webroot'
- ),
- 'GET' => array('/site/posts/add' => ''),
- 'SERVER' => array(
- 'SERVER_NAME' => 'localhost',
- 'DOCUMENT_ROOT' => '/Library/WebServer/Documents',
- 'SCRIPT_FILENAME' => '/Library/WebServer/Documents/site/App/webroot/index.php',
- 'SCRIPT_NAME' => '/site/app/webroot/index.php',
- 'QUERY_STRING' => '/site/posts/add&',
- 'PHP_SELF' => '/site/webroot/index.php',
- 'PATH_INFO' => null,
- 'REQUEST_URI' => '/site/posts/add',
- ),
- ),
- array(
- 'url' => 'posts/add',
- 'base' => '/site',
- 'webroot' => '/site/',
- 'urlParams' => array()
- ),
- ),
- );
- }
- /**
- * Test environment detection
- *
- * @dataProvider environmentGenerator
- * @param $name
- * @param $env
- * @param $expected
- * @return void
- */
- public function testEnvironmentDetection($name, $env, $expected) {
- $_GET = array();
- $this->_loadEnvironment($env);
- $request = Request::createFromGlobals();
- $this->assertEquals($expected['url'], $request->url, "url error");
- $this->assertEquals($expected['base'], $request->base, "base error");
- $this->assertEquals($expected['webroot'], $request->webroot, "webroot error");
- if (isset($expected['urlParams'])) {
- $this->assertEquals($expected['urlParams'], $request->query, "GET param mismatch");
- }
- }
- /**
- * Test the query() method
- *
- * @return void
- */
- public function testQuery() {
- $request = new Request([
- 'query' => ['foo' => 'bar']
- ]);
- $result = $request->query('foo');
- $this->assertEquals('bar', $result);
- $result = $request->query('imaginary');
- $this->assertNull($result);
- }
- /**
- * Test the query() method with arrays passed via $_GET
- *
- * @return void
- */
- public function testQueryWithArray() {
- $get['test'] = array('foo', 'bar');
- $request = new Request([
- 'query' => $get
- ]);
- $result = $request->query('test');
- $this->assertEquals(array('foo', 'bar'), $result);
- $result = $request->query('test.1');
- $this->assertEquals('bar', $result);
- $result = $request->query('test.2');
- $this->assertNull($result);
- }
- /**
- * Test using param()
- *
- * @return void
- */
- public function testReadingParams() {
- $request = new Request();
- $request->addParams(array(
- 'controller' => 'posts',
- 'admin' => true,
- 'truthy' => 1,
- 'zero' => '0',
- ));
- $this->assertFalse($request->param('not_set'));
- $this->assertTrue($request->param('admin'));
- $this->assertEquals(1, $request->param('truthy'));
- $this->assertEquals('posts', $request->param('controller'));
- $this->assertEquals('0', $request->param('zero'));
- }
- /**
- * Test the data() method reading
- *
- * @return void
- */
- public function testDataReading() {
- $post = array(
- 'Model' => array(
- 'field' => 'value'
- )
- );
- $request = new Request(compact('post'));
- $result = $request->data('Model');
- $this->assertEquals($post['Model'], $result);
- $result = $request->data();
- $this->assertEquals($post, $result);
- $result = $request->data('Model.imaginary');
- $this->assertNull($result);
- }
- /**
- * Test writing with data()
- *
- * @return void
- */
- public function testDataWriting() {
- $_POST['data'] = array(
- 'Model' => array(
- 'field' => 'value'
- )
- );
- $request = new Request();
- $result = $request->data('Model.new_value', 'new value');
- $this->assertSame($result, $request, 'Return was not $this');
- $this->assertEquals('new value', $request->data['Model']['new_value']);
- $request->data('Post.title', 'New post')->data('Comment.1.author', 'Mark');
- $this->assertEquals('New post', $request->data['Post']['title']);
- $this->assertEquals('Mark', $request->data['Comment']['1']['author']);
- }
- /**
- * Test writing falsey values.
- *
- * @return void
- */
- public function testDataWritingFalsey() {
- $request = new Request();
- $request->data('Post.null', null);
- $this->assertNull($request->data['Post']['null']);
- $request->data('Post.false', false);
- $this->assertFalse($request->data['Post']['false']);
- $request->data('Post.zero', 0);
- $this->assertSame(0, $request->data['Post']['zero']);
- $request->data('Post.empty', '');
- $this->assertSame('', $request->data['Post']['empty']);
- }
- /**
- * Test reading params
- *
- * @dataProvider paramReadingDataProvider
- */
- public function testParamReading($toRead, $expected) {
- $request = new Request('/');
- $request->addParams(array(
- 'action' => 'index',
- 'foo' => 'bar',
- 'baz' => array(
- 'a' => array(
- 'b' => 'c',
- ),
- ),
- 'admin' => true,
- 'truthy' => 1,
- 'zero' => '0',
- ));
- $this->assertEquals($expected, $request->param($toRead));
- }
- /**
- * Data provider for testing reading values with Request::param()
- *
- * @return array
- */
- public function paramReadingDataProvider() {
- return array(
- array(
- 'action',
- 'index',
- ),
- array(
- 'baz',
- array(
- 'a' => array(
- 'b' => 'c',
- ),
- ),
- ),
- array(
- 'baz.a.b',
- 'c',
- ),
- array(
- 'does_not_exist',
- false,
- ),
- array(
- 'admin',
- true,
- ),
- array(
- 'truthy',
- 1,
- ),
- array(
- 'zero',
- '0',
- ),
- );
- }
- /**
- * test writing request params with param()
- *
- * @return void
- */
- public function testParamWriting() {
- $request = new Request('/');
- $request->addParams(array(
- 'action' => 'index',
- ));
- $this->assertInstanceOf('Cake\Network\Request', $request->param('some', 'thing'), 'Method has not returned $this');
- $request->param('Post.null', null);
- $this->assertNull($request->params['Post']['null']);
- $request->param('Post.false', false);
- $this->assertFalse($request->params['Post']['false']);
- $request->param('Post.zero', 0);
- $this->assertSame(0, $request->params['Post']['zero']);
- $request->param('Post.empty', '');
- $this->assertSame('', $request->params['Post']['empty']);
- $this->assertSame('index', $request->action);
- $request->param('action', 'edit');
- $this->assertSame('edit', $request->action);
- }
- /**
- * Test accept language
- *
- * @return void
- */
- public function testAcceptLanguage() {
- $request = new Request();
- // Weird language
- $request->env('HTTP_ACCEPT_LANGUAGE', 'inexistent,en-ca');
- $result = $request->acceptLanguage();
- $this->assertEquals(array('inexistent', 'en-ca'), $result, 'Languages do not match');
- // No qualifier
- $request->env('HTTP_ACCEPT_LANGUAGE', 'es_mx,en_ca');
- $result = $request->acceptLanguage();
- $this->assertEquals(array('es-mx', 'en-ca'), $result, 'Languages do not match');
- // With qualifier
- $request->env('HTTP_ACCEPT_LANGUAGE', 'en-US,en;q=0.8,pt-BR;q=0.6,pt;q=0.4');
- $result = $request->acceptLanguage();
- $this->assertEquals(array('en-us', 'en', 'pt-br', 'pt'), $result, 'Languages do not match');
- // With spaces
- $request->env('HTTP_ACCEPT_LANGUAGE', 'da, en-gb;q=0.8, en;q=0.7');
- $result = $request->acceptLanguage();
- $this->assertEquals(array('da', 'en-gb', 'en'), $result, 'Languages do not match');
- // Checking if requested
- $request->env('HTTP_ACCEPT_LANGUAGE', 'es_mx,en_ca');
- $result = $request->acceptLanguage();
- $result = $request->acceptLanguage('en-ca');
- $this->assertTrue($result);
- $result = $request->acceptLanguage('en-CA');
- $this->assertTrue($result);
- $result = $request->acceptLanguage('en-us');
- $this->assertFalse($result);
- $result = $request->acceptLanguage('en-US');
- $this->assertFalse($result);
- }
- /**
- * Test the here() method
- *
- * @return void
- */
- public function testHere() {
- Configure::write('App.base', '/base_path');
- $q = array('test' => 'value');
- $request = new Request(array(
- 'query' => $q,
- 'url' => '/posts/add/1/value',
- 'base' => '/base_path'
- ));
- $result = $request->here();
- $this->assertEquals('/base_path/posts/add/1/value?test=value', $result);
- $result = $request->here(false);
- $this->assertEquals('/posts/add/1/value?test=value', $result);
- $request = new Request(array(
- 'url' => '/posts/base_path/1/value',
- 'query' => array('test' => 'value'),
- 'base' => '/base_path'
- ));
- $result = $request->here();
- $this->assertEquals('/base_path/posts/base_path/1/value?test=value', $result);
- $result = $request->here(false);
- $this->assertEquals('/posts/base_path/1/value?test=value', $result);
- }
- /**
- * Test the here() with space in URL
- *
- * @return void
- */
- public function testHereWithSpaceInUrl() {
- Configure::write('App.base', '');
- $_GET = array('/admin/settings/settings/prefix/Access_Control' => '');
- $request = new CakeRequest('/admin/settings/settings/prefix/Access%20Control');
- $result = $request->here();
- $this->assertEquals('/admin/settings/settings/prefix/Access%20Control', $result);
- }
- /**
- * Test the input() method.
- *
- * @return void
- */
- public function testSetInput() {
- $request = new Request();
- $request->setInput('I came from setInput');
- $result = $request->input();
- $this->assertEquals('I came from setInput', $result);
- }
- /**
- * Test the input() method.
- *
- * @return void
- */
- public function testInput() {
- $request = $this->getMock('Cake\Network\Request', array('_readInput'));
- $request->expects($this->once())->method('_readInput')
- ->will($this->returnValue('I came from stdin'));
- $result = $request->input();
- $this->assertEquals('I came from stdin', $result);
- }
- /**
- * Test input() decoding.
- *
- * @return void
- */
- public function testInputDecode() {
- $request = $this->getMock('Cake\Network\Request', array('_readInput'));
- $request->expects($this->once())->method('_readInput')
- ->will($this->returnValue('{"name":"value"}'));
- $result = $request->input('json_decode');
- $this->assertEquals(array('name' => 'value'), (array)$result);
- }
- /**
- * Test input() decoding with additional arguments.
- *
- * @return void
- */
- public function testInputDecodeExtraParams() {
- $xml = <<<XML
- <?xml version="1.0" encoding="utf-8"?>
- <post>
- <title id="title">Test</title>
- </post>
- XML;
- $request = $this->getMock('Cake\Network\Request', array('_readInput'));
- $request->expects($this->once())->method('_readInput')
- ->will($this->returnValue($xml));
- $result = $request->input('Cake\Utility\Xml::build', array('return' => 'domdocument'));
- $this->assertInstanceOf('DOMDocument', $result);
- $this->assertEquals(
- 'Test',
- $result->getElementsByTagName('title')->item(0)->childNodes->item(0)->wholeText
- );
- }
- /**
- * Test is('requested') and isRequested()
- *
- * @return void
- */
- public function testIsRequested() {
- $request = new Request();
- $request->addParams(array(
- 'controller' => 'posts',
- 'action' => 'index',
- 'plugin' => null,
- 'requested' => 1
- ));
- $this->assertTrue($request->is('requested'));
- $this->assertTrue($request->isRequested());
- $request = new Request();
- $request->addParams(array(
- 'controller' => 'posts',
- 'action' => 'index',
- 'plugin' => null,
- ));
- $this->assertFalse($request->is('requested'));
- $this->assertFalse($request->isRequested());
- }
- /**
- * Test the cookie() method.
- *
- * @return void
- */
- public function testReadCookie() {
- $request = new Request(array(
- 'cookies' => array(
- 'testing' => 'A value in the cookie'
- )
- ));
- $result = $request->cookie('testing');
- $this->assertEquals('A value in the cookie', $result);
- $result = $request->cookie('not there');
- $this->assertNull($result);
- }
- /**
- * TestAllowMethod
- *
- * @return void
- */
- public function testAllowMethod() {
- $request = new Request(['environment' => [
- 'url' => '/posts/edit/1',
- 'REQUEST_METHOD' => 'PUT'
- ]]);
- $this->assertTrue($request->allowMethod('put'));
- $request->env('REQUEST_METHOD', 'DELETE');
- $this->assertTrue($request->allowMethod(['post', 'delete']));
- }
- /**
- * Test allowMethod throwing exception
- *
- * @return void
- */
- public function testAllowMethodException() {
- $request = new Request([
- 'url' => '/posts/edit/1',
- 'environment' => ['REQUEST_METHOD' => 'PUT']
- ]);
- try {
- $request->allowMethod(['POST', 'DELETE']);
- $this->fail('An expected exception has not been raised.');
- } catch (Error\MethodNotAllowedException $e) {
- $this->assertEquals(array('Allow' => 'POST, DELETE'), $e->responseHeader());
- }
- $this->setExpectedException('Cake\Error\MethodNotAllowedException');
- $request->allowMethod('POST');
- }
- /**
- * Tests getting the sessions from the request
- *
- * @return void
- */
- public function testSession() {
- $session = new Session;
- $request = new Request(['session' => $session]);
- $this->assertSame($session, $request->session());
- $request = Request::createFromGlobals();
- $this->assertEquals($session, $request->session());
- }
- /**
- * loadEnvironment method
- *
- * @param array $env
- * @return void
- */
- protected function _loadEnvironment($env) {
- if (isset($env['App'])) {
- Configure::write('App', $env['App']);
- }
- if (isset($env['GET'])) {
- foreach ($env['GET'] as $key => $val) {
- $_GET[$key] = $val;
- }
- }
- if (isset($env['POST'])) {
- foreach ($env['POST'] as $key => $val) {
- $_POST[$key] = $val;
- }
- }
- if (isset($env['SERVER'])) {
- foreach ($env['SERVER'] as $key => $val) {
- $_SERVER[$key] = $val;
- }
- }
- }
- }
|