From f31ce371a0b515cadf752fe1efbd82337fbdd2b8 Mon Sep 17 00:00:00 2001 From: Ahmad Nassri Date: Sat, 7 Mar 2015 06:00:42 -0500 Subject: [PATCH] updating all tests and docs to mockbins.com --- README.md | 10 +- tests/Unirest/RequestTest.php | 253 +++++++++++++++------------------- 2 files changed, 115 insertions(+), 148 deletions(-) diff --git a/README.md b/README.md index 139050f..0e50a8b 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ So you're probably wondering how using Unirest makes creating requests in PHP ea $headers = array("Accept" => "application/json"); $body = array("foo" => "hellow", "bar" => "world"); -$response = Unirest\Request::post("http://httpbin.org/post", $headers, $body); +$response = Unirest\Request::post("http://mockbin.com/request", $headers, $body); $response->code; // HTTP Status code $response->headers; // Headers @@ -97,7 +97,7 @@ To upload files in a multipart form representation use the return value of `Unir $headers = array("Accept" => "application/json"); $body = array("file" => Unirest\File::add("/tmp/file.txt")); -$response = Unirest\Request::post("http://httpbin.org/post", $headers, $body); +$response = Unirest\Request::post("http://mockbin.com/request", $headers, $body); ``` ### Custom Entity Body @@ -107,7 +107,7 @@ Sending a custom body such as a JSON Object rather than a string or form style p $headers = array("Accept" => "application/json"); $body = json_encode(array("foo" => "hellow", "bar" => "world")); -$response = Unirest\Request::post("http://httpbin.org/post", $headers, $body); +$response = Unirest\Request::post("http://mockbin.com/request", $headers, $body); ``` ### Authentication @@ -151,7 +151,7 @@ Unirest\Request::proxyAuth('username', 'password', CURLAUTH_DIGEST); Previous versions of **Unirest** support *Basic Authentication* by providing the `username` and `password` arguments: ```php -$response = Unirest\Request::get("http://httpbin.org/get", null, null, "username", "password"); +$response = Unirest\Request::get("http://mockbin.com/request", null, null, "username", "password"); ``` **This has been deprecated, and will be completely removed in `v.3.0.0` please use the `Unirest\Request::auth()` method instead** @@ -194,7 +194,7 @@ You can set some advanced configuration to tune Unirest-PHP: #### Custom JSON Decode Flags Unirest uses PHP's [JSON Extension](http://php.net/manual/en/book.json.php) for automatically decoding JSON responses. -sometime you may want to return associative arrays, limit the depth of recursion, or use any of the [customization flags](http://php.net/manual/en/json.constants.php#constant.json-hex-tag). +sometime you may want to return associative arrays, limit the depth of recursion, or use any of the [customization flags](http://php.net/manual/en/json.constants.php). To do so, simply set the desired options using the `jsonOpts` request method: diff --git a/tests/Unirest/RequestTest.php b/tests/Unirest/RequestTest.php index ffb36b2..b10d2eb 100644 --- a/tests/Unirest/RequestTest.php +++ b/tests/Unirest/RequestTest.php @@ -23,126 +23,117 @@ public function testTimeoutFail() { Unirest\Request::timeout(1); - Unirest\Request::get('http://httpbin.org/delay/3'); + Unirest\Request::get('http://mockbin.com/delay/3000'); Unirest\Request::timeout(null); // Cleaning timeout for the other tests } +/* public function testTimeoutSuccess() { Unirest\Request::timeout(3); - $response = Unirest\Request::get('http://httpbin.org/delay/1'); + $response = Unirest\Request::get('http://mockbin.com/delay/2000'); $this->assertEquals(200, $response->code); Unirest\Request::timeout(null); // Cleaning timeout for the other tests } +*/ public function testDefaultHeader() { Unirest\Request::defaultHeader('Hello', 'custom'); - $response = Unirest\Request::get('http://httpbin.org/get'); - $this->assertEquals(200, $response->code); - $headers = $response->body->headers; - $properties = get_object_vars($headers); - $this->assertTrue(array_key_exists('Hello', $properties)); - $this->assertEquals('custom', $headers->Hello); - $response = Unirest\Request::get('http://httpbin.org/get'); + $response = Unirest\Request::get('http://mockbin.com/request'); $this->assertEquals(200, $response->code); - $headers = $response->body->headers; - $properties = get_object_vars($headers); - $this->assertTrue(array_key_exists('Hello', $properties)); - $this->assertEquals('custom', $headers->Hello); + $this->assertTrue(property_exists($response->body->headers, 'hello')); + $this->assertEquals('custom', $response->body->headers->hello); + Unirest\Request::clearDefaultHeaders(); - $response = Unirest\Request::get('http://httpbin.org/get'); + + $response = Unirest\Request::get('http://mockbin.com/request'); $this->assertEquals(200, $response->code); - $headers = $response->body->headers; - $properties = get_object_vars($headers); - $this->assertFalse(array_key_exists('Hello', $properties)); + $this->assertFalse(property_exists($response->body->headers, 'hello')); } public function testSetMashapeKey() { Unirest\Request::setMashapeKey('abcd'); - $response = Unirest\Request::get('http://httpbin.org/get'); + + $response = Unirest\Request::get('http://mockbin.com/request'); $this->assertEquals(200, $response->code); - $headers = $response->body->headers; - $properties = get_object_vars($headers); - $this->assertTrue(array_key_exists('X-Mashape-Key', $properties)); - $this->assertEquals('abcd', $headers->{'X-Mashape-Key'}); - $response = Unirest\Request::get('http://httpbin.org/get'); + $this->assertTrue(property_exists($response->body->headers, 'x-mashape-key')); + $this->assertEquals('abcd', $response->body->headers->{'x-mashape-key'}); + + // send another request + $response = Unirest\Request::get('http://mockbin.com/request'); $this->assertEquals(200, $response->code); - $headers = $response->body->headers; - $properties = get_object_vars($headers); - $this->assertTrue(array_key_exists('X-Mashape-Key', $properties)); - $this->assertEquals('abcd', $headers->{'X-Mashape-Key'}); + $this->assertTrue(property_exists($response->body->headers, 'x-mashape-key')); + $this->assertEquals('abcd', $response->body->headers->{'x-mashape-key'}); + Unirest\Request::clearDefaultHeaders(); - $response = Unirest\Request::get('http://httpbin.org/get'); + + $response = Unirest\Request::get('http://mockbin.com/request'); $this->assertEquals(200, $response->code); - $headers = $response->body->headers; - $properties = get_object_vars($headers); - $this->assertFalse(array_key_exists('X-Mashape-Key', $properties)); + $this->assertFalse(property_exists($response->body->headers, 'x-mashape-key')); } public function testGzip() { - $response = Unirest\Request::get('http://httpbin.org/gzip'); - $args = $response->body; - $this->assertEquals(true, $args->gzipped); + $response = Unirest\Request::get('http://mockbin.com/gzip/request'); + + $this->assertEquals('gzip', $response->headers['Content-Encoding']); } public function testBasicAuthenticationDeprecated() { - $response = Unirest\Request::get('http://httpbin.org/get', array(), array(), 'user', 'password'); - $headers = $response->body->headers; - $this->assertEquals('Basic dXNlcjpwYXNzd29yZA==', $headers->Authorization); + $response = Unirest\Request::get('http://mockbin.com/request', array(), array(), 'user', 'password'); + + $this->assertEquals('Basic dXNlcjpwYXNzd29yZA==', $response->body->headers->authorization); } public function testBasicAuthentication() { Unirest\Request::auth('user', 'password'); - $response = Unirest\Request::get('http://httpbin.org/get'); - $this->assertEquals('Basic dXNlcjpwYXNzd29yZA==', $response->body->headers->Authorization); + $response = Unirest\Request::get('http://mockbin.com/request'); + + $this->assertEquals('Basic dXNlcjpwYXNzd29yZA==', $response->body->headers->authorization); } public function testCustomHeaders() { - $response = Unirest\Request::get('http://httpbin.org/get', array( - 'user-agent' => 'ciao', + $response = Unirest\Request::get('http://mockbin.com/request', array( + 'user-agent' => 'unirest-php', )); $this->assertEquals(200, $response->code); - - $headers = $response->body->headers; - $this->assertEquals('ciao', $headers->{'User-Agent'}); + $this->assertEquals('unirest-php', $response->body->headers->{'user-agent'}); } // GET public function testGet() { - $response = Unirest\Request::get('http://httpbin.org/get?name=Mark', array( + $response = Unirest\Request::get('http://mockbin.com/request?name=Mark', array( 'Accept' => 'application/json' ), array( 'nick' => 'thefosk' )); $this->assertEquals(200, $response->code); - - $args = $response->body->args; - $this->assertEquals('Mark', $args->name); - $this->assertEquals('thefosk', $args->nick); + $this->assertEquals('GET', $response->body->method); + $this->assertEquals('Mark', $response->body->queryString->name); + $this->assertEquals('thefosk', $response->body->queryString->nick); } public function testGetMultidimensionalArray() { - $response = Unirest\Request::get('http://httpbin.org/get', array( + $response = Unirest\Request::get('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'key' => 'value', @@ -153,17 +144,15 @@ public function testGetMultidimensionalArray() )); $this->assertEquals(200, $response->code); - - $args = $response->body->args; - - $this->assertEquals('value', $args->key); - $this->assertEquals('item1', $args->{'items[0]'}); - $this->assertEquals('item2', $args->{'items[1]'}); + $this->assertEquals('GET', $response->body->method); + $this->assertEquals('value', $response->body->queryString->key); + $this->assertEquals('item1', $response->body->queryString->items[0]); + $this->assertEquals('item2', $response->body->queryString->items[1]); } public function testGetWithDots() { - $response = Unirest\Request::get('http://httpbin.org/get', array( + $response = Unirest\Request::get('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'user.name' => 'Mark', @@ -171,15 +160,14 @@ public function testGetWithDots() )); $this->assertEquals(200, $response->code); - - $args = $response->body->args; - $this->assertEquals('Mark', $args->{'user.name'}); - $this->assertEquals('thefosk', $args->nick); + $this->assertEquals('GET', $response->body->method); + $this->assertEquals('Mark', $response->body->queryString->{'user.name'}); + $this->assertEquals('thefosk', $response->body->queryString->nick); } public function testGetWithDotsAlt() { - $response = Unirest\Request::get('http://httpbin.org/get', array( + $response = Unirest\Request::get('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'user.name' => 'Mark Bond', @@ -187,69 +175,63 @@ public function testGetWithDotsAlt() )); $this->assertEquals(200, $response->code); - - $args = $response->body->args; - $this->assertEquals('Mark Bond', $args->{'user.name'}); - $this->assertEquals('thefosk', $args->nick); + $this->assertEquals('GET', $response->body->method); + $this->assertEquals('Mark Bond', $response->body->queryString->{'user.name'}); + $this->assertEquals('thefosk', $response->body->queryString->nick); } - public function testGetWithEqualSign() { - $response = Unirest\Request::get('http://httpbin.org/get', array( + $response = Unirest\Request::get('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'name' => 'Mark=Hello' )); $this->assertEquals(200, $response->code); - - $args = $response->body->args; - $this->assertEquals('Mark=Hello', $args->name); + $this->assertEquals('GET', $response->body->method); + $this->assertEquals('Mark=Hello', $response->body->queryString->name); } public function testGetWithEqualSignAlt() { - $response = Unirest\Request::get('http://httpbin.org/get', array( + $response = Unirest\Request::get('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'name' => 'Mark=Hello=John' )); $this->assertEquals(200, $response->code); - - $args = $response->body->args; - $this->assertEquals('Mark=Hello=John', $args->name); + $this->assertEquals('GET', $response->body->method); + $this->assertEquals('Mark=Hello=John', $response->body->queryString->name); } public function testGetWithComplexQuery() { - $response = Unirest\Request::get('http://httpbin.org/get?query=[{"type":"/music/album","name":null,"artist":{"id":"/en/bob_dylan"},"limit":3}]&cursor'); + $response = Unirest\Request::get('http://mockbin.com/request?query=[{"type":"/music/album","name":null,"artist":{"id":"/en/bob_dylan"},"limit":3}]&cursor'); $this->assertEquals(200, $response->code); - - $args = $response->body->args; - $this->assertEquals('', $args->cursor); - $this->assertEquals('[{"type":"/music/album","name":null,"artist":{"id":"/en/bob_dylan"},"limit":3}]', $args->query); + $this->assertEquals('GET', $response->body->method); + $this->assertEquals('', $response->body->queryString->cursor); + $this->assertEquals('[{"type":"/music/album","name":null,"artist":{"id":"/en/bob_dylan"},"limit":3}]', $response->body->queryString->query); } public function testGetArray() { - $response = Unirest\Request::get('http://httpbin.org/get', array(), array( + $response = Unirest\Request::get('http://mockbin.com/request', array(), array( 'name[0]' => 'Mark', 'name[1]' => 'John' )); $this->assertEquals(200, $response->code); - - $args = $response->body->args; - $this->assertEquals('Mark', $args->{'name[0]'}); - $this->assertEquals('John', $args->{'name[1]'}); + $this->assertEquals('GET', $response->body->method); + $this->assertEquals('Mark', $response->body->queryString->name[0]); + $this->assertEquals('John', $response->body->queryString->name[1]); } // POST public function testPost() { - $response = Unirest\Request::post('http://httpbin.org/post', array( + $response = Unirest\Request::post('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'name' => 'Mark', @@ -257,29 +239,27 @@ public function testPost() )); $this->assertEquals(200, $response->code); - - $form = $response->body->form; - $this->assertEquals('Mark', $form->name); - $this->assertEquals('thefosk', $form->nick); + $this->assertEquals('POST', $response->body->method); + $this->assertEquals('Mark', $response->body->postData->params->name); + $this->assertEquals('thefosk', $response->body->postData->params->nick); } public function testPostWithEqualSign() { - $response = Unirest\Request::post('http://httpbin.org/post', array( + $response = Unirest\Request::post('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'name' => 'Mark=Hello' )); $this->assertEquals(200, $response->code); - - $form = $response->body->form; - $this->assertEquals('Mark=Hello', $form->name); + $this->assertEquals('POST', $response->body->method); + $this->assertEquals('Mark=Hello', $response->body->postData->params->name); } public function testPostArray() { - $response = Unirest\Request::post('http://httpbin.org/post', array( + $response = Unirest\Request::post('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'name[0]' => 'Mark', @@ -287,16 +267,14 @@ public function testPostArray() )); $this->assertEquals(200, $response->code); - - $form = $response->body->form; - - $this->assertEquals('Mark', $form->{'name[0]'}); - $this->assertEquals('John', $form->{'name[1]'}); + $this->assertEquals('POST', $response->body->method); + $this->assertEquals('Mark', $response->body->postData->params->{'name[0]'}); + $this->assertEquals('John', $response->body->postData->params->{'name[1]'}); } public function testPostWithDots() { - $response = Unirest\Request::post('http://httpbin.org/post', array( + $response = Unirest\Request::post('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'user.name' => 'Mark', @@ -304,15 +282,14 @@ public function testPostWithDots() )); $this->assertEquals(200, $response->code); - - $form = $response->body->form; - $this->assertEquals('Mark', $form->{'user.name'}); - $this->assertEquals('thefosk', $form->nick); + $this->assertEquals('POST', $response->body->method); + $this->assertEquals('Mark', $response->body->postData->params->{'user.name'}); + $this->assertEquals('thefosk', $response->body->postData->params->nick); } public function testRawPost() { - $response = Unirest\Request::post('http://httpbin.org/post', array( + $response = Unirest\Request::post('http://mockbin.com/request', array( 'Accept' => 'application/json', 'Content-Type' => 'application/json' ), json_encode(array( @@ -320,15 +297,13 @@ public function testRawPost() ))); $this->assertEquals(200, $response->code); - - $json = $response->body->json; - - $this->assertEquals('Sam Sullivan', $json->author); + $this->assertEquals('POST', $response->body->method); + $this->assertEquals('Sam Sullivan', json_decode($response->body->postData->text)->author); } public function testPostMultidimensionalArray() { - $response = Unirest\Request::post('http://httpbin.org/post', array( + $response = Unirest\Request::post('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'key' => 'value', @@ -339,17 +314,16 @@ public function testPostMultidimensionalArray() )); $this->assertEquals(200, $response->code); - - $form = $response->body->form; - $this->assertEquals('value', $form->key); - $this->assertEquals('item1', $form->{'items[0]'}); - $this->assertEquals('item2', $form->{'items[1]'}); + $this->assertEquals('POST', $response->body->method); + $this->assertEquals('value', $response->body->postData->params->key); + $this->assertEquals('item1', $response->body->postData->params->{'items[0]'}); + $this->assertEquals('item2', $response->body->postData->params->{'items[1]'}); } // PUT public function testPut() { - $response = Unirest\Request::put('http://httpbin.org/put', array( + $response = Unirest\Request::put('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'name' => 'Mark', @@ -357,16 +331,15 @@ public function testPut() )); $this->assertEquals(200, $response->code); - - $form = $response->body->form; - $this->assertEquals('Mark', $form->name); - $this->assertEquals('thefosk', $form->nick); + $this->assertEquals('PUT', $response->body->method); + $this->assertEquals('Mark', $response->body->postData->params->name); + $this->assertEquals('thefosk', $response->body->postData->params->nick); } // PATCH public function testPatch() { - $response = Unirest\Request::patch('http://httpbin.org/patch', array( + $response = Unirest\Request::patch('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'name' => 'Mark', @@ -374,16 +347,15 @@ public function testPatch() )); $this->assertEquals(200, $response->code); - - $form = $response->body->form; - $this->assertEquals('Mark', $form->name); - $this->assertEquals('thefosk', $form->nick); + $this->assertEquals('PATCH', $response->body->method); + $this->assertEquals('Mark', $response->body->postData->params->name); + $this->assertEquals('thefosk', $response->body->postData->params->nick); } // DELETE public function testDelete() { - $response = Unirest\Request::delete('http://httpbin.org/delete', array( + $response = Unirest\Request::delete('http://mockbin.com/request', array( 'Accept' => 'application/json', 'Content-Type' => 'application/x-www-form-urlencoded' ), array( @@ -392,42 +364,37 @@ public function testDelete() )); $this->assertEquals(200, $response->code); - $data = $response->body->data; - $this->assertTrue(empty($data)); + $this->assertEquals('DELETE', $response->body->method); } // Upload public function testUpload() { - $response = Unirest\Request::post('http://httpbin.org/post', array( + $response = Unirest\Request::post('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'name' => 'Mark', 'file' => Unirest\File::add(UPLOAD_FIXTURE) )); - $this->assertEquals(200, $response->code); - - $files = $response->body->files; - $this->assertEquals('This is a test', $files->file); - $form = $response->body->form; - $this->assertEquals('Mark', $form->name); + $this->assertEquals(200, $response->code); + $this->assertEquals('POST', $response->body->method); + $this->assertEquals('Mark', $response->body->postData->params->name); + $this->assertEquals('This is a test', $response->body->postData->params->file); } public function testUploadIfFilePartOfData() { - $response = Unirest\Request::post('http://httpbin.org/post', array( + $response = Unirest\Request::post('http://mockbin.com/request', array( 'Accept' => 'application/json' ), array( 'name' => 'Mark', 'files[owl.gif]' => Unirest\File::add(UPLOAD_FIXTURE) )); - $this->assertEquals(200, $response->code); - //$files = $response->body->files; - //$this->assertEquals('This is a test', $files->file); - - $form = $response->body->form; - $this->assertEquals('Mark', $form->name); + $this->assertEquals(200, $response->code); + $this->assertEquals('POST', $response->body->method); + $this->assertEquals('Mark', $response->body->postData->params->name); + $this->assertEquals('This is a test', $response->body->postData->params->{'files[owl.gif]'}); } }