| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://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. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 2.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Http;
- include_once CORE_TEST_CASES . DS . 'Http' . DS . 'server_mocks.php';
- use Cake\Chronos\Chronos;
- use Cake\Http\Cookie\Cookie;
- use Cake\Http\Cookie\CookieCollection;
- use Cake\Http\Response;
- use Cake\Http\ServerRequest;
- use Cake\Network\Exception\NotFoundException;
- use Cake\TestSuite\TestCase;
- use Zend\Diactoros\Stream;
- /**
- * ResponseTest
- */
- class ResponseTest extends TestCase
- {
- /**
- * SERVER variable backup.
- *
- * @var array
- */
- protected $server = [];
- /**
- * setup
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->server = $_SERVER;
- }
- /**
- * teardown
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- $_SERVER = $this->server;
- }
- /**
- * Tests the request object constructor
- *
- * @return void
- */
- public function testConstruct()
- {
- $response = new Response();
- $this->assertNull($response->body());
- $this->assertEquals('UTF-8', $response->charset());
- $this->assertEquals('text/html', $response->type());
- $this->assertEquals('text/html; charset=UTF-8', $response->getHeaderLine('Content-Type'));
- $this->assertEquals(200, $response->statusCode());
- $options = [
- 'body' => 'This is the body',
- 'charset' => 'my-custom-charset',
- 'type' => 'mp3',
- 'status' => '203'
- ];
- $response = new Response($options);
- $this->assertEquals('This is the body', $response->body());
- $this->assertEquals('my-custom-charset', $response->charset());
- $this->assertEquals('audio/mpeg', $response->type());
- $this->assertEquals('audio/mpeg', $response->getHeaderLine('Content-Type'));
- $this->assertEquals(203, $response->statusCode());
- $options = [
- 'body' => 'This is the body',
- 'charset' => 'ISO-8859-1',
- 'type' => 'txt',
- 'status' => '422',
- 'statusCodes' => [
- 422 => 'Unprocessable Entity'
- ]
- ];
- $response = new Response($options);
- $this->assertEquals($options['body'], $response->body());
- $this->assertEquals($options['charset'], $response->charset());
- $this->assertEquals($response->getMimeType($options['type']), $response->type());
- $this->assertEquals($options['status'], $response->statusCode());
- $this->assertEquals('text/plain; charset=ISO-8859-1', $response->getHeaderLine('Content-Type'));
- }
- /**
- * Tests the body method
- *
- * @return void
- */
- public function testBody()
- {
- $response = new Response();
- $this->assertNull($response->body());
- $response->body('Response body');
- $this->assertEquals('Response body', $response->body());
- $this->assertEquals('Changed Body', $response->body('Changed Body'));
- $response = new Response();
- $response->body(0);
- $this->assertEquals(0, $response->body());
- $response = new Response();
- $response->body('0');
- $this->assertEquals('0', $response->body());
- $response = new Response();
- $response->body(null);
- $this->assertEquals(null, $response->body());
- }
- /**
- * Tests the charset method
- *
- * @return void
- */
- public function testCharset()
- {
- $response = new Response();
- $this->assertEquals('UTF-8', $response->charset());
- $response->charset('iso-8859-1');
- $this->assertEquals('iso-8859-1', $response->charset());
- $this->assertEquals('UTF-16', $response->charset('UTF-16'));
- }
- /**
- * Tests the getCharset/withCharset methods
- *
- * @return void
- */
- public function testWithCharset()
- {
- $response = new Response();
- $this->assertEquals('text/html; charset=UTF-8', $response->getHeaderLine('Content-Type'));
- $new = $response->withCharset('iso-8859-1');
- $this->assertNotContains('iso', $response->getHeaderLine('Content-Type'), 'Old instance not changed');
- $this->assertSame('iso-8859-1', $new->getCharset());
- $this->assertEquals('text/html; charset=iso-8859-1', $new->getHeaderLine('Content-Type'));
- }
- /**
- * Tests the statusCode method
- *
- * @return void
- */
- public function testStatusCode()
- {
- $response = new Response();
- $this->assertEquals(200, $response->statusCode());
- $response->statusCode(404);
- $this->assertEquals(404, $response->getStatusCode(), 'Sets shared state.');
- $this->assertEquals(404, $response->statusCode());
- $this->assertEquals('Not Found', $response->getReasonPhrase());
- $this->assertEquals(500, $response->statusCode(500));
- }
- /**
- * Test invalid status codes
- *
- * @expectedException \InvalidArgumentException
- * @return void
- */
- public function testStatusCodeInvalid()
- {
- $response = new Response();
- $response->statusCode(1001);
- }
- /**
- * Tests the type method
- *
- * @return void
- */
- public function testType()
- {
- $response = new Response();
- $this->assertEquals('text/html', $response->type());
- $response->type('pdf');
- $this->assertEquals('application/pdf', $response->type());
- $this->assertEquals('application/crazy-mime', $response->type('application/crazy-mime'));
- $this->assertEquals('application/json', $response->type('json'));
- $this->assertEquals('text/vnd.wap.wml', $response->type('wap'));
- $this->assertEquals('application/vnd.wap.xhtml+xml', $response->type('xhtml-mobile'));
- $this->assertEquals('text/csv', $response->type('csv'));
- $response->type(['keynote' => 'application/keynote', 'bat' => 'application/bat']);
- $this->assertEquals('application/keynote', $response->type('keynote'));
- $this->assertEquals('application/bat', $response->type('bat'));
- $this->assertFalse($response->type('wackytype'));
- }
- /**
- * Tests the withType method
- *
- * @return void
- */
- public function testWithTypeAlias()
- {
- $response = new Response();
- $this->assertEquals(
- 'text/html; charset=UTF-8',
- $response->getHeaderLine('Content-Type'),
- 'Default content-type should match'
- );
- $new = $response->withType('pdf');
- $this->assertNotSame($new, $response, 'Should be a new instance');
- $this->assertSame(
- 'text/html; charset=UTF-8',
- $response->getHeaderLine('Content-Type'),
- 'Original object should not be modified'
- );
- $this->assertSame('application/pdf', $new->getHeaderLine('Content-Type'));
- $this->assertSame(
- 'application/json; charset=UTF-8',
- $new->withType('json')->getHeaderLine('Content-Type')
- );
- }
- /**
- * test withType() and full mime-types
- *
- * @return void
- */
- public function withTypeFull()
- {
- $response = new Response();
- $this->assertEquals(
- 'application/json',
- $response->withType('application/json')->getHeaderLine('Content-Type'),
- 'Should not add charset to explicit type'
- );
- $this->assertEquals(
- 'custom/stuff',
- $response->withType('custom/stuff')->getHeaderLine('Content-Type'),
- 'Should allow arbitrary types'
- );
- }
- /**
- * Test that an invalid type raises an exception
- *
- * @expectedException InvalidArgumentException
- * @expectedExceptionMessage "beans" is an invalid content type
- * @return void
- */
- public function testWithTypeInvalidType()
- {
- $response = new Response();
- $response->withType('beans');
- }
- /**
- * Tests the header method
- *
- * @return void
- */
- public function testHeader()
- {
- $response = new Response();
- $headers = [
- 'Content-Type' => 'text/html; charset=UTF-8',
- ];
- $this->assertEquals($headers, $response->header());
- $response->header('Location', 'http://example.com');
- $headers += ['Location' => 'http://example.com'];
- $this->assertEquals($headers, $response->header());
- // Headers with the same name are overwritten
- $response->header('Location', 'http://example2.com');
- $headers = [
- 'Content-Type' => 'text/html; charset=UTF-8',
- 'Location' => 'http://example2.com'
- ];
- $this->assertEquals($headers, $response->header());
- $response->header(['WWW-Authenticate' => 'Negotiate']);
- $headers += ['WWW-Authenticate' => 'Negotiate'];
- $this->assertEquals($headers, $response->header());
- $response->header(['WWW-Authenticate' => 'Not-Negotiate']);
- $headers['WWW-Authenticate'] = 'Not-Negotiate';
- $this->assertEquals($headers, $response->header());
- $response->header(['Age' => 12, 'Allow' => 'GET, HEAD']);
- $headers += ['Age' => 12, 'Allow' => 'GET, HEAD'];
- $this->assertEquals($headers, $response->header());
- // String headers are allowed
- $response->header('Content-Language: da');
- $headers += ['Content-Language' => 'da'];
- $this->assertEquals($headers, $response->header());
- $response->header('Content-Language: da');
- $headers += ['Content-Language' => 'da'];
- $this->assertEquals($headers, $response->header());
- $response->header(['Content-Encoding: gzip', 'Vary: *', 'Pragma' => 'no-cache']);
- $headers += ['Content-Encoding' => 'gzip', 'Vary' => '*', 'Pragma' => 'no-cache'];
- $this->assertEquals($headers, $response->header());
- $response->header('Access-Control-Allow-Origin', ['domain1', 'domain2']);
- $headers += ['Access-Control-Allow-Origin' => ['domain1', 'domain2']];
- $this->assertEquals($headers, $response->header());
- }
- /**
- * Tests the send method
- *
- * @return void
- */
- public function testSend()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['_sendHeader', '_sendContent'])
- ->getMock();
- $response->header([
- 'Content-Language' => 'es',
- 'WWW-Authenticate' => 'Negotiate',
- 'Access-Control-Allow-Origin' => ['domain1', 'domain2'],
- ]);
- $response->cookie(['name' => 'thing', 'value' => 'value']);
- $response->body('the response body');
- $response->expects($this->once())->method('_sendContent')->with('the response body');
- $response->expects($this->at(0))
- ->method('_sendHeader')->with('HTTP/1.1 200 OK');
- $response->expects($this->at(1))
- ->method('_sendHeader')->with('Content-Type', 'text/html; charset=UTF-8');
- $response->expects($this->at(2))
- ->method('_sendHeader')->with('Content-Language', 'es');
- $response->expects($this->at(3))
- ->method('_sendHeader')->with('WWW-Authenticate', 'Negotiate');
- $response->expects($this->at(4))
- ->method('_sendHeader')->with('Access-Control-Allow-Origin', 'domain1');
- $response->expects($this->at(5))
- ->method('_sendHeader')->with('Access-Control-Allow-Origin', 'domain2');
- $response->send();
- $this->assertCount(1, $GLOBALS['mockedCookies']);
- $this->assertSame('value', $GLOBALS['mockedCookies'][0]['value']);
- $this->assertSame('thing', $GLOBALS['mockedCookies'][0]['name']);
- }
- /**
- * Data provider for content type tests.
- *
- * @return array
- */
- public static function charsetTypeProvider()
- {
- return [
- ['mp3', 'audio/mpeg'],
- ['js', 'application/javascript; charset=UTF-8'],
- ['json', 'application/json; charset=UTF-8'],
- ['xml', 'application/xml; charset=UTF-8'],
- ['txt', 'text/plain; charset=UTF-8'],
- ];
- }
- /**
- * Tests the send method and changing the content type
- *
- * @dataProvider charsetTypeProvider
- * @return void
- */
- public function testSendChangingContentType($original, $expected)
- {
- $response = new Response();
- $response->type($original);
- $response->body('the response body');
- $this->assertEquals($expected, $response->getHeaderLine('Content-Type'));
- }
- /**
- * Tests the send method and changing the content type to JS without adding the charset
- *
- * @return void
- */
- public function testCharsetSetContentTypeWithoutCharset()
- {
- $response = new Response();
- $response->type('js');
- $response->charset('');
- $this->assertEquals('application/javascript', $response->getHeaderLine('Content-Type'));
- }
- /**
- * Tests the send method and changing the content type
- *
- * @return void
- */
- public function testLocationSetsStatus()
- {
- $response = new Response();
- $response->location('http://www.example.com');
- $this->assertEquals(302, $response->getStatusCode());
- }
- /**
- * Test that setting certain status codes clears the status code.
- *
- * @return void
- */
- public function testStatusClearsContentType()
- {
- $response = new Response();
- $response->statusCode(204);
- $response->statusCode(304);
- $this->assertFalse($response->hasHeader('Content-Type'));
- $this->assertSame(304, $response->getStatusCode());
- $response = new Response();
- $response->type('pdf');
- $response->statusCode(204);
- $this->assertFalse($response->hasHeader('Content-Type'));
- $this->assertSame(204, $response->getStatusCode());
- $response = new Response();
- $new = $response->withType('pdf')
- ->withStatus(204);
- $this->assertFalse($new->hasHeader('Content-Type'));
- $this->assertSame(204, $new->getStatusCode());
- $response = new Response();
- $new = $response->withStatus(304)
- ->withType('pdf');
- $this->assertFalse($new->hasHeader('Content-Type'));
- $response = new Response();
- $response->statusCode(204);
- $response->type('pdf');
- $this->assertFalse($response->hasHeader('Content-Type'));
- }
- /**
- * Tests the send method and changing the content type
- *
- * @return void
- */
- public function testSendWithCallableBody()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['_sendHeader'])
- ->getMock();
- $response->body(function () {
- echo 'the response body';
- });
- ob_start();
- $response->send();
- $this->assertEquals('the response body', ob_get_clean());
- }
- /**
- * Tests that the returned a string from a body callable is also sent
- * as the response body
- *
- * @return void
- */
- public function testSendWithCallableBodyWithReturn()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['_sendHeader'])
- ->getMock();
- $response->body(function () {
- return 'the response body';
- });
- ob_start();
- $response->send();
- $this->assertEquals('the response body', ob_get_clean());
- }
- /**
- * Tests the disableCache method
- *
- * @return void
- */
- public function testDisableCache()
- {
- $response = new Response();
- $expected = [
- 'Expires' => 'Mon, 26 Jul 1997 05:00:00 GMT',
- 'Last-Modified' => gmdate('D, d M Y H:i:s') . ' GMT',
- 'Cache-Control' => 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0',
- 'Content-Type' => 'text/html; charset=UTF-8',
- ];
- $response->disableCache();
- $this->assertEquals($expected, $response->header());
- }
- /**
- * Tests the withDisabledCache method
- *
- * @return void
- */
- public function testWithDisabledCache()
- {
- $response = new Response();
- $expected = [
- 'Expires' => ['Mon, 26 Jul 1997 05:00:00 GMT'],
- 'Last-Modified' => [gmdate('D, d M Y H:i:s') . ' GMT'],
- 'Cache-Control' => ['no-store, no-cache, must-revalidate, post-check=0, pre-check=0'],
- 'Content-Type' => ['text/html; charset=UTF-8'],
- ];
- $new = $response->withDisabledCache();
- $this->assertFalse($response->hasHeader('Expires'), 'Old instance not mutated.');
- $this->assertEquals($expected, $new->getHeaders());
- }
- /**
- * Tests the cache method
- *
- * @return void
- */
- public function testCache()
- {
- $response = new Response();
- $since = time();
- $time = new \DateTime('+1 day', new \DateTimeZone('UTC'));
- $response->expires('+1 day');
- $expected = [
- 'Date' => gmdate('D, j M Y G:i:s ', $since) . 'GMT',
- 'Last-Modified' => gmdate('D, j M Y H:i:s ', $since) . 'GMT',
- 'Expires' => $time->format('D, j M Y H:i:s') . ' GMT',
- 'Cache-Control' => 'public, max-age=' . ($time->format('U') - time()),
- 'Content-Type' => 'text/html; charset=UTF-8',
- ];
- $response->cache($since);
- $this->assertEquals($expected, $response->header());
- $response = new Response();
- $since = time();
- $time = '+5 day';
- $expected = [
- 'Date' => gmdate('D, j M Y G:i:s ', $since) . 'GMT',
- 'Last-Modified' => gmdate('D, j M Y H:i:s ', $since) . 'GMT',
- 'Expires' => gmdate('D, j M Y H:i:s', strtotime($time)) . ' GMT',
- 'Cache-Control' => 'public, max-age=' . (strtotime($time) - time()),
- 'Content-Type' => 'text/html; charset=UTF-8',
- ];
- $response->cache($since, $time);
- $this->assertEquals($expected, $response->header());
- $response = new Response();
- $since = time();
- $time = time();
- $expected = [
- 'Date' => gmdate('D, j M Y G:i:s ', $since) . 'GMT',
- 'Last-Modified' => gmdate('D, j M Y H:i:s ', $since) . 'GMT',
- 'Expires' => gmdate('D, j M Y H:i:s', $time) . ' GMT',
- 'Cache-Control' => 'public, max-age=0',
- 'Content-Type' => 'text/html; charset=UTF-8',
- ];
- $response->cache($since, $time);
- $this->assertEquals($expected, $response->header());
- }
- /**
- * Tests the withCache method
- *
- * @return void
- */
- public function testWithCache()
- {
- $response = new Response();
- $since = $time = time();
- $new = $response->withCache($since, $time);
- $this->assertFalse($response->hasHeader('Date'));
- $this->assertFalse($response->hasHeader('Last-Modified'));
- $this->assertEquals(gmdate('D, j M Y G:i:s ', $since) . 'GMT', $new->getHeaderLine('Date'));
- $this->assertEquals(gmdate('D, j M Y H:i:s ', $since) . 'GMT', $new->getHeaderLine('Last-Modified'));
- $this->assertEquals(gmdate('D, j M Y H:i:s', $time) . ' GMT', $new->getHeaderLine('Expires'));
- $this->assertEquals('public, max-age=0', $new->getHeaderLine('Cache-Control'));
- }
- /**
- * Tests the compress method
- *
- * @return void
- */
- public function testCompress()
- {
- $this->skipIf(defined('HHVM_VERSION'), 'HHVM does not implement ob_gzhandler');
- $response = new Response();
- if (ini_get('zlib.output_compression') === '1' || !extension_loaded('zlib')) {
- $this->assertFalse($response->compress());
- $this->markTestSkipped('Is not possible to test output compression');
- }
- $_SERVER['HTTP_ACCEPT_ENCODING'] = '';
- $result = $response->compress();
- $this->assertFalse($result);
- $_SERVER['HTTP_ACCEPT_ENCODING'] = 'gzip';
- $result = $response->compress();
- $this->assertTrue($result);
- $this->assertTrue(in_array('ob_gzhandler', ob_list_handlers()));
- ob_get_clean();
- }
- /**
- * Tests the httpCodes method
- *
- * @expectedException \InvalidArgumentException
- * @return void
- */
- public function testHttpCodes()
- {
- $response = new Response();
- $result = $response->httpCodes();
- $this->assertCount(65, $result);
- $result = $response->httpCodes(100);
- $expected = [100 => 'Continue'];
- $this->assertEquals($expected, $result);
- $codes = [
- 381 => 'Unicorn Moved',
- 555 => 'Unexpected Minotaur'
- ];
- $result = $response->httpCodes($codes);
- $this->assertTrue($result);
- $this->assertCount(67, $response->httpCodes());
- $result = $response->httpCodes(381);
- $expected = [381 => 'Unicorn Moved'];
- $this->assertEquals($expected, $result);
- $codes = [404 => 'Sorry Bro'];
- $result = $response->httpCodes($codes);
- $this->assertTrue($result);
- $this->assertCount(67, $response->httpCodes());
- $result = $response->httpCodes(404);
- $expected = [404 => 'Sorry Bro'];
- $this->assertEquals($expected, $result);
- //Throws exception
- $response->httpCodes([
- 0 => 'Nothing Here',
- -1 => 'Reverse Infinity',
- 12345 => 'Universal Password',
- 'Hello' => 'World'
- ]);
- }
- /**
- * Tests the download method
- *
- * @return void
- */
- public function testDownload()
- {
- $response = new Response();
- $expected = [
- 'Content-Type' => 'text/html; charset=UTF-8',
- 'Content-Disposition' => 'attachment; filename="myfile.mp3"'
- ];
- $response->download('myfile.mp3');
- $this->assertEquals($expected, $response->header());
- }
- /**
- * Tests the withDownload method
- *
- * @return void
- */
- public function testWithDownload()
- {
- $response = new Response();
- $new = $response->withDownload('myfile.mp3');
- $this->assertFalse($response->hasHeader('Content-Disposition'), 'No mutation');
- $expected = 'attachment; filename="myfile.mp3"';
- $this->assertEquals($expected, $new->getHeaderLine('Content-Disposition'));
- }
- /**
- * Tests the mapType method
- *
- * @return void
- */
- public function testMapType()
- {
- $response = new Response();
- $this->assertEquals('wav', $response->mapType('audio/x-wav'));
- $this->assertEquals('pdf', $response->mapType('application/pdf'));
- $this->assertEquals('xml', $response->mapType('text/xml'));
- $this->assertEquals('html', $response->mapType('*/*'));
- $this->assertEquals('csv', $response->mapType('application/vnd.ms-excel'));
- $expected = ['json', 'xhtml', 'css'];
- $result = $response->mapType(['application/json', 'application/xhtml+xml', 'text/css']);
- $this->assertEquals($expected, $result);
- }
- /**
- * Tests the outputCompressed method
- *
- * @return void
- */
- public function testOutputCompressed()
- {
- $response = new Response();
- $_SERVER['HTTP_ACCEPT_ENCODING'] = 'gzip';
- $result = $response->outputCompressed();
- $this->assertFalse($result);
- $_SERVER['HTTP_ACCEPT_ENCODING'] = '';
- $result = $response->outputCompressed();
- $this->assertFalse($result);
- if (!extension_loaded('zlib')) {
- $this->markTestSkipped('Skipping further tests for outputCompressed as zlib extension is not loaded');
- }
- $this->skipIf(defined('HHVM_VERSION'), 'HHVM does not implement ob_gzhandler');
- if (ini_get('zlib.output_compression') !== '1') {
- ob_start('ob_gzhandler');
- }
- $_SERVER['HTTP_ACCEPT_ENCODING'] = 'gzip';
- $result = $response->outputCompressed();
- $this->assertTrue($result);
- $_SERVER['HTTP_ACCEPT_ENCODING'] = '';
- $result = $response->outputCompressed();
- $this->assertFalse($result);
- if (ini_get('zlib.output_compression') !== '1') {
- ob_get_clean();
- }
- }
- /**
- * Tests getting/setting the protocol
- *
- * @return void
- */
- public function testProtocol()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['_sendHeader', '_sendContent'])
- ->getMock();
- $response->protocol('HTTP/1.0');
- $this->assertEquals('HTTP/1.0', $response->protocol());
- $response->expects($this->at(0))
- ->method('_sendHeader')->with('HTTP/1.0 200 OK');
- $response->send();
- }
- /**
- * Tests getting/setting the Content-Length
- *
- * @return void
- */
- public function testLength()
- {
- $response = new Response();
- $response->length(100);
- $this->assertEquals(100, $response->length());
- $this->assertEquals('100', $response->getHeaderLine('Content-Length'));
- }
- /**
- * Tests settings the content length
- *
- * @return void
- */
- public function testWithLength()
- {
- $response = new Response();
- $this->assertFalse($response->hasHeader('Content-Length'));
- $new = $response->withLength(100);
- $this->assertFalse($response->hasHeader('Content-Length'), 'Old instance not modified');
- $this->assertSame('100', $new->getHeaderLine('Content-Length'));
- $this->assertSame('100', $new->length(), 'new method is compat with old.');
- }
- /**
- * Tests setting the expiration date
- *
- * @return void
- */
- public function testExpires()
- {
- $format = 'D, j M Y H:i:s';
- $response = new Response();
- $now = new \DateTime('now', new \DateTimeZone('America/Los_Angeles'));
- $response->expires($now);
- $now->setTimeZone(new \DateTimeZone('UTC'));
- $this->assertEquals($now->format($format) . ' GMT', $response->expires());
- $this->assertEquals($now->format($format) . ' GMT', $response->getHeaderLine('Expires'));
- $now = time();
- $response = new Response();
- $response->expires($now);
- $this->assertEquals(gmdate($format) . ' GMT', $response->expires());
- $this->assertEquals(gmdate($format) . ' GMT', $response->getHeaderLine('Expires'));
- $response = new Response();
- $time = new \DateTime('+1 day', new \DateTimeZone('UTC'));
- $response->expires('+1 day');
- $this->assertEquals($time->format($format) . ' GMT', $response->expires());
- $this->assertEquals($time->format($format) . ' GMT', $response->getHeaderLine('Expires'));
- }
- /**
- * Tests the withExpires method
- *
- * @return void
- */
- public function testWithExpires()
- {
- $format = 'D, j M Y H:i:s';
- $response = new Response();
- $now = new \DateTime('now', new \DateTimeZone('America/Los_Angeles'));
- $new = $response->withExpires($now);
- $this->assertFalse($response->hasHeader('Expires'));
- $now->setTimeZone(new \DateTimeZone('UTC'));
- $this->assertEquals($now->format($format) . ' GMT', $new->getHeaderLine('Expires'));
- $now = time();
- $new = $response->withExpires($now);
- $this->assertEquals(gmdate($format) . ' GMT', $new->getHeaderLine('Expires'));
- $time = new \DateTime('+1 day', new \DateTimeZone('UTC'));
- $new = $response->withExpires('+1 day');
- $this->assertEquals($time->format($format) . ' GMT', $new->getHeaderLine('Expires'));
- }
- /**
- * Tests setting the modification date
- *
- * @return void
- */
- public function testModified()
- {
- $format = 'D, j M Y H:i:s';
- $response = new Response();
- $now = new \DateTime('now', new \DateTimeZone('America/Los_Angeles'));
- $response->modified($now);
- $now->setTimeZone(new \DateTimeZone('UTC'));
- $this->assertEquals($now->format($format) . ' GMT', $response->modified());
- $this->assertEquals($now->format($format) . ' GMT', $response->getHeaderLine('Last-Modified'));
- $response = new Response();
- $now = time();
- $response->modified($now);
- $this->assertEquals(gmdate($format) . ' GMT', $response->modified());
- $this->assertEquals(gmdate($format) . ' GMT', $response->getHeaderLine('Last-Modified'));
- $response = new Response();
- $time = new \DateTime('+1 day', new \DateTimeZone('UTC'));
- $response->modified('+1 day');
- $this->assertEquals($time->format($format) . ' GMT', $response->modified());
- $this->assertEquals($time->format($format) . ' GMT', $response->getHeaderLine('Last-Modified'));
- }
- /**
- * Tests the withModified method
- *
- * @return void
- */
- public function testWithModified()
- {
- $format = 'D, j M Y H:i:s';
- $response = new Response();
- $now = new \DateTime('now', new \DateTimeZone('America/Los_Angeles'));
- $new = $response->withModified($now);
- $this->assertFalse($response->hasHeader('Last-Modified'));
- $now->setTimeZone(new \DateTimeZone('UTC'));
- $this->assertEquals($now->format($format) . ' GMT', $new->getHeaderLine('Last-Modified'));
- $now = time();
- $new = $response->withModified($now);
- $this->assertEquals(gmdate($format) . ' GMT', $new->getHeaderLine('Last-Modified'));
- $time = new \DateTime('+1 day', new \DateTimeZone('UTC'));
- $new = $response->withModified('+1 day');
- $this->assertEquals($time->format($format) . ' GMT', $new->getHeaderLine('Last-Modified'));
- }
- /**
- * Tests setting of public/private Cache-Control directives
- *
- * @return void
- */
- public function testSharable()
- {
- $response = new Response();
- $this->assertNull($response->sharable());
- $response->sharable(true);
- $this->assertTrue($response->sharable());
- $this->assertEquals('public', $response->getHeaderLine('Cache-Control'));
- $response = new Response();
- $response->sharable(false);
- $this->assertFalse($response->sharable());
- $this->assertEquals('private', $response->getHeaderLine('Cache-Control'));
- $response = new Response();
- $response->sharable(true, 3600);
- $this->assertEquals('public, max-age=3600', $response->getHeaderLine('Cache-Control'));
- $response = new Response();
- $response->sharable(false, 3600);
- $this->assertEquals('private, max-age=3600', $response->getHeaderLine('Cache-Control'));
- }
- /**
- * Tests withSharable()
- *
- * @return void
- */
- public function testWithSharable()
- {
- $response = new Response();
- $new = $response->withSharable(true);
- $this->assertFalse($response->hasHeader('Cache-Control'), 'old instance unchanged');
- $this->assertEquals('public', $new->getHeaderLine('Cache-Control'));
- $new = $response->withSharable(false);
- $this->assertEquals('private', $new->getHeaderLine('Cache-Control'));
- $new = $response->withSharable(true, 3600);
- $this->assertEquals('public, max-age=3600', $new->getHeaderLine('Cache-Control'));
- $new = $response->withSharable(false, 3600);
- $this->assertEquals('private, max-age=3600', $new->getHeaderLine('Cache-Control'));
- }
- /**
- * Tests setting of max-age Cache-Control directive
- *
- * @return void
- */
- public function testMaxAge()
- {
- $response = new Response();
- $this->assertNull($response->maxAge());
- $response->maxAge(3600);
- $this->assertEquals(3600, $response->maxAge());
- $this->assertEquals('max-age=3600', $response->getHeaderLine('Cache-Control'));
- $response = new Response();
- $response->maxAge(3600);
- $response->sharable(false);
- $this->assertEquals('max-age=3600, private', $response->getHeaderLine('Cache-Control'));
- }
- /**
- * Tests withMaxAge()
- *
- * @return void
- */
- public function testWithMaxAge()
- {
- $response = new Response();
- $this->assertFalse($response->hasHeader('Cache-Control'));
- $new = $response->withMaxAge(3600);
- $this->assertEquals('max-age=3600', $new->getHeaderLine('Cache-Control'));
- $new = $response->withMaxAge(3600)
- ->withSharable(false);
- $this->assertEquals('max-age=3600, private', $new->getHeaderLine('Cache-Control'));
- }
- /**
- * Tests setting of s-maxage Cache-Control directive
- *
- * @return void
- */
- public function testSharedMaxAge()
- {
- $response = new Response();
- $this->assertNull($response->maxAge());
- $response->sharedMaxAge(3600);
- $this->assertEquals(3600, $response->sharedMaxAge());
- $this->assertEquals('s-maxage=3600', $response->getHeaderLine('Cache-Control'));
- $response = new Response();
- $response->sharedMaxAge(3600);
- $response->sharable(true);
- $this->assertEquals('s-maxage=3600, public', $response->getHeaderLine('Cache-Control'));
- }
- /**
- * Tests setting of s-maxage Cache-Control directive
- *
- * @return void
- */
- public function testWithSharedMaxAge()
- {
- $response = new Response();
- $new = $response->withSharedMaxAge(3600);
- $this->assertFalse($response->hasHeader('Cache-Control'));
- $this->assertEquals('s-maxage=3600', $new->getHeaderLine('Cache-Control'));
- $new = $response->withSharedMaxAge(3600)->withSharable(true);
- $this->assertEquals('s-maxage=3600, public', $new->getHeaderLine('Cache-Control'));
- }
- /**
- * Tests setting of must-revalidate Cache-Control directive
- *
- * @return void
- */
- public function testMustRevalidate()
- {
- $response = new Response();
- $this->assertFalse($response->mustRevalidate());
- $response->mustRevalidate(true);
- $this->assertTrue($response->mustRevalidate());
- $this->assertEquals('must-revalidate', $response->getHeaderLine('Cache-Control'));
- $response->mustRevalidate(false);
- $this->assertFalse($response->mustRevalidate());
- $response = new Response();
- $response->sharedMaxAge(3600);
- $response->mustRevalidate(true);
- $this->assertEquals('s-maxage=3600, must-revalidate', $response->getHeaderLine('Cache-Control'));
- }
- /**
- * Tests setting of must-revalidate Cache-Control directive
- *
- * @return void
- */
- public function testWithMustRevalidate()
- {
- $response = new Response();
- $this->assertFalse($response->hasHeader('Cache-Control'));
- $new = $response->withMustRevalidate(true);
- $this->assertFalse($response->hasHeader('Cache-Control'));
- $this->assertEquals('must-revalidate', $new->getHeaderLine('Cache-Control'));
- $new = $new->withMustRevalidate(false);
- $this->assertEmpty($new->getHeaderLine('Cache-Control'));
- }
- /**
- * Tests getting/setting the Vary header
- *
- * @return void
- */
- public function testVary()
- {
- $response = new Response();
- $response->vary('Accept-encoding');
- $this->assertEquals('Accept-encoding', $response->getHeaderLine('vary'));
- $response = new Response();
- $response->vary(['Accept-language', 'Accept-encoding']);
- $this->assertEquals(['Accept-language', 'Accept-encoding'], $response->vary());
- $this->assertEquals('Accept-language, Accept-encoding', $response->getHeaderLine('vary'));
- }
- /**
- * Tests withVary()
- *
- * @return void
- */
- public function testWithVary()
- {
- $response = new Response();
- $new = $response->withVary('Accept-encoding');
- $this->assertFalse($response->hasHeader('Vary'));
- $this->assertEquals('Accept-encoding', $new->getHeaderLine('Vary'));
- $new = $response->withVary(['Accept-encoding', 'Accept-language']);
- $this->assertFalse($response->hasHeader('Vary'));
- $this->assertEquals('Accept-encoding,Accept-language', $new->getHeaderLine('Vary'));
- }
- /**
- * Tests getting/setting the Etag header
- *
- * @return void
- */
- public function testEtag()
- {
- $response = new Response();
- $response->etag('something');
- $this->assertEquals('"something"', $response->etag());
- $this->assertEquals('"something"', $response->getHeaderLine('Etag'));
- $response = new Response();
- $response->etag('something', true);
- $this->assertEquals('W/"something"', $response->etag());
- $this->assertEquals('W/"something"', $response->getHeaderLine('Etag'));
- }
- /**
- * Tests withEtag()
- *
- * @return void
- */
- public function testWithEtag()
- {
- $response = new Response();
- $new = $response->withEtag('something');
- $this->assertFalse($response->hasHeader('Etag'));
- $this->assertEquals('"something"', $new->getHeaderLine('Etag'));
- $new = $response->withEtag('something', true);
- $this->assertEquals('W/"something"', $new->getHeaderLine('Etag'));
- }
- /**
- * Tests that the response is able to be marked as not modified
- *
- * @return void
- */
- public function testNotModified()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['_sendHeader', '_sendContent'])
- ->getMock();
- $response->body('something');
- $response->statusCode(200);
- $response->length(100);
- $response->modified('now');
- $response->notModified();
- $this->assertEmpty($response->header());
- $this->assertEmpty($response->body());
- $this->assertEquals(304, $response->statusCode());
- }
- /**
- * Tests withNotModified()
- *
- * @return void
- */
- public function testWithNotModified()
- {
- $response = new Response(['body' => 'something']);
- $response = $response->withLength(100)
- ->withStatus(200)
- ->withHeader('Last-Modified', 'value')
- ->withHeader('Content-Language', 'en-EN')
- ->withHeader('X-things', 'things')
- ->withType('application/json');
- $new = $response->withNotModified();
- $this->assertTrue($response->hasHeader('Content-Language'), 'old instance not changed');
- $this->assertTrue($response->hasHeader('Content-Length'), 'old instance not changed');
- $this->assertFalse($new->hasHeader('Content-Type'));
- $this->assertFalse($new->hasHeader('Content-Length'));
- $this->assertFalse($new->hasHeader('Content-Language'));
- $this->assertFalse($new->hasHeader('Last-Modified'));
- $this->assertSame('things', $new->getHeaderLine('X-things'), 'Other headers are retained');
- $this->assertSame(304, $new->getStatusCode());
- $this->assertSame('', $new->getBody()->getContents());
- }
- /**
- * Test checkNotModified method
- *
- * @return void
- */
- public function testCheckNotModifiedByEtagStar()
- {
- $_SERVER['HTTP_IF_NONE_MATCH'] = '*';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['notModified'])
- ->getMock();
- $response->etag('something');
- $response->expects($this->once())->method('notModified');
- $response->checkNotModified(new ServerRequest);
- }
- /**
- * Test checkNotModified method
- *
- * @return void
- */
- public function testCheckNotModifiedByEtagExact()
- {
- $_SERVER['HTTP_IF_NONE_MATCH'] = 'W/"something", "other"';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['notModified'])
- ->getMock();
- $response->etag('something', true);
- $response->expects($this->once())->method('notModified');
- $this->assertTrue($response->checkNotModified(new ServerRequest));
- }
- /**
- * Test checkNotModified method
- *
- * @return void
- */
- public function testCheckNotModifiedByEtagAndTime()
- {
- $_SERVER['HTTP_IF_NONE_MATCH'] = 'W/"something", "other"';
- $_SERVER['HTTP_IF_MODIFIED_SINCE'] = '2012-01-01 00:00:00';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['notModified'])
- ->getMock();
- $response->etag('something', true);
- $response->modified('2012-01-01 00:00:00');
- $response->expects($this->once())->method('notModified');
- $this->assertTrue($response->checkNotModified(new ServerRequest));
- }
- /**
- * Test checkNotModified method
- *
- * @return void
- */
- public function testCheckNotModifiedByEtagAndTimeMismatch()
- {
- $_SERVER['HTTP_IF_NONE_MATCH'] = 'W/"something", "other"';
- $_SERVER['HTTP_IF_MODIFIED_SINCE'] = '2012-01-01 00:00:00';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['notModified'])
- ->getMock();
- $response->etag('something', true);
- $response->modified('2012-01-01 00:00:01');
- $response->expects($this->never())->method('notModified');
- $this->assertFalse($response->checkNotModified(new ServerRequest));
- }
- /**
- * Test checkNotModified method
- *
- * @return void
- */
- public function testCheckNotModifiedByEtagMismatch()
- {
- $_SERVER['HTTP_IF_NONE_MATCH'] = 'W/"something-else", "other"';
- $_SERVER['HTTP_IF_MODIFIED_SINCE'] = '2012-01-01 00:00:00';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['notModified'])
- ->getMock();
- $response->etag('something', true);
- $response->modified('2012-01-01 00:00:00');
- $response->expects($this->never())->method('notModified');
- $this->assertFalse($response->checkNotModified(new ServerRequest));
- }
- /**
- * Test checkNotModified method
- *
- * @return void
- */
- public function testCheckNotModifiedByTime()
- {
- $_SERVER['HTTP_IF_MODIFIED_SINCE'] = '2012-01-01 00:00:00';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['notModified'])
- ->getMock();
- $response->modified('2012-01-01 00:00:00');
- $response->expects($this->once())->method('notModified');
- $this->assertTrue($response->checkNotModified(new ServerRequest));
- }
- /**
- * Test checkNotModified method
- *
- * @return void
- */
- public function testCheckNotModifiedNoHints()
- {
- $_SERVER['HTTP_IF_NONE_MATCH'] = 'W/"something", "other"';
- $_SERVER['HTTP_IF_MODIFIED_SINCE'] = '2012-01-01 00:00:00';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods(['notModified'])
- ->getMock();
- $response->expects($this->never())->method('notModified');
- $this->assertFalse($response->checkNotModified(new ServerRequest));
- }
- /**
- * Test cookie setting
- *
- * @return void
- */
- public function testCookieSettings()
- {
- $response = new Response();
- $cookie = [
- 'name' => 'CakeTestCookie[Testing]'
- ];
- $response->cookie($cookie);
- $expected = [
- 'name' => 'CakeTestCookie[Testing]',
- 'value' => '',
- 'expire' => 0,
- 'path' => '/',
- 'domain' => '',
- 'secure' => false,
- 'httpOnly' => false
- ];
- $result = $response->cookie('CakeTestCookie[Testing]');
- $this->assertEquals($expected, $result);
- $cookie = [
- 'name' => 'CakeTestCookie[Testing2]',
- 'value' => '[a,b,c]',
- 'expire' => 1000,
- 'path' => '/test',
- 'secure' => true
- ];
- $response->cookie($cookie);
- $expected = [
- 'CakeTestCookie[Testing]' => [
- 'name' => 'CakeTestCookie[Testing]',
- 'value' => '',
- 'expire' => 0,
- 'path' => '/',
- 'domain' => '',
- 'secure' => false,
- 'httpOnly' => false
- ],
- 'CakeTestCookie[Testing2]' => [
- 'name' => 'CakeTestCookie[Testing2]',
- 'value' => '[a,b,c]',
- 'expire' => 1000,
- 'path' => '/test',
- 'domain' => '',
- 'secure' => true,
- 'httpOnly' => false
- ]
- ];
- $result = $response->cookie();
- $this->assertEquals($expected, $result);
- $cookie = $expected['CakeTestCookie[Testing]'];
- $cookie['value'] = 'test';
- $response->cookie($cookie);
- $expected = [
- 'CakeTestCookie[Testing]' => [
- 'name' => 'CakeTestCookie[Testing]',
- 'value' => 'test',
- 'expire' => 0,
- 'path' => '/',
- 'domain' => '',
- 'secure' => false,
- 'httpOnly' => false
- ],
- 'CakeTestCookie[Testing2]' => [
- 'name' => 'CakeTestCookie[Testing2]',
- 'value' => '[a,b,c]',
- 'expire' => 1000,
- 'path' => '/test',
- 'domain' => '',
- 'secure' => true,
- 'httpOnly' => false
- ]
- ];
- $result = $response->cookie();
- $this->assertEquals($expected, $result);
- }
- /**
- * Test setting cookies with no value
- *
- * @return void
- */
- public function testWithCookieEmpty()
- {
- $response = new Response();
- $new = $response->withCookie('testing');
- $this->assertNull($response->getCookie('testing'), 'withCookie does not mutate');
- $expected = [
- 'name' => 'testing',
- 'value' => '',
- 'expire' => 0,
- 'path' => '/',
- 'domain' => '',
- 'secure' => false,
- 'httpOnly' => false];
- $result = $new->getCookie('testing');
- $this->assertEquals($expected, $result);
- }
- /**
- * Test setting cookies with scalar values
- *
- * @return void
- */
- public function testWithCookieScalar()
- {
- $response = new Response();
- $new = $response->withCookie('testing', 'abc123');
- $this->assertNull($response->getCookie('testing'), 'withCookie does not mutate');
- $this->assertEquals('abc123', $new->getCookie('testing')['value']);
- $new = $response->withCookie('testing', 99);
- $this->assertEquals(99, $new->getCookie('testing')['value']);
- $new = $response->withCookie('testing', false);
- $this->assertFalse($new->getCookie('testing')['value']);
- $new = $response->withCookie('testing', true);
- $this->assertTrue($new->getCookie('testing')['value']);
- }
- /**
- * Test withCookie() and array data.
- *
- * @return void
- */
- public function testWithCookieArray()
- {
- $response = new Response();
- $cookie = [
- 'name' => 'ignored key',
- 'value' => '[a,b,c]',
- 'expire' => 1000,
- 'path' => '/test',
- 'secure' => true
- ];
- $new = $response->withCookie('testing', $cookie);
- $this->assertNull($response->getCookie('testing'), 'withCookie does not mutate');
- $expected = [
- 'name' => 'testing',
- 'value' => '[a,b,c]',
- 'expire' => 1000,
- 'path' => '/test',
- 'domain' => '',
- 'secure' => true,
- 'httpOnly' => false
- ];
- $this->assertEquals($expected, $new->getCookie('testing'));
- }
- /**
- * Test withCookie() and a cookie instance
- *
- * @return void
- */
- public function testWithCookieObject()
- {
- $response = new Response();
- $cookie = new Cookie('yay', 'a value');
- $new = $response->withCookie($cookie);
- $this->assertNull($response->getCookie('yay'), 'withCookie does not mutate');
- $this->assertNotEmpty($new->getCookie('yay'));
- $this->assertSame($cookie, $new->getCookieCollection()->get('yay'));
- }
- public function testWithExpiredCookieScalar()
- {
- $response = new Response();
- $response = $response->withCookie('testing', 'abc123');
- $this->assertEquals('abc123', $response->getCookie('testing')['value']);
- $new = $response->withExpiredCookie('testing');
- $this->assertNull($response->getCookie('testing')['expire']);
- $this->assertEquals('1', $new->getCookie('testing')['expire']);
- }
- public function testWithExpiredCookieOptions()
- {
- $options = [
- 'name' => 'testing',
- 'value' => 'abc123',
- 'domain' => 'cakephp.org',
- 'path' => '/custompath/',
- 'secure' => true,
- 'httpOnly' => true,
- 'expire' => (string)strtotime('+14 days'),
- ];
- $response = new Response();
- $response = $response->withCookie('testing', $options);
- $this->assertEquals($options, $response->getCookie('testing'));
- $new = $response->withExpiredCookie('testing', $options);
- $this->assertEquals($options['expire'], $response->getCookie('testing')['expire']);
- $this->assertEquals('1', $new->getCookie('testing')['expire']);
- $this->assertEquals('', $new->getCookie('testing')['value']);
- }
- public function testWithExpiredCookieObject()
- {
- $response = new Response();
- $cookie = new Cookie('yay', 'a value');
- $response = $response->withCookie($cookie);
- $this->assertEquals('a value', $response->getCookie('yay')['value']);
- $new = $response->withExpiredCookie($cookie);
- $this->assertNull($response->getCookie('yay')['expire']);
- $this->assertEquals('1', $new->getCookie('yay')['expire']);
- }
- /**
- * Test getCookies() and array data.
- *
- * @return void
- */
- public function testGetCookies()
- {
- $response = new Response();
- $new = $response->withCookie('testing', 'a')
- ->withCookie('test2', ['value' => 'b', 'path' => '/test', 'secure' => true]);
- $expected = [
- 'testing' => [
- 'name' => 'testing',
- 'value' => 'a',
- 'expire' => null,
- 'path' => '/',
- 'domain' => '',
- 'secure' => false,
- 'httpOnly' => false
- ],
- 'test2' => [
- 'name' => 'test2',
- 'value' => 'b',
- 'expire' => null,
- 'path' => '/test',
- 'domain' => '',
- 'secure' => true,
- 'httpOnly' => false
- ]
- ];
- $this->assertEquals($expected, $new->getCookies());
- }
- /**
- * Test getCookies() and array data.
- *
- * @return void
- */
- public function testGetCookiesArrayValue()
- {
- $response = new Response();
- $cookie = (new Cookie('urmc'))
- ->withValue(['user_id' => 1, 'token' => 'abc123'])
- ->withHttpOnly(true);
- $new = $response->withCookie($cookie);
- $expected = [
- 'urmc' => [
- 'name' => 'urmc',
- 'value' => '{"user_id":1,"token":"abc123"}',
- 'expire' => null,
- 'path' => '',
- 'domain' => '',
- 'secure' => false,
- 'httpOnly' => true
- ],
- ];
- $this->assertEquals($expected, $new->getCookies());
- }
- /**
- * Test getCookieCollection() as array data
- *
- * @return void
- */
- public function testGetCookieCollection()
- {
- $response = new Response();
- $new = $response->withCookie('testing', 'a')
- ->withCookie('test2', ['value' => 'b', 'path' => '/test', 'secure' => true]);
- $cookies = $response->getCookieCollection();
- $this->assertInstanceOf(CookieCollection::class, $cookies);
- $this->assertCount(0, $cookies, 'Original response not mutated');
- $cookies = $new->getCookieCollection();
- $this->assertInstanceOf(CookieCollection::class, $cookies);
- $this->assertCount(2, $cookies);
- $this->assertTrue($cookies->has('testing'));
- $this->assertTrue($cookies->has('test2'));
- }
- /**
- * Test CORS
- *
- * @dataProvider corsData
- * @param Request $request
- * @param string $origin
- * @param string|array $domains
- * @param string|array $methods
- * @param string|array $headers
- * @param string|bool $expectedOrigin
- * @param string|bool $expectedMethods
- * @param string|bool $expectedHeaders
- * @return void
- */
- public function testCors($request, $origin, $domains, $methods, $headers, $expectedOrigin, $expectedMethods = false, $expectedHeaders = false)
- {
- $request->env('HTTP_ORIGIN', $origin);
- $response = new Response();
- $result = $response->cors($request, $domains, $methods, $headers);
- $this->assertInstanceOf('Cake\Network\CorsBuilder', $result);
- $headers = $response->header();
- if ($expectedOrigin) {
- $this->assertArrayHasKey('Access-Control-Allow-Origin', $headers);
- $this->assertEquals($expectedOrigin, $headers['Access-Control-Allow-Origin']);
- }
- if ($expectedMethods) {
- $this->assertArrayHasKey('Access-Control-Allow-Methods', $headers);
- $this->assertEquals($expectedMethods, $headers['Access-Control-Allow-Methods']);
- }
- if ($expectedHeaders) {
- $this->assertArrayHasKey('Access-Control-Allow-Headers', $headers);
- $this->assertEquals($expectedHeaders, $headers['Access-Control-Allow-Headers']);
- }
- unset($_SERVER['HTTP_ORIGIN']);
- }
- /**
- * Feed for testCors
- *
- * @return array
- */
- public function corsData()
- {
- $fooRequest = new ServerRequest();
- $secureRequest = function () {
- $secureRequest = $this->getMockBuilder('Cake\Http\ServerRequest')
- ->setMethods(['is'])
- ->getMock();
- $secureRequest->expects($this->any())
- ->method('is')
- ->with('ssl')
- ->will($this->returnValue(true));
- return $secureRequest;
- };
- return [
- [$fooRequest, null, '*', '', '', false, false],
- [$fooRequest, 'http://www.foo.com', '*', '', '', '*', false],
- [$fooRequest, 'http://www.foo.com', 'www.foo.com', '', '', 'http://www.foo.com', false],
- [$fooRequest, 'http://www.foo.com', '*.foo.com', '', '', 'http://www.foo.com', false],
- [$fooRequest, 'http://www.foo.com', 'http://*.foo.com', '', '', 'http://www.foo.com', false],
- [$fooRequest, 'http://www.foo.com', 'https://www.foo.com', '', '', false, false],
- [$fooRequest, 'http://www.foo.com', 'https://*.foo.com', '', '', false, false],
- [$fooRequest, 'http://www.foo.com', ['*.bar.com', '*.foo.com'], '', '', 'http://www.foo.com', false],
- [$fooRequest, 'http://not-foo.com', '*.foo.com', '', '', false, false],
- [$fooRequest, 'http://bad.academy', '*.acad.my', '', '', false, false],
- [$fooRequest, 'http://www.foo.com.at.bad.com', '*.foo.com', '', '', false, false],
- [$fooRequest, 'https://www.foo.com', '*.foo.com', '', '', false, false],
- [$secureRequest(), 'https://www.bar.com', 'www.bar.com', '', '', 'https://www.bar.com', false],
- [$secureRequest(), 'https://www.bar.com', 'http://www.bar.com', '', '', false, false],
- [$secureRequest(), 'https://www.bar.com', '*.bar.com', '', '', 'https://www.bar.com', false],
- [$secureRequest(), 'http://www.bar.com', '*.bar.com', '', '', false, false],
- [$fooRequest, 'http://www.foo.com', '*', 'GET', '', '*', 'GET'],
- [$fooRequest, 'http://www.foo.com', '*.foo.com', 'GET', '', 'http://www.foo.com', 'GET'],
- [$fooRequest, 'http://www.foo.com', '*.foo.com', ['GET', 'POST'], '', 'http://www.foo.com', 'GET, POST'],
- [$fooRequest, 'http://www.foo.com', '*', '', 'X-CakePHP', '*', false, 'X-CakePHP'],
- [$fooRequest, 'http://www.foo.com', '*', '', ['X-CakePHP', 'X-MyApp'], '*', false, 'X-CakePHP, X-MyApp'],
- [$fooRequest, 'http://www.foo.com', '*', ['GET', 'OPTIONS'], ['X-CakePHP', 'X-MyApp'], '*', 'GET, OPTIONS', 'X-CakePHP, X-MyApp'],
- ];
- }
- /**
- * testFileNotFound
- *
- * @expectedException \Cake\Network\Exception\NotFoundException
- * @return void
- */
- public function testFileNotFound()
- {
- $response = new Response();
- $response->file('/some/missing/folder/file.jpg');
- }
- /**
- * test withFile() not found
- *
- * @expectedException \Cake\Network\Exception\NotFoundException
- * @return void
- */
- public function testWithFileNotFound()
- {
- $response = new Response();
- $response->withFile('/some/missing/folder/file.jpg');
- }
- /**
- * Provider for various kinds of unacceptable files.
- *
- * @return array
- */
- public function invalidFileProvider()
- {
- return [
- ['my/../cat.gif', 'The requested file contains `..` and will not be read.'],
- ['my\..\cat.gif', 'The requested file contains `..` and will not be read.'],
- ['my/ca..t.gif', 'my/ca..t.gif was not found or not readable'],
- ['my/ca..t/image.gif', 'my/ca..t/image.gif was not found or not readable'],
- ];
- }
- /**
- * test invalid file paths.
- *
- * @dataProvider invalidFileProvider
- * @return void
- */
- public function testFileInvalidPath($path, $expectedMessage)
- {
- $response = new Response();
- try {
- $response->file($path);
- } catch (NotFoundException $e) {
- $this->assertContains($expectedMessage, $e->getMessage());
- }
- }
- /**
- * test withFile and invalid paths
- *
- * @dataProvider invalidFileProvider
- * @return void
- */
- public function testWithFileInvalidPath($path, $expectedMessage)
- {
- $response = new Response();
- try {
- $response->withFile($path);
- } catch (NotFoundException $e) {
- $this->assertContains($expectedMessage, $e->getMessage());
- }
- }
- /**
- * testFile method
- *
- * @return void
- */
- public function testFile()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->exactly(1))
- ->method('type')
- ->with('css')
- ->will($this->returnArgument(0));
- $response->expects($this->at(1))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->exactly(1))
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(TEST_APP . 'vendor/css/test_asset.css');
- ob_start();
- $result = $response->send();
- $this->assertTrue($result !== false);
- $output = ob_get_clean();
- $expected = '/* this is the test asset css file */';
- $this->assertEquals($expected, trim($output));
- $this->assertEquals($expected, trim($response->getBody()->getContents()));
- }
- /**
- * test withFile() + download & name
- *
- * @return void
- */
- public function testWithFileDownloadAndName()
- {
- $response = new Response();
- $new = $response->withFile(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- [
- 'name' => 'something_special.css',
- 'download' => true,
- ]
- );
- $this->assertEquals(
- 'text/html; charset=UTF-8',
- $response->getHeaderLine('Content-Type'),
- 'No mutation'
- );
- $this->assertEquals(
- 'text/css; charset=UTF-8',
- $new->getHeaderLine('Content-Type')
- );
- $this->assertEquals(
- 'attachment; filename="something_special.css"',
- $new->getHeaderLine('Content-Disposition')
- );
- $this->assertEquals('bytes', $new->getHeaderLine('Accept-Ranges'));
- $this->assertEquals('binary', $new->getHeaderLine('Content-Transfer-Encoding'));
- $body = $new->getBody();
- $this->assertInstanceOf('Zend\Diactoros\Stream', $body);
- $expected = '/* this is the test asset css file */';
- $this->assertEquals($expected, trim($body->getContents()));
- $this->assertEquals($expected, trim($new->getFile()->read()));
- }
- /**
- * testFileWithDownloadAndName
- *
- * @return void
- */
- public function testFileWithDownloadAndName()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- 'download',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->exactly(1))
- ->method('type')
- ->with('css')
- ->will($this->returnArgument(0));
- $response->expects($this->once())
- ->method('download')
- ->with('something_special.css');
- $response->expects($this->at(2))
- ->method('header')
- ->with('Content-Transfer-Encoding', 'binary');
- $response->expects($this->at(3))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->exactly(1))
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- [
- 'name' => 'something_special.css',
- 'download' => true,
- ]
- );
- ob_start();
- $result = $response->send();
- $output = ob_get_clean();
- $this->assertEquals("/* this is the test asset css file */\n", $output);
- $this->assertNotSame(false, $result);
- }
- /**
- * testFileWithUnknownFileTypeGeneric method
- *
- * @return void
- */
- public function testFileWithUnknownFileTypeGeneric()
- {
- $currentUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
- $_SERVER['HTTP_USER_AGENT'] = 'Some generic browser';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- 'download',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->exactly(1))
- ->method('type')
- ->with('ini')
- ->will($this->returnValue(false));
- $response->expects($this->once())
- ->method('download')
- ->with('no_section.ini');
- $response->expects($this->at(2))
- ->method('header')
- ->with('Content-Transfer-Encoding', 'binary');
- $response->expects($this->at(3))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->exactly(1))
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(CONFIG . 'no_section.ini');
- ob_start();
- $result = $response->send();
- $output = ob_get_clean();
- $this->assertEquals("some_key = some_value\nbool_key = 1\n", $output);
- $this->assertNotSame(false, $result);
- if ($currentUserAgent !== null) {
- $_SERVER['HTTP_USER_AGENT'] = $currentUserAgent;
- }
- }
- /**
- * test withFile() + a generic agent
- *
- * @return void
- */
- public function testWithFileUnknownFileTypeGeneric()
- {
- $response = new Response();
- $new = $response->withFile(CONFIG . 'no_section.ini');
- $this->assertEquals('text/html; charset=UTF-8', $new->getHeaderLine('Content-Type'));
- $this->assertEquals(
- 'attachment; filename="no_section.ini"',
- $new->getHeaderLine('Content-Disposition')
- );
- $this->assertEquals('bytes', $new->getHeaderLine('Accept-Ranges'));
- $body = $new->getBody();
- $expected = "some_key = some_value\nbool_key = 1\n";
- $this->assertEquals($expected, $body->getContents());
- }
- /**
- * testFileWithUnknownFileTypeOpera method
- *
- * @return void
- */
- public function testFileWithUnknownFileTypeOpera()
- {
- $currentUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
- $_SERVER['HTTP_USER_AGENT'] = 'Opera/9.80 (Windows NT 6.0; U; en) Presto/2.8.99 Version/11.10';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- 'download',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->at(0))
- ->method('type')
- ->with('ini')
- ->will($this->returnValue(false));
- $response->expects($this->at(1))
- ->method('type')
- ->with('application/octet-stream')
- ->will($this->returnValue(false));
- $response->expects($this->once())
- ->method('download')
- ->with('no_section.ini');
- $response->expects($this->at(3))
- ->method('header')
- ->with('Content-Transfer-Encoding', 'binary');
- $response->expects($this->at(4))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->exactly(1))
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(CONFIG . 'no_section.ini');
- ob_start();
- $result = $response->send();
- $output = ob_get_clean();
- $this->assertEquals("some_key = some_value\nbool_key = 1\n", $output);
- $this->assertNotSame(false, $result);
- if ($currentUserAgent !== null) {
- $_SERVER['HTTP_USER_AGENT'] = $currentUserAgent;
- }
- }
- /**
- * test withFile() + opera
- *
- * @return void
- */
- public function testWithFileUnknownFileTypeOpera()
- {
- $currentUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
- $_SERVER['HTTP_USER_AGENT'] = 'Opera/9.80 (Windows NT 6.0; U; en) Presto/2.8.99 Version/11.10';
- $response = new Response();
- $new = $response->withFile(CONFIG . 'no_section.ini');
- $this->assertEquals('application/octet-stream', $new->getHeaderLine('Content-Type'));
- $this->assertEquals(
- 'attachment; filename="no_section.ini"',
- $new->getHeaderLine('Content-Disposition')
- );
- $_SERVER['HTTP_USER_AGENT'] = $currentUserAgent;
- }
- /**
- * testFileWithUnknownFileTypeIE method
- *
- * @return void
- */
- public function testFileWithUnknownFileTypeIE()
- {
- $currentUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
- $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; Media Center PC 4.0; SLCC1; .NET CLR 3.0.04320)';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- 'download',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->at(0))
- ->method('type')
- ->with('ini')
- ->will($this->returnValue(false));
- $response->expects($this->at(1))
- ->method('type')
- ->with('application/force-download')
- ->will($this->returnValue(false));
- $response->expects($this->once())
- ->method('download')
- ->with('config.ini');
- $response->expects($this->at(3))
- ->method('header')
- ->with('Content-Transfer-Encoding', 'binary');
- $response->expects($this->at(4))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->exactly(1))
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(CONFIG . 'no_section.ini', [
- 'name' => 'config.ini'
- ]);
- ob_start();
- $result = $response->send();
- $output = ob_get_clean();
- $this->assertEquals("some_key = some_value\nbool_key = 1\n", $output);
- $this->assertNotSame(false, $result);
- if ($currentUserAgent !== null) {
- $_SERVER['HTTP_USER_AGENT'] = $currentUserAgent;
- }
- }
- /**
- * test withFile() + old IE
- *
- * @return void
- */
- public function testWithFileUnknownFileTypeOldIe()
- {
- $currentUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
- $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; Media Center PC 4.0; SLCC1; .NET CLR 3.0.04320)';
- $response = new Response();
- $new = $response->withFile(CONFIG . 'no_section.ini');
- $this->assertEquals('application/force-download', $new->getHeaderLine('Content-Type'));
- $_SERVER['HTTP_USER_AGENT'] = $currentUserAgent;
- }
- /**
- * testFileWithUnknownFileNoDownload method
- *
- * @return void
- */
- public function testFileWithUnknownFileNoDownload()
- {
- $currentUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
- $_SERVER['HTTP_USER_AGENT'] = 'Some generic browser';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- 'download',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->exactly(1))
- ->method('type')
- ->with('ini')
- ->will($this->returnValue(false));
- $response->expects($this->at(1))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->never())
- ->method('download');
- $response->file(CONFIG . 'no_section.ini', [
- 'download' => false
- ]);
- if ($currentUserAgent !== null) {
- $_SERVER['HTTP_USER_AGENT'] = $currentUserAgent;
- }
- }
- /**
- * test withFile() + no download
- *
- * @return void
- */
- public function testWithFileNoDownload()
- {
- $response = new Response();
- $new = $response->withFile(CONFIG . 'no_section.ini', [
- 'download' => false
- ]);
- $this->assertEquals(
- 'text/html; charset=UTF-8',
- $new->getHeaderLine('Content-Type')
- );
- $this->assertFalse($new->hasHeader('Content-Disposition'));
- $this->assertFalse($new->hasHeader('Content-Transfer-Encoding'));
- }
- /**
- * test getFile method
- *
- * @return void
- */
- public function testGetFile()
- {
- $response = new Response();
- $this->assertNull($response->getFile(), 'No file to get');
- $response->file(TEST_APP . 'vendor/css/test_asset.css');
- $file = $response->getFile();
- $this->assertInstanceOf('Cake\Filesystem\File', $file, 'Should get a file');
- $this->assertPathEquals(TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css', $file->path);
- }
- /**
- * testConnectionAbortedOnBuffering method
- *
- * @return void
- */
- public function testConnectionAbortedOnBuffering()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- 'download',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->any())
- ->method('type')
- ->with('css')
- ->will($this->returnArgument(0));
- $response->expects($this->at(0))
- ->method('_isActive')
- ->will($this->returnValue(false));
- $response->file(TEST_APP . 'vendor/css/test_asset.css');
- $result = $response->send();
- $this->assertNull($result);
- }
- /**
- * Test downloading files with UPPERCASE extensions.
- *
- * @return void
- */
- public function testFileUpperExtension()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- 'download',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->any())
- ->method('type')
- ->with('jpg')
- ->will($this->returnArgument(0));
- $response->expects($this->at(0))
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(TEST_APP . 'vendor/img/test_2.JPG');
- }
- /**
- * Test that uppercase extensions result in correct content-types
- *
- * @return void
- */
- public function testWithFileUpperExtension()
- {
- $response = new Response();
- $new = $response->withFile(TEST_APP . 'vendor/img/test_2.JPG');
- $this->assertEquals('image/jpeg', $new->getHeaderLine('Content-Type'));
- }
- /**
- * Test downloading files with extension not explicitly set.
- *
- * @return void
- */
- public function testFileExtensionNotSet()
- {
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- 'download',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->any())
- ->method('type')
- ->with('jpg')
- ->will($this->returnArgument(0));
- $response->expects($this->at(0))
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(TEST_APP . 'vendor/img/test_2.JPG');
- }
- /**
- * A data provider for testing various ranges
- *
- * @return array
- */
- public static function rangeProvider()
- {
- return [
- // suffix-byte-range
- [
- 'bytes=-25', 25, 'bytes 13-37/38'
- ],
- [
- 'bytes=0-', 38, 'bytes 0-37/38'
- ],
- [
- 'bytes=10-', 28, 'bytes 10-37/38'
- ],
- [
- 'bytes=10-20', 11, 'bytes 10-20/38'
- ],
- // Spaced out
- [
- 'bytes = 10 - 20', 11, 'bytes 10-20/38'
- ],
- ];
- }
- /**
- * Test the various range offset types.
- *
- * @dataProvider rangeProvider
- * @return void
- */
- public function testFileRangeOffsets($range, $length, $offsetResponse)
- {
- $_SERVER['HTTP_RANGE'] = $range;
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->at(1))
- ->method('header')
- ->with('Content-Disposition', 'attachment; filename="test_asset.css"');
- $response->expects($this->at(2))
- ->method('header')
- ->with('Content-Transfer-Encoding', 'binary');
- $response->expects($this->at(3))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->at(4))
- ->method('header')
- ->with([
- 'Content-Length' => $length,
- 'Content-Range' => $offsetResponse,
- ]);
- $response->expects($this->any())
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => true]
- );
- ob_start();
- $result = $response->send();
- ob_get_clean();
- }
- /**
- * Test withFile() & the various range offset types.
- *
- * @dataProvider rangeProvider
- * @return void
- */
- public function testWithFileRangeOffsets($range, $length, $offsetResponse)
- {
- $_SERVER['HTTP_RANGE'] = $range;
- $response = new Response();
- $new = $response->withFile(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => true]
- );
- $this->assertEquals(
- 'attachment; filename="test_asset.css"',
- $new->getHeaderLine('Content-Disposition')
- );
- $this->assertEquals('binary', $new->getHeaderLine('Content-Transfer-Encoding'));
- $this->assertEquals('bytes', $new->getHeaderLine('Accept-Ranges'));
- $this->assertEquals($length, $new->getHeaderLine('Content-Length'));
- $this->assertEquals($offsetResponse, $new->getHeaderLine('Content-Range'));
- }
- /**
- * Test fetching ranges from a file.
- *
- * @return void
- */
- public function testFileRange()
- {
- $_SERVER['HTTP_RANGE'] = 'bytes=8-25';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- '_sendHeader',
- '_setContentType',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->exactly(1))
- ->method('type')
- ->with('css')
- ->will($this->returnArgument(0));
- $response->expects($this->at(1))
- ->method('header')
- ->with('Content-Disposition', 'attachment; filename="test_asset.css"');
- $response->expects($this->at(2))
- ->method('header')
- ->with('Content-Transfer-Encoding', 'binary');
- $response->expects($this->at(3))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->at(4))
- ->method('header')
- ->with([
- 'Content-Length' => 18,
- 'Content-Range' => 'bytes 8-25/38',
- ]);
- $response->expects($this->any())
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => true]
- );
- ob_start();
- $result = $response->send();
- $output = ob_get_clean();
- $this->assertEquals(206, $response->statusCode());
- $this->assertEquals('is the test asset ', $output);
- $this->assertNotSame(false, $result);
- }
- /**
- * Test withFile() fetching ranges from a file.
- *
- * @return void
- */
- public function testWithFileRange()
- {
- $_SERVER['HTTP_RANGE'] = 'bytes=8-25';
- $response = new Response();
- $new = $response->withFile(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => true]
- );
- $this->assertEquals(
- 'attachment; filename="test_asset.css"',
- $new->getHeaderLine('Content-Disposition')
- );
- $this->assertEquals('binary', $new->getHeaderLine('Content-Transfer-Encoding'));
- $this->assertEquals('bytes', $new->getHeaderLine('Accept-Ranges'));
- $this->assertEquals('18', $new->getHeaderLine('Content-Length'));
- $this->assertEquals('bytes 8-25/38', $new->getHeaderLine('Content-Range'));
- $this->assertEquals(206, $new->getStatusCode());
- }
- /**
- * Provider for invalid range header values.
- *
- * @return array
- */
- public function invalidFileRangeProvider()
- {
- return [
- // malformed range
- [
- 'bytes=0,38'
- ],
- // malformed punctuation
- [
- 'bytes: 0 - 38'
- ],
- ];
- }
- /**
- * Test invalid file ranges.
- *
- * @dataProvider invalidFileRangeProvider
- * @return void
- */
- public function testFileRangeInvalid($range)
- {
- $_SERVER['HTTP_RANGE'] = $range;
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- '_sendHeader',
- '_isActive',
- ])
- ->getMock();
- $response->file(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => true]
- );
- $expected = [
- 'Content-Type' => 'text/css; charset=UTF-8',
- 'Content-Disposition' => 'attachment; filename="test_asset.css"',
- 'Content-Transfer-Encoding' => 'binary',
- 'Accept-Ranges' => 'bytes',
- 'Content-Range' => 'bytes 0-37/38',
- 'Content-Length' => 38,
- ];
- $this->assertEquals($expected, $response->header());
- }
- /**
- * Test withFile() and invalid ranges
- *
- * @dataProvider invalidFileRangeProvider
- * @return void
- */
- public function testWithFileInvalidRange($range)
- {
- $_SERVER['HTTP_RANGE'] = $range;
- $response = new Response();
- $new = $response->withFile(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => true]
- );
- $this->assertEquals(
- 'attachment; filename="test_asset.css"',
- $new->getHeaderLine('Content-Disposition')
- );
- $this->assertEquals('binary', $new->getHeaderLine('Content-Transfer-Encoding'));
- $this->assertEquals('bytes', $new->getHeaderLine('Accept-Ranges'));
- $this->assertEquals('38', $new->getHeaderLine('Content-Length'));
- $this->assertEquals('bytes 0-37/38', $new->getHeaderLine('Content-Range'));
- $this->assertEquals(206, $new->getStatusCode());
- }
- /**
- * Test reversed file ranges.
- *
- * @return void
- */
- public function testFileRangeReversed()
- {
- $_SERVER['HTTP_RANGE'] = 'bytes=30-2';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- '_sendHeader',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->at(1))
- ->method('header')
- ->with('Content-Disposition', 'attachment; filename="test_asset.css"');
- $response->expects($this->at(2))
- ->method('header')
- ->with('Content-Transfer-Encoding', 'binary');
- $response->expects($this->at(3))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->at(4))
- ->method('header')
- ->with([
- 'Content-Range' => 'bytes 0-37/38',
- ]);
- $response->file(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => true]
- );
- $this->assertEquals(416, $response->statusCode());
- $result = $response->send();
- }
- /**
- * Test withFile() and a reversed range
- *
- * @return void
- */
- public function testWithFileReversedRange()
- {
- $_SERVER['HTTP_RANGE'] = 'bytes=30-2';
- $response = new Response();
- $new = $response->withFile(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => true]
- );
- $this->assertEquals(
- 'attachment; filename="test_asset.css"',
- $new->getHeaderLine('Content-Disposition')
- );
- $this->assertEquals('binary', $new->getHeaderLine('Content-Transfer-Encoding'));
- $this->assertEquals('bytes', $new->getHeaderLine('Accept-Ranges'));
- $this->assertEquals('bytes 0-37/38', $new->getHeaderLine('Content-Range'));
- $this->assertEquals(416, $new->getStatusCode());
- }
- /**
- * testFileRangeOffsetsNoDownload method
- *
- * @dataProvider rangeProvider
- * @return void
- */
- public function testFileRangeOffsetsNoDownload($range, $length, $offsetResponse)
- {
- $_SERVER['HTTP_RANGE'] = $range;
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- '_sendHeader',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->at(1))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->at(2))
- ->method('header')
- ->with([
- 'Content-Length' => $length,
- 'Content-Range' => $offsetResponse,
- ]);
- $response->expects($this->any())
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => false]
- );
- ob_start();
- $result = $response->send();
- ob_get_clean();
- }
- /**
- * testFileRangeNoDownload method
- *
- * @return void
- */
- public function testFileRangeNoDownload()
- {
- $_SERVER['HTTP_RANGE'] = 'bytes=8-25';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- '_sendHeader',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->exactly(1))
- ->method('type')
- ->with('css')
- ->will($this->returnArgument(0));
- $response->expects($this->at(1))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->at(2))
- ->method('header')
- ->with([
- 'Content-Length' => 18,
- 'Content-Range' => 'bytes 8-25/38',
- ]);
- $response->expects($this->any())
- ->method('_isActive')
- ->will($this->returnValue(true));
- $response->file(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => false]
- );
- ob_start();
- $result = $response->send();
- $output = ob_get_clean();
- $this->assertEquals(206, $response->statusCode());
- $this->assertEquals('is the test asset ', $output);
- $this->assertNotSame(false, $result);
- }
- /**
- * testFileRangeInvalidNoDownload method
- *
- * @return void
- */
- public function testFileRangeInvalidNoDownload()
- {
- $_SERVER['HTTP_RANGE'] = 'bytes=30-2';
- $response = $this->getMockBuilder('Cake\Http\Response')
- ->setMethods([
- 'header',
- 'type',
- '_sendHeader',
- '_isActive',
- ])
- ->getMock();
- $response->expects($this->at(1))
- ->method('header')
- ->with('Accept-Ranges', 'bytes');
- $response->expects($this->at(2))
- ->method('header')
- ->with([
- 'Content-Range' => 'bytes 0-37/38',
- ]);
- $response->file(
- TEST_APP . 'vendor' . DS . 'css' . DS . 'test_asset.css',
- ['download' => false]
- );
- $this->assertEquals(416, $response->statusCode());
- $result = $response->send();
- }
- /**
- * Test the location method.
- *
- * @return void
- */
- public function testLocation()
- {
- $response = new Response();
- $this->assertNull($response->location(), 'No header should be set.');
- $this->assertNull($response->location('http://example.org'), 'Setting a location should return null');
- $this->assertEquals('http://example.org', $response->location(), 'Reading a location should return the value.');
- }
- /**
- * Test the withLocation method.
- *
- * @return void
- */
- public function testWithLocation()
- {
- $response = new Response();
- $this->assertSame('', $response->getHeaderLine('Location'), 'No header should be set.');
- $new = $response->withLocation('http://example.org');
- $this->assertNotSame($new, $response);
- $this->assertSame('', $response->getHeaderLine('Location'), 'No header should be set');
- $this->assertSame('http://example.org', $new->getHeaderLine('Location'), 'Header should be set');
- $this->assertSame(302, $new->getStatusCode(), 'Status should be updated');
- }
- /**
- * Test get protocol version.
- *
- * @return void
- */
- public function getProtocolVersion()
- {
- $response = new Response();
- $version = $response->getProtocolVersion();
- $this->assertEquals('1.1', $version);
- }
- /**
- * Test with protocol.
- *
- * @return void
- */
- public function testWithProtocol()
- {
- $response = new Response();
- $version = $response->getProtocolVersion();
- $this->assertEquals('1.1', $version);
- $response2 = $response->withProtocolVersion('1.0');
- $version = $response2->getProtocolVersion();
- $this->assertEquals('1.0', $version);
- $version = $response->getProtocolVersion();
- $this->assertEquals('1.1', $version);
- $this->assertNotEquals($response, $response2);
- }
- /**
- * Test with protocol.
- *
- * @return void
- */
- public function testWithStatusCode()
- {
- $response = new Response();
- $statusCode = $response->getStatusCode();
- $this->assertEquals(200, $statusCode);
- $response2 = $response->withStatus(404);
- $statusCode = $response2->getStatusCode();
- $this->assertEquals(404, $statusCode);
- $statusCode = $response->getStatusCode();
- $this->assertEquals(200, $statusCode);
- $this->assertNotEquals($response, $response2);
- }
- /**
- * Test get reason phrase.
- *
- * @return void
- */
- public function testGetReasonPhrase()
- {
- $response = new Response();
- $this->assertSame('OK', $response->getReasonPhrase());
- $response = $response->withStatus(404);
- $reasonPhrase = $response->getReasonPhrase();
- $this->assertEquals('Not Found', $reasonPhrase);
- }
- /**
- * Test with body.
- *
- * @return void
- */
- public function testWithBody()
- {
- $response = new Response();
- $body = $response->getBody();
- $body->rewind();
- $result = $body->getContents();
- $this->assertEquals('', $result);
- $stream = new Stream('php://memory', 'wb+');
- $stream->write('test1');
- $response2 = $response->withBody($stream);
- $body = $response2->getBody();
- $body->rewind();
- $result = $body->getContents();
- $this->assertEquals('test1', $result);
- $body = $response->getBody();
- $body->rewind();
- $result = $body->getContents();
- $this->assertEquals('', $result);
- }
- /**
- * Test with string body.
- *
- * @return void
- */
- public function testWithStringBody()
- {
- $response = new Response();
- $newResponse = $response->withStringBody('Foo');
- $body = $newResponse->getBody();
- $this->assertSame('Foo', (string)$body);
- $this->assertNotSame($response, $newResponse);
- $response = new Response();
- $newResponse = $response->withStringBody('');
- $body = $newResponse->getBody();
- $this->assertSame('', (string)$body);
- $this->assertNotSame($response, $newResponse);
- $response = new Response();
- $newResponse = $response->withStringBody(null);
- $body = $newResponse->getBody();
- $this->assertSame('', (string)$body);
- $this->assertNotSame($response, $newResponse);
- $response = new Response();
- $newResponse = $response->withStringBody(1337);
- $body = $newResponse->getBody();
- $this->assertSame('1337', (string)$body);
- $this->assertNotSame($response, $newResponse);
- }
- /**
- * Test with string body with passed array.
- *
- * This should produce an "Array to string conversion" error
- * which gets thrown as a \PHPUnit\Framework\Error\Error Exception by PHPUnit.
- *
- * @expectedException \PHPUnit\Framework\Error\Error
- * @expectedExceptionMessage Array to string conversion
- * @return void
- */
- public function testWithStringBodyArray()
- {
- $response = new Response();
- $newResponse = $response->withStringBody(['foo' => 'bar']);
- $body = $newResponse->getBody();
- $this->assertSame('', (string)$body);
- $this->assertNotSame($response, $newResponse);
- }
- /**
- * Test get Body.
- *
- * @return void
- */
- public function testGetBody()
- {
- $response = new Response();
- $stream = $response->getBody();
- $this->assertInstanceOf('Psr\Http\Message\StreamInterface', $stream);
- }
- /**
- * Test with header.
- *
- * @return void
- */
- public function testWithHeader()
- {
- $response = new Response();
- $response2 = $response->withHeader('Accept', 'application/json');
- $result = $response2->getHeaders();
- $expected = [
- 'Content-Type' => ['text/html; charset=UTF-8'],
- 'Accept' => ['application/json']
- ];
- $this->assertEquals($expected, $result);
- $this->assertFalse($response->hasHeader('Accept'));
- }
- /**
- * Test get headers.
- *
- * @return void
- */
- public function testGetHeaders()
- {
- $response = new Response();
- $headers = $response->getHeaders();
- $response = $response->withAddedHeader('Location', 'localhost');
- $response = $response->withAddedHeader('Accept', 'application/json');
- $headers = $response->getHeaders();
- $expected = [
- 'Content-Type' => ['text/html; charset=UTF-8'],
- 'Location' => ['localhost'],
- 'Accept' => ['application/json']
- ];
- $this->assertEquals($expected, $headers);
- }
- /**
- * Test without header.
- *
- * @return void
- */
- public function testWithoutHeader()
- {
- $response = new Response();
- $response = $response->withAddedHeader('Location', 'localhost');
- $response = $response->withAddedHeader('Accept', 'application/json');
- $response2 = $response->withoutHeader('Location');
- $headers = $response2->getHeaders();
- $expected = [
- 'Content-Type' => ['text/html; charset=UTF-8'],
- 'Accept' => ['application/json']
- ];
- $this->assertEquals($expected, $headers);
- }
- /**
- * Test get header.
- *
- * @return void
- */
- public function testGetHeader()
- {
- $response = new Response();
- $response = $response->withAddedHeader('Location', 'localhost');
- $result = $response->getHeader('Location');
- $this->assertEquals(['localhost'], $result);
- $result = $response->getHeader('location');
- $this->assertEquals(['localhost'], $result);
- $result = $response->getHeader('does-not-exist');
- $this->assertEquals([], $result);
- }
- /**
- * Test get header line.
- *
- * @return void
- */
- public function testGetHeaderLine()
- {
- $response = new Response();
- $headers = $response->getHeaderLine('Accept');
- $this->assertEquals('', $headers);
- $response = $response->withAddedHeader('Accept', 'application/json');
- $response = $response->withAddedHeader('Accept', 'application/xml');
- $result = $response->getHeaderLine('Accept');
- $expected = 'application/json,application/xml';
- $this->assertEquals($expected, $result);
- $result = $response->getHeaderLine('accept');
- $this->assertEquals($expected, $result);
- }
- /**
- * Test has header.
- *
- * @return void
- */
- public function testHasHeader()
- {
- $response = new Response();
- $response = $response->withAddedHeader('Location', 'localhost');
- $this->assertTrue($response->hasHeader('Location'));
- $this->assertTrue($response->hasHeader('location'));
- $this->assertTrue($response->hasHeader('locATIon'));
- $this->assertFalse($response->hasHeader('Accept'));
- $this->assertFalse($response->hasHeader('accept'));
- }
- /**
- * Tests __debugInfo
- *
- * @return void
- */
- public function testDebugInfo()
- {
- $response = new Response();
- $result = $response->__debugInfo();
- $expected = [
- 'status' => 200,
- 'contentType' => 'text/html',
- 'headers' => [
- 'Content-Type' => ['text/html; charset=UTF-8']
- ],
- 'file' => null,
- 'fileRange' => [],
- 'cookies' => new CookieCollection(),
- 'cacheDirectives' => [],
- 'body' => ''
- ];
- $this->assertEquals($expected, $result);
- }
- }
|