| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Http
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- // Read local configuration
- if (! defined('TESTS_ZEND_HTTP_CLIENT_BASEURI') &&
- is_readable('TestConfiguration.php')) {
- require_once 'TestConfiguration.php';
- }
- require_once 'Zend/Http/Client.php';
- require_once 'Zend/Uri/Http.php';
- /**
- * This Testsuite includes all Zend_Http_Client that require a working web
- * server to perform. It was designed to be extendable, so that several
- * test suites could be run against several servers, with different client
- * adapters and configurations.
- *
- * Note that $this->baseuri must point to a directory on a web server
- * containing all the files under the _files directory. You should symlink
- * or copy these files and set 'baseuri' properly.
- *
- * You can also set the proper constant in your test configuration file to
- * point to the right place.
- *
- * @category Zend
- * @package Zend_Http_Client
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Http
- * @group Zend_Http_Client
- */
- abstract class Zend_Http_Client_CommonHttpTests extends PHPUnit_Framework_TestCase
- {
- /**
- * The bast URI for this test, containing all files in the _files directory
- * Should be set in TestConfiguration.php or TestConfiguration.php.dist
- *
- * @var string
- */
- protected $baseuri;
- /**
- * Common HTTP client
- *
- * @var Zend_Http_Client
- */
- protected $client = null;
- /**
- * Common HTTP client adapter
- *
- * @var Zend_Http_Client_Adapter_Interface
- */
- protected $_adapter = null;
- /**
- * Configuration array
- *
- * @var array
- */
- protected $config = array(
- 'adapter' => 'Zend_Http_Client_Adapter_Socket'
- );
- /**
- * Set up the test case
- *
- */
- protected function setUp()
- {
- if (defined('TESTS_ZEND_HTTP_CLIENT_BASEURI') &&
- Zend_Uri_Http::check(TESTS_ZEND_HTTP_CLIENT_BASEURI)) {
- $this->baseuri = TESTS_ZEND_HTTP_CLIENT_BASEURI;
- if (substr($this->baseuri, -1) != '/') $this->baseuri .= '/';
- $name = $this->getName();
- if (($pos = strpos($name, ' ')) !== false) {
- $name = substr($name, 0, $pos);
- }
- $uri = $this->baseuri . $name . '.php';
- $this->_adapter = new $this->config['adapter'];
- $this->client = new Zend_Http_Client($uri, $this->config);
- $this->client->setAdapter($this->_adapter);
- } else {
- // Skip tests
- $this->markTestSkipped("Zend_Http_Client dynamic tests are not enabled in TestConfiguration.php");
- }
- }
- /**
- * Clean up the test environment
- *
- */
- protected function tearDown()
- {
- $this->client = null;
- $this->_adapter = null;
- }
- /**
- * Simple request tests
- */
- /**
- * Test simple requests
- *
- */
- public function testSimpleRequests()
- {
- $methods = array('GET', 'POST', 'OPTIONS', 'PUT', 'PATCH', 'DELETE');
- foreach ($methods as $method) {
- $res = $this->client->request($method);
- $this->assertEquals('Success', $res->getBody(), "HTTP {$method} request failed.");
- }
- }
- /**
- * Test we can get the last request as string
- *
- */
- public function testGetLastRequest()
- {
- $this->client->setUri($this->baseuri . 'testHeaders.php');
- $this->client->setParameterGet('someinput', 'somevalue');
- $this->client->setHeaders(array(
- 'X-Powered-By' => 'My Glorious Golden Ass',
- ));
- $res = $this->client->request(Zend_Http_Client::TRACE);
- if ($res->getStatus() == 405 || $res->getStatus() == 501) {
- $this->markTestSkipped("Server does not allow the TRACE method");
- }
- $this->assertEquals($this->client->getLastRequest(), $res->getBody(), 'Response body should be exactly like the last request');
- }
- /**
- * GET and POST parameters tests
- */
- /**
- * Test we can properly send GET parameters
- *
- * @dataProvider parameterArrayProvider
- */
- public function testGetData($params)
- {
- $this->client->setUri($this->client->getUri(true) . '?name=Arthur');
- $this->client->setParameterGet($params);
- $res = $this->client->request('GET');
- $this->assertEquals(serialize(array_merge(array('name' => 'Arthur'), $params)), $res->getBody());
- }
- /**
- * Test we can properly send POST parameters with
- * application/x-www-form-urlencoded content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testPostDataUrlEncoded($params)
- {
- $this->client->setUri($this->baseuri . 'testPostData.php');
- $this->client->setEncType(Zend_Http_Client::ENC_URLENCODED);
- $this->client->setParameterPost($params);
- $res = $this->client->request('POST');
- $this->assertEquals(serialize($params), $res->getBody(), "POST data integrity test failed");
- }
- /**
- * Test we can properly send PUT parameters with
- * application/x-www-form-urlencoded content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testPutDataUrlEncoded($params)
- {
- $this->client->setUri($this->baseuri . 'testPutData.php');
- $this->client->setEncType(Zend_Http_Client::ENC_URLENCODED);
- $this->client->setParameterPost($params);
- $res = $this->client->request('PUT');
- $this->assertEquals(serialize($params), $res->getBody(), "PUT data integrity test failed");
- }
- /**
- * Test we can properly send PUT parameters without
- * content type, relying on default content type (urlencoded)
- *
- * @dataProvider parameterArrayProvider
- */
- public function testPutDataDefault($params)
- {
- $this->client->setUri($this->baseuri . 'testPutData.php');
- // note that no content type is set
- $this->client->setParameterPost($params);
- $res = $this->client->request('PUT');
- $this->assertEquals(serialize($params), $res->getBody(), "PUT data integrity test failed for default content-type");
- }
- /**
- * Test we can properly send PATCH parameters with
- * application/x-www-form-urlencoded content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testPatchDataUrlEncoded($params)
- {
- $this->client->setUri($this->baseuri . 'testPatchData.php');
- $this->client->setEncType(Zend_Http_Client::ENC_URLENCODED);
- $this->client->setParameterPost($params);
- $res = $this->client->request('PATCH');
- $this->assertEquals(serialize($params), $res->getBody(), "PATCH data integrity test failed");
- }
- /**
- * Test we can properly send PATCH parameters without
- * content type, relying on default content type (urlencoded)
- *
- * @dataProvider parameterArrayProvider
- */
- public function testPatchDataDefault($params)
- {
- $this->client->setUri($this->baseuri . 'testPatchData.php');
- // note that no content type is set
- $this->client->setParameterPost($params);
- $res = $this->client->request('PATCH');
- $this->assertEquals(serialize($params), $res->getBody(), "PATCH data integrity test failed for default content-type");
- }
- /**
- * Test we can properly send OPTIONS parameters with
- * application/x-www-form-urlencoded content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testOptionsDataUrlEncoded($params)
- {
- $this->client->setUri($this->baseuri . 'testOptionsData.php');
- $this->client->setEncType(Zend_Http_Client::ENC_URLENCODED);
- $this->client->setParameterPost($params);
- $res = $this->client->request('OPTIONS');
- $this->assertEquals(serialize($params), $res->getBody(), "OPTIONS data integrity test failed");
- }
- /**
- * Test we can properly send OPTIONS parameters without
- * content type, relying on default content type (urlencoded)
- *
- * @dataProvider parameterArrayProvider
- */
- public function testOptionsDataDefault($params)
- {
- $this->client->setUri($this->baseuri . 'testOptionsData.php');
- // note that no content type is set
- $this->client->setParameterPost($params);
- $res = $this->client->request('OPTIONS');
- $this->assertEquals(serialize($params), $res->getBody(), "OPTIONS data integrity test failed for default content-type");
- }
- /**
- * Test we can properly send parameters with
- * application/x-www-form-urlencoded content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testDeleteDataUrlEncoded($params)
- {
- $this->client->setUri($this->baseuri . 'testDeleteData.php');
- $this->client->setEncType(Zend_Http_Client::ENC_URLENCODED);
- $this->client->setParameterPost($params);
- $res = $this->client->request('DELETE');
- $this->assertEquals(serialize($params), $res->getBody(), "DELETE data integrity test failed");
- }
- /**
- * Test we can properly send POST parameters with
- * multipart/form-data content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testPostDataMultipart($params)
- {
- $this->client->setUri($this->baseuri . 'testPostData.php');
- $this->client->setEncType(Zend_Http_Client::ENC_FORMDATA);
- $this->client->setParameterPost($params);
- $res = $this->client->request('POST');
- $this->assertEquals(serialize($params), $res->getBody(), "POST data integrity test failed");
- }
- /**
- * Test we can properly send PUT parameters with
- * multipart/form-data content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testPutDataMultipart($params)
- {
- $this->client->setUri($this->baseuri . 'testRawPutData.php');
- $this->client->setParameterPost($params);
- $this->client->setMethod(Zend_Http_Client::PUT);
- $this->client->setEncType(Zend_Http_Client::ENC_FORMDATA);
- $response = $this->client->request();
- $responseText = $response->getBody();
- $this->_checkPresence($responseText, $params);
- }
- /**
- * Test we can properly send PATCH parameters with
- * multipart/form-data content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testPatchDataMultipart($params)
- {
- $this->client->setUri($this->baseuri . 'testRawPatchData.php');
- $this->client->setParameterPost($params);
- $this->client->setMethod(Zend_Http_Client::PATCH);
- $this->client->setEncType(Zend_Http_Client::ENC_FORMDATA);
- $response = $this->client->request();
- $responseText = $response->getBody();
- $this->_checkPresence($responseText, $params);
- }
- /**
- * Test we can properly send OPTIONS parameters with
- * multipart/form-data content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testOptionsDataMultipart($params)
- {
- $this->client->setUri($this->baseuri . 'testRawOptionsData.php');
- $this->client->setParameterPost($params);
- $this->client->setMethod(Zend_Http_Client::OPTIONS);
- $this->client->setEncType(Zend_Http_Client::ENC_FORMDATA);
- $response = $this->client->request();
- $responseText = $response->getBody();
- $this->_checkPresence($responseText, $params);
- }
- /**
- * Checks the presence of keys (non-numeric only) and values
- * in the raw form data reponse for a PUT or DELETE request recursively
- *
- * An example response (I do not know of a better way to check it):
- * -----ZENDHTTPCLIENT-c63973519a6bb3ec45495876f5e15828
- * Content-Disposition: form-data; name="quest"
- *
- * To seek the holy grail
- * -----ZENDHTTPCLIENT-c63973519a6bb3ec45495876f5e15828
- * Content-Disposition: form-data; name="YourMother"
- *
- * Was a hamster
- * -----ZENDHTTPCLIENT-c63973519a6bb3ec45495876f5e15828
- * Content-Disposition: form-data; name="specialChars"
- *
- * <>$+ &?=[]^%
- * -----ZENDHTTPCLIENT-c63973519a6bb3ec45495876f5e15828
- * Content-Disposition: form-data; name="array[]"
- *
- * firstItem
- * -----ZENDHTTPCLIENT-c63973519a6bb3ec45495876f5e15828
- * Content-Disposition: form-data; name="array[]"
- *
- * secondItem
- * -----ZENDHTTPCLIENT-c63973519a6bb3ec45495876f5e15828
- * Content-Disposition: form-data; name="array[]"
- *
- * 3rdItem
- * -----ZENDHTTPCLIENT-c63973519a6bb3ec45495876f5e15828--
- * @param string $responseText
- * @param string|integer|array $needle
- */
- protected function _checkPresence($responseText, $needle)
- {
- if (is_array($needle)) {
- foreach ($needle as $key => $value) {
- // treat array values recursively, let them re-enter this function
- if (is_array($value)) {
- $this->_checkPresence($responseText, $value);
- continue;
- }
- // continue with non array keys and values
- // numeric keys will not be present in the response
- if (!is_int($key)) {
- $this->assertGreaterThan(
- 0,
- strpos($responseText, $key),
- "key '$key' is missing from the reponse for raw multipart PUT or DELETE request"
- );
- }
- $this->assertGreaterThan(
- 0,
- strpos($responseText, $value),
- "value '$value' is missing from the reponse for raw multipart PUT or DELETE request"
- );
- }
- }
- }
- /**
- * Test we can properly send DELETE parameters with
- * multipart/form-data content type
- *
- * @dataProvider parameterArrayProvider
- */
- public function testDeleteDataMultipart($params)
- {
- $this->client->setUri($this->baseuri . 'testRawDeleteData.php');
- $this->client->setParameterPost($params);
- $this->client->setMethod(Zend_Http_Client::DELETE);
- $this->client->setEncType(Zend_Http_Client::ENC_FORMDATA);
- $response = $this->client->request();
- $responseText = $response->getBody();
- $this->_checkPresence($responseText, $params);
- }
- /**
- * Test using raw HTTP POST data
- *
- */
- public function testRawPostData()
- {
- $data = "Chuck Norris never wet his bed as a child. The bed wet itself out of fear.";
- $res = $this->client->setRawData($data, 'text/html')->request('POST');
- $this->assertEquals($data, $res->getBody(), 'Response body does not contain the expected data');
- }
- /**
- * Test using raw HTTP PUT data
- *
- * @group ZF-11030
- *
- */
- public function testRawPutData()
- {
- $data = "Chuck Norris never wet his bed as a child. The bed wet itself out of fear.";
- $this->client->setUri($this->baseuri . 'testRawPutData.php');
- $this->client->setRawData($data, 'text/plain');
- $this->client->setMethod(Zend_Http_Client::PUT);
- $response = $this->client->request();
- $this->assertEquals($data, $response->getBody(), 'Response body does not contain the expected data');
- }
- /**
- * Test using raw HTTP DELETE data
- *
- * @group ZF-11030
- *
- */
- public function testRawDeleteData()
- {
- $data = "Chuck Norris never wet his bed as a child. The bed wet itself out of fear.";
- $this->client->setUri($this->baseuri . 'testRawDeleteData.php');
- $this->client->setRawData($data, 'text/plain');
- $this->client->setMethod(Zend_Http_Client::DELETE);
- $response = $this->client->request();
- $this->assertEquals($data, $response->getBody(), 'Response body does not contain the expected data');
- }
- /**
- * Make sure we can reset the parameters between consecutive requests
- *
- */
- public function testResetParameters()
- {
- $params = array(
- 'quest' => 'To seek the holy grail',
- 'YourMother' => 'Was a hamster',
- 'specialChars' => '<>$+ &?=[]^%',
- 'array' => array('firstItem', 'secondItem', '3rdItem')
- );
- $headers = array("X-Foo" => "bar");
- $this->client->setParameterPost($params);
- $this->client->setParameterGet($params);
- $this->client->setHeaders($headers);
- $res = $this->client->request('POST');
- $this->assertContains(serialize($params) . "\n" . serialize($params),
- $res->getBody(), "returned body does not contain all GET and POST parameters (it should!)");
- $this->client->resetParameters();
- $res = $this->client->request('POST');
- $this->assertNotContains(serialize($params), $res->getBody(),
- "returned body contains GET or POST parameters (it shouldn't!)");
- $this->assertContains($headers["X-Foo"], $this->client->getHeader("X-Foo"), "Header not preserved by reset");
- $this->client->resetParameters(true);
- $this->assertNull($this->client->getHeader("X-Foo"), "Header preserved by reset(true)");
- }
- /**
- * Test parameters get reset when we unset them
- *
- */
- public function testParameterUnset()
- {
- $this->client->setUri($this->baseuri . 'testResetParameters.php');
- $gparams = array (
- 'cheese' => 'camambert',
- 'beer' => 'jever pilnsen',
- );
- $pparams = array (
- 'from' => 'bob',
- 'to' => 'alice'
- );
- $this->client->setParameterGet($gparams)->setParameterPost($pparams);
- // Remove some parameters
- $this->client->setParameterGet('cheese', null)->setParameterPost('to', null);
- $res = $this->client->request('POST');
- $this->assertNotContains('cheese', $res->getBody(), 'The "cheese" GET parameter was expected to be unset');
- $this->assertNotContains('alice', $res->getBody(), 'The "to" POST parameter was expected to be unset');
- }
- /**
- * Header Tests
- */
- /**
- * Make sure we can set a single header
- *
- */
- public function testHeadersSingle()
- {
- $this->client->setUri($this->baseuri . 'testHeaders.php');
- $headers = array(
- 'Accept-encoding' => 'gzip,deflate',
- 'X-baz' => 'Foo',
- 'X-powered-by' => 'A large wooden badger'
- );
- foreach ($headers as $key => $val) {
- $this->client->setHeaders($key, $val);
- }
- $acceptHeader = "Accept: text/xml,text/html,*/*";
- $this->client->setHeaders($acceptHeader);
- $res = $this->client->request('TRACE');
- if ($res->getStatus() == 405 || $res->getStatus() == 501) {
- $this->markTestSkipped("Server does not allow the TRACE method");
- }
- $body = strtolower($res->getBody());
- foreach ($headers as $key => $val)
- $this->assertContains(strtolower("$key: $val"), $body);
- $this->assertContains(strtolower($acceptHeader), $body);
- }
- /**
- * Test we can set an array of headers
- *
- */
- public function testHeadersArray()
- {
- $this->client->setUri($this->baseuri . 'testHeaders.php');
- $headers = array(
- 'Accept-encoding' => 'gzip,deflate',
- 'X-baz' => 'Foo',
- 'X-powered-by' => 'A large wooden badger',
- 'Accept: text/xml,text/html,*/*'
- );
- $this->client->setHeaders($headers);
- $res = $this->client->request('TRACE');
- if ($res->getStatus() == 405 || $res->getStatus() == 501) {
- $this->markTestSkipped("Server does not allow the TRACE method");
- }
- $body = strtolower($res->getBody());
- foreach ($headers as $key => $val) {
- if (is_string($key)) {
- $this->assertContains(strtolower("$key: $val"), $body);
- } else {
- $this->assertContains(strtolower($val), $body);
- }
- }
- }
- /**
- * Test we can set a set of values for one header
- *
- */
- public function testMultipleHeader()
- {
- $this->client->setUri($this->baseuri . 'testHeaders.php');
- $headers = array(
- 'Accept-encoding' => 'gzip,deflate',
- 'X-baz' => 'Foo',
- 'X-powered-by' => array(
- 'A large wooden badger',
- 'My Shiny Metal Ass',
- 'Dark Matter'
- ),
- 'Cookie' => array(
- 'foo=bar',
- 'baz=waka'
- )
- );
- $this->client->setHeaders($headers);
- $res = $this->client->request('TRACE');
- if ($res->getStatus() == 405 || $res->getStatus() == 501) {
- $this->markTestSkipped("Server does not allow the TRACE method");
- }
- $body = strtolower($res->getBody());
- foreach ($headers as $key => $val) {
- if (is_array($val))
- $val = implode(', ', $val);
- $this->assertContains(strtolower("$key: $val"), $body);
- }
- }
- /**
- * Redirection tests
- */
- /**
- * Test the client properly redirects in default mode
- *
- */
- public function testRedirectDefault()
- {
- $this->client->setUri($this->baseuri . 'testRedirections.php');
- // Set some parameters
- $this->client->setParameterGet('swallow', 'african');
- $this->client->setParameterPost('Camelot', 'A silly place');
- // Request
- $res = $this->client->request('POST');
- $this->assertEquals(3, $this->client->getRedirectionsCount(), 'Redirection counter is not as expected');
- // Make sure the body does *not* contain the set parameters
- $this->assertNotContains('swallow', $res->getBody());
- $this->assertNotContains('Camelot', $res->getBody());
- }
- /**
- * Make sure the client properly redirects in strict mode
- *
- */
- public function testRedirectStrict()
- {
- $this->client->setUri($this->baseuri . 'testRedirections.php');
- // Set some parameters
- $this->client->setParameterGet('swallow', 'african');
- $this->client->setParameterPost('Camelot', 'A silly place');
- // Set strict redirections
- $this->client->setConfig(array('strictredirects' => true));
- // Request
- $res = $this->client->request('POST');
- $this->assertEquals(3, $this->client->getRedirectionsCount(), 'Redirection counter is not as expected');
- // Make sure the body *does* contain the set parameters
- $this->assertContains('swallow', $res->getBody());
- $this->assertContains('Camelot', $res->getBody());
- }
- /**
- * Make sure redirections stop when limit is exceeded
- *
- */
- public function testMaxRedirectsExceeded()
- {
- $this->client->setUri($this->baseuri . 'testRedirections.php');
- // Set some parameters
- $this->client->setParameterGet('swallow', 'african');
- $this->client->setParameterPost('Camelot', 'A silly place');
- // Set lower max redirections
- // Try with strict redirections first
- $this->client->setConfig(array('strictredirects' => true, 'maxredirects' => 2));
- $res = $this->client->request('POST');
- $this->assertTrue($res->isRedirect(),
- "Last response was not a redirection as expected. Response code: {$res->getStatus()}. Redirections counter: {$this->client->getRedirectionsCount()} (when strict redirects are on)");
- // Then try with normal redirections
- $this->client->setParameterGet('redirection', '0');
- $this->client->setConfig(array('strictredirects' => false));
- $res = $this->client->request('POST');
- $this->assertTrue($res->isRedirect(),
- "Last response was not a redirection as expected. Response code: {$res->getStatus()}. Redirections counter: {$this->client->getRedirectionsCount()} (when strict redirects are off)");
- }
- /**
- * Test we can properly redirect to an absolute path (not full URI)
- *
- */
- public function testAbsolutePathRedirect()
- {
- $this->client->setUri($this->baseuri . 'testRelativeRedirections.php');
- $this->client->setParameterGet('redirect', 'abpath');
- $this->client->setConfig(array('maxredirects' => 1));
- // Get the host and port part of our baseuri
- $uri = $this->client->getUri()->getScheme() . '://' . $this->client->getUri()->getHost() . ':' .
- $this->client->getUri()->getPort();
- $res = $this->client->request('GET');
- $this->assertEquals("{$uri}/path/to/fake/file.ext?redirect=abpath", $this->client->getUri(true),
- "The new location is not as expected: {$this->client->getUri(true)}");
- }
- /**
- * Test we can properly redirect to a relative path
- *
- */
- public function testRelativePathRedirect()
- {
- $this->client->setUri($this->baseuri . 'testRelativeRedirections.php');
- $this->client->setParameterGet('redirect', 'relpath');
- $this->client->setConfig(array('maxredirects' => 1));
- // Set the new expected URI
- $uri = clone $this->client->getUri();
- $uri->setPath(rtrim(dirname($uri->getPath()), '/') . '/path/to/fake/file.ext');
- $uri = $uri->__toString();
- $res = $this->client->request('GET');
- $this->assertEquals("{$uri}?redirect=relpath", $this->client->getUri(true),
- "The new location is not as expected: {$this->client->getUri(true)}");
- }
- /**
- * HTTP Authentication Tests
- *
- */
- /**
- * Test we can properly use Basic HTTP authentication
- *
- */
- public function testHttpAuthBasic()
- {
- $this->client->setUri($this->baseuri. 'testHttpAuth.php');
- $this->client->setParameterGet(array(
- 'user' => 'alice',
- 'pass' => 'secret',
- 'method' => 'Basic'
- ));
- // First - fail password
- $this->client->setAuth('alice', 'wrong');
- $res = $this->client->request();
- $this->assertEquals(401, $res->getStatus(), 'Expected HTTP 401 response was not recieved');
- // Now use good password
- $this->client->setAuth('alice', 'secret');
- $res = $this->client->request();
- $this->assertEquals(200, $res->getStatus(), 'Expected HTTP 200 response was not recieved');
- }
- /**
- * Test that we can properly use Basic HTTP authentication by specifying username and password
- * in the URI
- *
- */
- public function testHttpAuthBasicWithCredentialsInUri()
- {
- $uri = str_replace('http://', 'http://%s:%s@', $this->baseuri) . 'testHttpAuth.php';
- $this->client->setParameterGet(array(
- 'user' => 'alice',
- 'pass' => 'secret',
- 'method' => 'Basic'
- ));
- // First - fail password
- $this->client->setUri(sprintf($uri, 'alice', 'wrong'));
- $res = $this->client->request();
- $this->assertEquals(401, $res->getStatus(), 'Expected HTTP 401 response was not recieved');
- // Now use good password
- $this->client->setUri(sprintf($uri, 'alice', 'secret'));
- $res = $this->client->request();
- $this->assertEquals(200, $res->getStatus(), 'Expected HTTP 200 response was not recieved');
- }
- /**
- * Test we can unset HTTP authentication
- *
- */
- public function testCancelAuth()
- {
- $this->client->setUri($this->baseuri. 'testHttpAuth.php');
- // Set auth and cancel it
- $this->client->setAuth('alice', 'secret');
- $this->client->setAuth(false);
- $res = $this->client->request();
- $this->assertEquals(401, $res->getStatus(), 'Expected HTTP 401 response was not recieved');
- $this->assertNotContains('alice', $res->getBody(), "Body contains the user name, but it shouldn't");
- $this->assertNotContains('secret', $res->getBody(), "Body contains the password, but it shouldn't");
- }
- /**
- * Test that we can unset HTTP authentication when credentials is specified in the URI
- *
- */
- public function testCancelAuthWithCredentialsInUri()
- {
- $uri = str_replace('http://', 'http://%s:%s@', $this->baseuri) . 'testHttpAuth.php';
- // Set auth and cancel it
- $this->client->setUri(sprintf($uri, 'alice', 'secret'));
- $this->client->setAuth(false);
- $res = $this->client->request();
- $this->assertEquals(401, $res->getStatus(), 'Expected HTTP 401 response was not recieved');
- $this->assertNotContains('alice', $res->getBody(), "Body contains the user name, but it shouldn't");
- $this->assertNotContains('secret', $res->getBody(), "Body contains the password, but it shouldn't");
- }
- /**
- * Cookie and CookieJar Tests
- *
- */
- /**
- * Test we can set string cookies with no jar
- *
- */
- public function testCookiesStringNoJar()
- {
- $this->client->setUri($this->baseuri. 'testCookies.php');
- $cookies = array(
- 'name' => 'value',
- 'cookie' => 'crumble'
- );
- foreach ($cookies as $k => $v) {
- $this->client->setCookie($k, $v);
- }
- $res = $this->client->request();
- $this->assertEquals($res->getBody(), serialize($cookies), 'Response body does not contain the expected cookies');
- }
- /**
- * Make sure we can set object cookies with no jar
- *
- */
- public function testSetCookieObjectNoJar()
- {
- $this->client->setUri($this->baseuri. 'testCookies.php');
- $refuri = $this->client->getUri();
- $cookies = array(
- Zend_Http_Cookie::fromString('chocolate=chips', $refuri),
- Zend_Http_Cookie::fromString('crumble=apple', $refuri)
- );
- $strcookies = array();
- foreach ($cookies as $c) {
- $this->client->setCookie($c);
- $strcookies[$c->getName()] = $c->getValue();
- }
- $res = $this->client->request();
- $this->assertEquals($res->getBody(), serialize($strcookies), 'Response body does not contain the expected cookies');
- }
- /**
- * Make sure we can set an array of object cookies
- *
- */
- public function testSetCookieObjectArray()
- {
- $this->client->setUri($this->baseuri. 'testCookies.php');
- $refuri = $this->client->getUri();
- $cookies = array(
- Zend_Http_Cookie::fromString('chocolate=chips', $refuri),
- Zend_Http_Cookie::fromString('crumble=apple', $refuri),
- Zend_Http_Cookie::fromString('another=cookie', $refuri)
- );
- $this->client->setCookie($cookies);
- $strcookies = array();
- foreach ($cookies as $c) {
- $strcookies[$c->getName()] = $c->getValue();
- }
- $res = $this->client->request();
- $this->assertEquals($res->getBody(), serialize($strcookies), 'Response body does not contain the expected cookies');
- }
- /**
- * Make sure we can set an array of string cookies
- *
- */
- public function testSetCookieStringArray()
- {
- $this->client->setUri($this->baseuri. 'testCookies.php');
- $cookies = array(
- 'chocolate' => 'chips',
- 'crumble' => 'apple',
- 'another' => 'cookie'
- );
- $this->client->setCookie($cookies);
- $res = $this->client->request();
- $this->assertEquals($res->getBody(), serialize($cookies), 'Response body does not contain the expected cookies');
- }
- /**
- * Make sure we can set cookie objects with a jar
- *
- */
- public function testSetCookieObjectJar()
- {
- $this->client->setUri($this->baseuri. 'testCookies.php');
- $this->client->setCookieJar();
- $refuri = $this->client->getUri();
- $cookies = array(
- Zend_Http_Cookie::fromString('chocolate=chips', $refuri),
- Zend_Http_Cookie::fromString('crumble=apple', $refuri)
- );
- $strcookies = array();
- foreach ($cookies as $c) {
- $this->client->setCookie($c);
- $strcookies[$c->getName()] = $c->getValue();
- }
- $res = $this->client->request();
- $this->assertEquals($res->getBody(), serialize($strcookies), 'Response body does not contain the expected cookies');
- }
- /**
- * File Upload Tests
- *
- */
- /**
- * Test we can upload raw data as a file
- *
- */
- public function testUploadRawData()
- {
- if (!ini_get('file_uploads')) {
- $this->markTestSkipped('File uploads disabled.');
- }
- $this->client->setUri($this->baseuri. 'testUploads.php');
- $rawdata = file_get_contents(__FILE__);
- $this->client->setFileUpload('myfile.txt', 'uploadfile', $rawdata, 'text/plain');
- $res = $this->client->request('POST');
- $body = 'uploadfile myfile.txt text/plain ' . strlen($rawdata) . "\n";
- $this->assertEquals($body, $res->getBody(), 'Response body does not include expected upload parameters');
- }
- /**
- * Test we can upload an existing file
- *
- */
- public function testUploadLocalFile()
- {
- if (!ini_get('file_uploads')) {
- $this->markTestSkipped('File uploads disabled.');
- }
- $this->client->setUri($this->baseuri. 'testUploads.php');
- $this->client->setFileUpload(__FILE__, 'uploadfile', null, 'text/x-foo-bar');
- $res = $this->client->request('POST');
- $size = filesize(__FILE__);
- $body = "uploadfile " . basename(__FILE__) . " text/x-foo-bar $size\n";
- $this->assertEquals($body, $res->getBody(), 'Response body does not include expected upload parameters');
- }
- public function testUploadLocalDetectMime()
- {
- if (!ini_get('file_uploads')) {
- $this->markTestSkipped('File uploads disabled.');
- }
- $detect = null;
- if (function_exists('finfo_file')) {
- $f = @finfo_open(FILEINFO_MIME);
- if ($f) $detect = 'finfo';
- } elseif (function_exists('mime_content_type')) {
- if (mime_content_type(__FILE__)) {
- $detect = 'mime_magic';
- }
- }
- if (! $detect) {
- $this->markTestSkipped('No MIME type detection capability (fileinfo or mime_magic extensions) is available');
- }
- $file = dirname(realpath(__FILE__)) . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR . 'staticFile.jpg';
- $this->client->setUri($this->baseuri. 'testUploads.php');
- $this->client->setFileUpload($file, 'uploadfile');
- $res = $this->client->request('POST');
- $size = filesize($file);
- $body = "uploadfile " . basename($file) . " image/jpeg $size\n";
- $this->assertEquals($body, $res->getBody(), 'Response body does not include expected upload parameters (detect: ' . $detect . ')');
- }
- public function testUploadNameWithSpecialChars()
- {
- if (!ini_get('file_uploads')) {
- $this->markTestSkipped('File uploads disabled.');
- }
- $this->client->setUri($this->baseuri. 'testUploads.php');
- $rawdata = file_get_contents(__FILE__);
- $this->client->setFileUpload('/some strage/path%/with[!@#$&]/myfile.txt', 'uploadfile', $rawdata, 'text/plain');
- $res = $this->client->request('POST');
- $body = 'uploadfile myfile.txt text/plain ' . strlen($rawdata) . "\n";
- $this->assertEquals($body, $res->getBody(), 'Response body does not include expected upload parameters');
- }
- public function testStaticLargeFileDownload()
- {
- $this->client->setUri($this->baseuri . 'staticFile.jpg');
- $got = $this->client->request()->getBody();
- $expected = $this->_getTestFileContents('staticFile.jpg');
- $this->assertEquals($expected, $got, 'Downloaded file does not seem to match!');
- }
- /**
- * Test that one can upload multiple files with the same form name, as an
- * array
- *
- * @link http://framework.zend.com/issues/browse/ZF-5744
- */
- public function testMutipleFilesWithSameFormNameZF5744()
- {
- if (!ini_get('file_uploads')) {
- $this->markTestSkipped('File uploads disabled.');
- }
- $rawData = 'Some test raw data here...';
- $this->client->setUri($this->baseuri . 'testUploads.php');
- $files = array('file1.txt', 'file2.txt', 'someotherfile.foo');
- $expectedBody = '';
- foreach($files as $filename) {
- $this->client->setFileUpload($filename, 'uploadfile[]', $rawData, 'text/plain');
- $expectedBody .= "uploadfile $filename text/plain " . strlen($rawData) . "\n";
- }
- $res = $this->client->request('POST');
- $this->assertEquals($expectedBody, $res->getBody(), 'Response body does not include expected upload parameters');
- }
- /**
- * Test that lines that might be evaluated as boolean false do not break
- * the reading prematurely.
- *
- * @link http://framework.zend.com/issues/browse/ZF-4238
- */
- public function testZF4238FalseLinesInResponse()
- {
- $this->client->setUri($this->baseuri . 'ZF4238-zerolineresponse.txt');
- $got = $this->client->request()->getBody();
- $expected = $this->_getTestFileContents('ZF4238-zerolineresponse.txt');
- $this->assertEquals($expected, $got);
- }
- public function testStreamResponse()
- {
- if(!($this->client->getAdapter() instanceof Zend_Http_Client_Adapter_Stream)) {
- $this->markTestSkipped('Current adapter does not support streaming');
- return;
- }
- $this->client->setUri($this->baseuri . 'staticFile.jpg');
- $this->client->setStream();
- $response = $this->client->request();
- $this->assertTrue($response instanceof Zend_Http_Response_Stream, 'Request did not return stream response!');
- $this->assertTrue(is_resource($response->getStream()), 'Request does not contain stream!');
- $stream_name = $response->getStreamName();
- $stream_read = stream_get_contents($response->getStream());
- $file_read = file_get_contents($stream_name);
- $expected = $this->_getTestFileContents('staticFile.jpg');
- $this->assertEquals($expected, $stream_read, 'Downloaded stream does not seem to match!');
- $this->assertEquals($expected, $file_read, 'Downloaded file does not seem to match!');
- }
- public function testStreamResponseBody()
- {
- if(!($this->client->getAdapter() instanceof Zend_Http_Client_Adapter_Stream)) {
- $this->markTestSkipped('Current adapter does not support streaming');
- return;
- }
- $this->client->setUri($this->baseuri . 'staticFile.jpg');
- $this->client->setStream();
- $response = $this->client->request();
- $this->assertTrue($response instanceof Zend_Http_Response_Stream, 'Request did not return stream response!');
- $this->assertTrue(is_resource($response->getStream()), 'Request does not contain stream!');
- $body = $response->getBody();
- $expected = $this->_getTestFileContents('staticFile.jpg');
- $this->assertEquals($expected, $body, 'Downloaded stream does not seem to match!');
- }
- public function testStreamResponseNamed()
- {
- if(!($this->client->getAdapter() instanceof Zend_Http_Client_Adapter_Stream)) {
- $this->markTestSkipped('Current adapter does not support streaming');
- return;
- }
- $this->client->setUri($this->baseuri . 'staticFile.jpg');
- $outfile = tempnam(sys_get_temp_dir(), "outstream");
- $this->client->setStream($outfile);
- $response = $this->client->request();
- $this->assertTrue($response instanceof Zend_Http_Response_Stream, 'Request did not return stream response!');
- $this->assertTrue(is_resource($response->getStream()), 'Request does not contain stream!');
- $this->assertEquals($outfile, $response->getStreamName());
- $stream_read = stream_get_contents($response->getStream());
- $file_read = file_get_contents($outfile);
- $expected = $this->_getTestFileContents('staticFile.jpg');
- $this->assertEquals($expected, $stream_read, 'Downloaded stream does not seem to match!');
- $this->assertEquals($expected, $file_read, 'Downloaded file does not seem to match!');
- }
- public function testStreamRequest()
- {
- if(!($this->client->getAdapter() instanceof Zend_Http_Client_Adapter_Stream)) {
- $this->markTestSkipped('Current adapter does not support streaming');
- return;
- }
- $data = fopen(dirname(realpath(__FILE__)) . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR . 'staticFile.jpg', "r");
- $res = $this->client->setRawData($data, 'image/jpeg')->request('PUT');
- $expected = $this->_getTestFileContents('staticFile.jpg');
- $this->assertEquals($expected, $res->getBody(), 'Response body does not contain the expected data');
- }
- /**
- * Test that we can deal with double Content-Length headers
- *
- * @link http://framework.zend.com/issues/browse/ZF-9404
- */
- public function testZF9404DoubleContentLengthHeader()
- {
- $this->client->setUri($this->baseuri . 'ZF9404-doubleContentLength.php');
- $expect = filesize(dirname(realpath(__FILE__)) . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR . 'ZF9404-doubleContentLength.php');
- $response = $this->client->request();
- if (! $response->isSuccessful()) {
- throw new ErrorException("Error requesting test URL");
- }
- $clen = $response->getHeader('content-length');
- if (! (is_array($clen))) {
- $this->markTestSkipped("Didn't get multiple Content-length headers");
- }
- $this->assertEquals($expect, strlen($response->getBody()));
- }
- /**
- * @group ZF-10645
- */
- public function testPutRequestsHonorSpecifiedContentType()
- {
- $this->client->setUri($this->baseuri . 'ZF10645-PutContentType.php');
- $this->client->setMethod(Zend_Http_Client::PUT);
- $data = array('foo' => 'bar');
- $this->client->setRawData(http_build_query($data), 'text/html; charset=ISO-8859-1');
- $response = $this->client->request();
- $request = $this->client->getLastRequest();
- $this->assertContains('text/html; charset=ISO-8859-1', $request, $request);
- $this->assertContains('REQUEST_METHOD: PUT', $response->getBody(), $response->getBody());
- }
- /**
- * @group ZF-11418
- */
- public function testMultiplePuts()
- {
- $this->client->setUri($this->baseuri . 'ZF10645-PutContentType.php');
- $data= 'test';
- $this->client->setRawData($data, 'text/plain');
- $this->client->setMethod(Zend_Http_Client::PUT);
- $response = $this->client->request();
- $this->assertContains('REQUEST_METHOD: PUT', $response->getBody(), $response->getBody());
- $this->client->resetParameters(true);
- $this->client->setUri($this->baseuri . 'ZF10645-PutContentType.php');
- $this->client->setMethod(Zend_Http_Client::PUT);
- $response = $this->client->request();
- $request= $this->client->getLastRequest();
- $this->assertNotContains('Content-Type: text/plain', $request);
- }
- /**
- * @group ZF-11598
- */
- public function testGetAdapterWithoutSet()
- {
- $client = new Zend_Http_Client(null, $this->config);
- $adapter = $client->getAdapter();
- $this->assertTrue(!empty($adapter));
- }
- /**
- * Internal helpder function to get the contents of test files
- *
- * @param string $file
- * @return string
- */
- protected function _getTestFileContents($file)
- {
- return file_get_contents(dirname(realpath(__FILE__)) . DIRECTORY_SEPARATOR .
- '_files' . DIRECTORY_SEPARATOR . $file);
- }
- /**
- * Data provider for complex, nesting parameter arrays
- *
- * @return array
- */
- public static function parameterArrayProvider()
- {
- return array(
- array(
- array(
- 'quest' => 'To seek the holy grail',
- 'YourMother' => 'Was a hamster',
- 'specialChars' => '<>$+ &?=[]^%',
- 'array' => array('firstItem', 'secondItem', '3rdItem')
- )
- ),
- array(
- array(
- 'someData' => array(
- "1",
- "2",
- 'key' => 'value',
- 'nesting' => array(
- 'a' => 'AAA',
- 'b' => 'BBB'
- )
- ),
- 'someOtherData' => array('foo', 'bar')
- )
- ),
- array(
- array(
- 'foo1' => 'bar',
- 'foo2' => array('baz', 'w00t')
- )
- )
- );
- }
- /**
- * Data provider for invalid configuration containers
- *
- * @return array
- */
- public static function invalidConfigProvider()
- {
- return array(
- array(false),
- array('foo => bar'),
- array(null),
- array(new stdClass),
- array(55)
- );
- }
- }
|