Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f04b42e75e | ||
|
|
32c1a9fef0 | ||
|
|
2b5b349036 | ||
|
|
1017f14ef5 | ||
|
|
99c6975f23 | ||
|
|
f257217434 | ||
|
|
c9c0a85250 | ||
|
|
3e375515fe | ||
|
|
b6fb76ce12 | ||
|
|
5926846300 | ||
|
|
feae18f980 | ||
|
|
b0df287d64 | ||
|
|
4221ee5138 | ||
|
|
ec5828c8aa | ||
|
|
0293eb258c | ||
|
|
a1ed45be55 | ||
|
|
8da79e7898 | ||
|
|
217b436124 | ||
|
|
d508bd9628 | ||
|
|
7116894dad | ||
|
|
f31ce371a0 |
@@ -26,3 +26,11 @@ matrix:
|
|||||||
fast_finish: true
|
fast_finish: true
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- php: hhvm
|
- php: hhvm
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
webhooks:
|
||||||
|
urls:
|
||||||
|
- https://webhooks.gitter.im/e/d4319553d0aecfd5b9ac
|
||||||
|
on_success: always
|
||||||
|
on_failure: always
|
||||||
|
on_start: false
|
||||||
|
|||||||
53
README.md
53
README.md
@@ -22,6 +22,7 @@ Unirest is a set of lightweight HTTP libraries available in [multiple languages]
|
|||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
- [cURL](http://php.net/manual/en/book.curl.php)
|
- [cURL](http://php.net/manual/en/book.curl.php)
|
||||||
|
- PHP 5.4+
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@@ -61,7 +62,7 @@ If you use Symfony2, autoloader has to be detected automatically.
|
|||||||
|
|
||||||
### Install from source
|
### Install from source
|
||||||
|
|
||||||
Unirest-PHP requires PHP `v5.4+`. Download the PHP library from Github, then include `Unirest.php` in your script:
|
Download the PHP library from Github, then include `Unirest.php` in your script:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
git clone git@github.com:Mashape/unirest-php.git
|
git clone git@github.com:Mashape/unirest-php.git
|
||||||
@@ -81,7 +82,7 @@ So you're probably wondering how using Unirest makes creating requests in PHP ea
|
|||||||
$headers = array("Accept" => "application/json");
|
$headers = array("Accept" => "application/json");
|
||||||
$body = array("foo" => "hellow", "bar" => "world");
|
$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->code; // HTTP Status code
|
||||||
$response->headers; // Headers
|
$response->headers; // Headers
|
||||||
@@ -97,7 +98,7 @@ To upload files in a multipart form representation use the return value of `Unir
|
|||||||
$headers = array("Accept" => "application/json");
|
$headers = array("Accept" => "application/json");
|
||||||
$body = array("file" => Unirest\File::add("/tmp/file.txt"));
|
$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
|
### Custom Entity Body
|
||||||
@@ -107,7 +108,7 @@ Sending a custom body such as a JSON Object rather than a string or form style p
|
|||||||
$headers = array("Accept" => "application/json");
|
$headers = array("Accept" => "application/json");
|
||||||
$body = json_encode(array("foo" => "hellow", "bar" => "world"));
|
$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
|
### Authentication
|
||||||
@@ -151,11 +152,27 @@ Unirest\Request::proxyAuth('username', 'password', CURLAUTH_DIGEST);
|
|||||||
Previous versions of **Unirest** support *Basic Authentication* by providing the `username` and `password` arguments:
|
Previous versions of **Unirest** support *Basic Authentication* by providing the `username` and `password` arguments:
|
||||||
|
|
||||||
```php
|
```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**
|
**This has been deprecated, and will be completely removed in `v.3.0.0` please use the `Unirest\Request::auth()` method instead**
|
||||||
|
|
||||||
|
### Cookies
|
||||||
|
|
||||||
|
Set a cookie string to specify the contents of a cookie header. Multiple cookies are separated with a semicolon followed by a space (e.g., "fruit=apple; colour=red")
|
||||||
|
|
||||||
|
```php
|
||||||
|
Unirest\Request::cookie($cookie)
|
||||||
|
```
|
||||||
|
|
||||||
|
Set a cookie file path for enabling cookie reading and storing cookies across multiple sequence of requests.
|
||||||
|
|
||||||
|
```php
|
||||||
|
Unirest\Request::cookieFile($cookieFile)
|
||||||
|
```
|
||||||
|
|
||||||
|
`$cookieFile` must be a correct path with write permission.
|
||||||
|
|
||||||
### Request Object
|
### Request Object
|
||||||
|
|
||||||
```php
|
```php
|
||||||
@@ -194,7 +211,7 @@ You can set some advanced configuration to tune Unirest-PHP:
|
|||||||
#### Custom JSON Decode Flags
|
#### Custom JSON Decode Flags
|
||||||
|
|
||||||
Unirest uses PHP's [JSON Extension](http://php.net/manual/en/book.json.php) for automatically decoding JSON responses.
|
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:
|
To do so, simply set the desired options using the `jsonOpts` request method:
|
||||||
|
|
||||||
@@ -258,7 +275,7 @@ Unirest\Request::defaultHeader("Header1", "Value1");
|
|||||||
Unirest\Request::defaultHeader("Header2", "Value2");
|
Unirest\Request::defaultHeader("Header2", "Value2");
|
||||||
```
|
```
|
||||||
|
|
||||||
You can do set default headers in bulk:
|
You can set default headers in bulk by passing an array:
|
||||||
|
|
||||||
```php
|
```php
|
||||||
Unirest\Request::defaultHeaders(array(
|
Unirest\Request::defaultHeaders(array(
|
||||||
@@ -273,6 +290,28 @@ You can clear the default headers anytime with:
|
|||||||
Unirest\Request::clearDefaultHeaders();
|
Unirest\Request::clearDefaultHeaders();
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Default cURL Options
|
||||||
|
|
||||||
|
You can set default [cURL options](http://php.net/manual/en/function.curl-setopt.php) that will be sent on every request:
|
||||||
|
|
||||||
|
```php
|
||||||
|
Unirest\Request::curlOpt(CURLOPT_COOKIE, "foo=bar");
|
||||||
|
```
|
||||||
|
|
||||||
|
You can set options bulk by passing an array:
|
||||||
|
|
||||||
|
```php
|
||||||
|
Unirest\Request::curlOpts(array(
|
||||||
|
CURLOPT_COOKIE => "foo=bar"
|
||||||
|
));
|
||||||
|
```
|
||||||
|
|
||||||
|
You can clear the default options anytime with:
|
||||||
|
|
||||||
|
```php
|
||||||
|
Unirest\Request::clearCurlOpts();
|
||||||
|
```
|
||||||
|
|
||||||
#### SSL validation
|
#### SSL validation
|
||||||
|
|
||||||
You can explicitly enable or disable SSL certificate validation when consuming an SSL protected endpoint:
|
You can explicitly enable or disable SSL certificate validation when consuming an SSL protected endpoint:
|
||||||
|
|||||||
123
src/Unirest/Request.php
Normal file → Executable file
123
src/Unirest/Request.php
Normal file → Executable file
@@ -7,11 +7,15 @@ use Unirest\Response;
|
|||||||
|
|
||||||
class Request
|
class Request
|
||||||
{
|
{
|
||||||
|
private static $cookie = null;
|
||||||
|
private static $cookieFile = null;
|
||||||
|
private static $curlOpts = array();
|
||||||
|
private static $defaultHeaders = array();
|
||||||
private static $handle = null;
|
private static $handle = null;
|
||||||
private static $jsonOpts = array();
|
private static $jsonOpts = array();
|
||||||
private static $verifyPeer = true;
|
|
||||||
private static $socketTimeout = null;
|
private static $socketTimeout = null;
|
||||||
private static $defaultHeaders = array();
|
private static $verifyPeer = true;
|
||||||
|
private static $verifyHost = true;
|
||||||
|
|
||||||
private static $auth = array (
|
private static $auth = array (
|
||||||
'user' => '',
|
'user' => '',
|
||||||
@@ -53,6 +57,16 @@ class Request
|
|||||||
return self::$verifyPeer = $enabled;
|
return self::$verifyPeer = $enabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verify SSL host
|
||||||
|
*
|
||||||
|
* @param bool $enabled enable SSL host verification, by default is true
|
||||||
|
*/
|
||||||
|
public static function verifyHost($enabled)
|
||||||
|
{
|
||||||
|
return self::$verifyHost = $enabled;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set a timeout
|
* Set a timeout
|
||||||
*
|
*
|
||||||
@@ -70,11 +84,7 @@ class Request
|
|||||||
*/
|
*/
|
||||||
public static function defaultHeaders($headers)
|
public static function defaultHeaders($headers)
|
||||||
{
|
{
|
||||||
foreach ($headers as $name => $value) {
|
return array_merge(self::$defaultHeaders, $headers);
|
||||||
self::$defaultHeaders[$name] = $value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $headers;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -88,6 +98,43 @@ class Request
|
|||||||
return self::$defaultHeaders[$name] = $value;
|
return self::$defaultHeaders[$name] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear all the default headers
|
||||||
|
*/
|
||||||
|
public static function clearDefaultHeaders()
|
||||||
|
{
|
||||||
|
return self::$defaultHeaders = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set curl options to send on every request
|
||||||
|
*
|
||||||
|
* @param array $options options array
|
||||||
|
*/
|
||||||
|
public static function curlOpts($opts)
|
||||||
|
{
|
||||||
|
return array_merge(self::$curlOpts, $opts);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a new default header to send on every request
|
||||||
|
*
|
||||||
|
* @param string $name header name
|
||||||
|
* @param string $value header value
|
||||||
|
*/
|
||||||
|
public static function curlOpt($name, $value)
|
||||||
|
{
|
||||||
|
return self::$curlOpts[$name] = $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear all the default headers
|
||||||
|
*/
|
||||||
|
public static function clearCurlOpts()
|
||||||
|
{
|
||||||
|
return self::$curlOpts = array();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set a Mashape key to send on every request as a header
|
* Set a Mashape key to send on every request as a header
|
||||||
* Obtain your Mashape key by browsing one of your Mashape applications on https://www.mashape.com
|
* Obtain your Mashape key by browsing one of your Mashape applications on https://www.mashape.com
|
||||||
@@ -103,11 +150,25 @@ class Request
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clear all the default headers
|
* Set a coockie string for enabling coockie handling
|
||||||
|
*
|
||||||
|
* @param string $cookie
|
||||||
*/
|
*/
|
||||||
public static function clearDefaultHeaders()
|
public static function cookie($cookie)
|
||||||
{
|
{
|
||||||
return self::$defaultHeaders = array();
|
self::$cookie = $cookie;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a coockie file path for enabling coockie handling
|
||||||
|
*
|
||||||
|
* $cookieFile must be a correct path with write permission
|
||||||
|
*
|
||||||
|
* @param string $cookieFile - path to file for saving cookie
|
||||||
|
*/
|
||||||
|
public static function cookieFile($cookieFile)
|
||||||
|
{
|
||||||
|
self::$cookieFile = $cookieFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -163,7 +224,7 @@ class Request
|
|||||||
* @param mixed $parameters parameters to send in the querystring
|
* @param mixed $parameters parameters to send in the querystring
|
||||||
* @param string $username Authentication username (deprecated)
|
* @param string $username Authentication username (deprecated)
|
||||||
* @param string $password Authentication password (deprecated)
|
* @param string $password Authentication password (deprecated)
|
||||||
* @return string|stdObj response string or stdObj if response is json-decodable
|
* @return Unirest\Response
|
||||||
*/
|
*/
|
||||||
public static function get($url, $headers = array(), $parameters = null, $username = null, $password = null)
|
public static function get($url, $headers = array(), $parameters = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
@@ -177,7 +238,7 @@ class Request
|
|||||||
* @param mixed $parameters parameters to send in the querystring
|
* @param mixed $parameters parameters to send in the querystring
|
||||||
* @param string $username Basic Authentication username (deprecated)
|
* @param string $username Basic Authentication username (deprecated)
|
||||||
* @param string $password Basic Authentication password (deprecated)
|
* @param string $password Basic Authentication password (deprecated)
|
||||||
* @return string|stdObj response string or stdObj if response is json-decodable
|
* @return Unirest\Response
|
||||||
*/
|
*/
|
||||||
public static function head($url, $headers = array(), $parameters = null, $username = null, $password = null)
|
public static function head($url, $headers = array(), $parameters = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
@@ -191,7 +252,7 @@ class Request
|
|||||||
* @param mixed $parameters parameters to send in the querystring
|
* @param mixed $parameters parameters to send in the querystring
|
||||||
* @param string $username Basic Authentication username
|
* @param string $username Basic Authentication username
|
||||||
* @param string $password Basic Authentication password
|
* @param string $password Basic Authentication password
|
||||||
* @return string|stdObj response string or stdObj if response is json-decodable
|
* @return Unirest\Response
|
||||||
*/
|
*/
|
||||||
public static function options($url, $headers = array(), $parameters = null, $username = null, $password = null)
|
public static function options($url, $headers = array(), $parameters = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
@@ -205,7 +266,7 @@ class Request
|
|||||||
* @param mixed $parameters parameters to send in the querystring
|
* @param mixed $parameters parameters to send in the querystring
|
||||||
* @param string $username Basic Authentication username (deprecated)
|
* @param string $username Basic Authentication username (deprecated)
|
||||||
* @param string $password Basic Authentication password (deprecated)
|
* @param string $password Basic Authentication password (deprecated)
|
||||||
* @return string|stdObj response string or stdObj if response is json-decodable
|
* @return Unirest\Response
|
||||||
*/
|
*/
|
||||||
public static function connect($url, $headers = array(), $parameters = null, $username = null, $password = null)
|
public static function connect($url, $headers = array(), $parameters = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
@@ -219,7 +280,7 @@ class Request
|
|||||||
* @param mixed $body POST body data
|
* @param mixed $body POST body data
|
||||||
* @param string $username Basic Authentication username (deprecated)
|
* @param string $username Basic Authentication username (deprecated)
|
||||||
* @param string $password Basic Authentication password (deprecated)
|
* @param string $password Basic Authentication password (deprecated)
|
||||||
* @return string|stdObj response string or stdObj if response is json-decodable
|
* @return Unirest\Response response
|
||||||
*/
|
*/
|
||||||
public static function post($url, $headers = array(), $body = null, $username = null, $password = null)
|
public static function post($url, $headers = array(), $body = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
@@ -233,7 +294,7 @@ class Request
|
|||||||
* @param mixed $body DELETE body data
|
* @param mixed $body DELETE body data
|
||||||
* @param string $username Basic Authentication username (deprecated)
|
* @param string $username Basic Authentication username (deprecated)
|
||||||
* @param string $password Basic Authentication password (deprecated)
|
* @param string $password Basic Authentication password (deprecated)
|
||||||
* @return string|stdObj response string or stdObj if response is json-decodable
|
* @return Unirest\Response
|
||||||
*/
|
*/
|
||||||
public static function delete($url, $headers = array(), $body = null, $username = null, $password = null)
|
public static function delete($url, $headers = array(), $body = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
@@ -247,7 +308,7 @@ class Request
|
|||||||
* @param mixed $body PUT body data
|
* @param mixed $body PUT body data
|
||||||
* @param string $username Basic Authentication username (deprecated)
|
* @param string $username Basic Authentication username (deprecated)
|
||||||
* @param string $password Basic Authentication password (deprecated)
|
* @param string $password Basic Authentication password (deprecated)
|
||||||
* @return string|stdObj response string or stdObj if response is json-decodable
|
* @return Unirest\Response
|
||||||
*/
|
*/
|
||||||
public static function put($url, $headers = array(), $body = null, $username = null, $password = null)
|
public static function put($url, $headers = array(), $body = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
@@ -261,7 +322,7 @@ class Request
|
|||||||
* @param mixed $body PATCH body data
|
* @param mixed $body PATCH body data
|
||||||
* @param string $username Basic Authentication username (deprecated)
|
* @param string $username Basic Authentication username (deprecated)
|
||||||
* @param string $password Basic Authentication password (deprecated)
|
* @param string $password Basic Authentication password (deprecated)
|
||||||
* @return string|stdObj response string or stdObj if response is json-decodable
|
* @return Unirest\Response
|
||||||
*/
|
*/
|
||||||
public static function patch($url, $headers = array(), $body = null, $username = null, $password = null)
|
public static function patch($url, $headers = array(), $body = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
@@ -275,7 +336,7 @@ class Request
|
|||||||
* @param mixed $body TRACE body data
|
* @param mixed $body TRACE body data
|
||||||
* @param string $username Basic Authentication username (deprecated)
|
* @param string $username Basic Authentication username (deprecated)
|
||||||
* @param string $password Basic Authentication password (deprecated)
|
* @param string $password Basic Authentication password (deprecated)
|
||||||
* @return string|stdObj response string or stdObj if response is json-decodable
|
* @return Unirest\Response
|
||||||
*/
|
*/
|
||||||
public static function trace($url, $headers = array(), $body = null, $username = null, $password = null)
|
public static function trace($url, $headers = array(), $body = null, $username = null, $password = null)
|
||||||
{
|
{
|
||||||
@@ -326,6 +387,9 @@ class Request
|
|||||||
{
|
{
|
||||||
self::$handle = curl_init();
|
self::$handle = curl_init();
|
||||||
|
|
||||||
|
// start with default options
|
||||||
|
curl_setopt_array(self::$handle, self::$curlOpts);
|
||||||
|
|
||||||
if ($method !== Method::GET) {
|
if ($method !== Method::GET) {
|
||||||
curl_setopt(self::$handle, CURLOPT_CUSTOMREQUEST, $method);
|
curl_setopt(self::$handle, CURLOPT_CUSTOMREQUEST, $method);
|
||||||
|
|
||||||
@@ -352,6 +416,8 @@ class Request
|
|||||||
CURLOPT_HTTPHEADER => self::getFormattedHeaders($headers),
|
CURLOPT_HTTPHEADER => self::getFormattedHeaders($headers),
|
||||||
CURLOPT_HEADER => true,
|
CURLOPT_HEADER => true,
|
||||||
CURLOPT_SSL_VERIFYPEER => self::$verifyPeer,
|
CURLOPT_SSL_VERIFYPEER => self::$verifyPeer,
|
||||||
|
//CURLOPT_SSL_VERIFYHOST accepts only 0 (false) or 2 (true). Future versions of libcurl will treat values 1 and 2 as equals
|
||||||
|
CURLOPT_SSL_VERIFYHOST => self::$verifyHost === false ? 0 : 2,
|
||||||
// If an empty string, '', is set, a header containing all supported encoding types is sent
|
// If an empty string, '', is set, a header containing all supported encoding types is sent
|
||||||
CURLOPT_ENCODING => ''
|
CURLOPT_ENCODING => ''
|
||||||
));
|
));
|
||||||
@@ -360,6 +426,15 @@ class Request
|
|||||||
curl_setopt(self::$handle, CURLOPT_TIMEOUT, self::$socketTimeout);
|
curl_setopt(self::$handle, CURLOPT_TIMEOUT, self::$socketTimeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (self::$cookie) {
|
||||||
|
curl_setopt(self::$handle, CURLOPT_COOKIE, self::$cookie);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (self::$cookieFile) {
|
||||||
|
curl_setopt(self::$handle, CURLOPT_COOKIEFILE, self::$cookieFile);
|
||||||
|
curl_setopt(self::$handle, CURLOPT_COOKIEJAR, self::$cookieFile);
|
||||||
|
}
|
||||||
|
|
||||||
// supporting deprecated http auth method
|
// supporting deprecated http auth method
|
||||||
if (!empty($username)) {
|
if (!empty($username)) {
|
||||||
curl_setopt_array(self::$handle, array(
|
curl_setopt_array(self::$handle, array(
|
||||||
@@ -403,9 +478,15 @@ class Request
|
|||||||
return new Response($httpCode, $body, $header, self::$jsonOpts);
|
return new Response($httpCode, $body, $header, self::$jsonOpts);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getInfo()
|
public static function getInfo($opt = false)
|
||||||
{
|
{
|
||||||
return curl_getinfo(self::$handle);
|
if ($opt) {
|
||||||
|
$info = curl_getinfo(self::$handle, $opt);
|
||||||
|
} else {
|
||||||
|
$info = curl_getinfo(self::$handle);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $info;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getCurlHandle()
|
public static function getCurlHandle()
|
||||||
|
|||||||
@@ -16,6 +16,17 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals($result['file'], $file);
|
$this->assertEquals($result['file'], $file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testCurlOpts()
|
||||||
|
{
|
||||||
|
Unirest\Request::curlOpt(CURLOPT_COOKIE, 'foo=bar');
|
||||||
|
|
||||||
|
$response = Unirest\Request::get('http://mockbin.com/request');
|
||||||
|
|
||||||
|
$this->assertTrue(property_exists($response->body->cookies, 'foo'));
|
||||||
|
|
||||||
|
Unirest\Request::clearCurlOpts();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @expectedException Exception
|
* @expectedException Exception
|
||||||
*/
|
*/
|
||||||
@@ -23,17 +34,7 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
{
|
{
|
||||||
Unirest\Request::timeout(1);
|
Unirest\Request::timeout(1);
|
||||||
|
|
||||||
Unirest\Request::get('http://httpbin.org/delay/3');
|
Unirest\Request::get('http://mockbin.com/delay/1000');
|
||||||
|
|
||||||
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');
|
|
||||||
$this->assertEquals(200, $response->code);
|
|
||||||
|
|
||||||
Unirest\Request::timeout(null); // Cleaning timeout for the other tests
|
Unirest\Request::timeout(null); // Cleaning timeout for the other tests
|
||||||
}
|
}
|
||||||
@@ -41,108 +42,97 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
public function testDefaultHeader()
|
public function testDefaultHeader()
|
||||||
{
|
{
|
||||||
Unirest\Request::defaultHeader('Hello', 'custom');
|
Unirest\Request::defaultHeader('Hello', 'custom');
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get');
|
|
||||||
|
$response = Unirest\Request::get('http://mockbin.com/request');
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
$headers = $response->body->headers;
|
$this->assertTrue(property_exists($response->body->headers, 'hello'));
|
||||||
$properties = get_object_vars($headers);
|
$this->assertEquals('custom', $response->body->headers->hello);
|
||||||
$this->assertTrue(array_key_exists('Hello', $properties));
|
|
||||||
$this->assertEquals('custom', $headers->Hello);
|
|
||||||
$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);
|
|
||||||
Unirest\Request::clearDefaultHeaders();
|
Unirest\Request::clearDefaultHeaders();
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get');
|
|
||||||
|
$response = Unirest\Request::get('http://mockbin.com/request');
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
$headers = $response->body->headers;
|
$this->assertFalse(property_exists($response->body->headers, 'hello'));
|
||||||
$properties = get_object_vars($headers);
|
|
||||||
$this->assertFalse(array_key_exists('Hello', $properties));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testSetMashapeKey()
|
public function testSetMashapeKey()
|
||||||
{
|
{
|
||||||
Unirest\Request::setMashapeKey('abcd');
|
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);
|
$this->assertEquals(200, $response->code);
|
||||||
$headers = $response->body->headers;
|
$this->assertTrue(property_exists($response->body->headers, 'x-mashape-key'));
|
||||||
$properties = get_object_vars($headers);
|
$this->assertEquals('abcd', $response->body->headers->{'x-mashape-key'});
|
||||||
$this->assertTrue(array_key_exists('X-Mashape-Key', $properties));
|
|
||||||
$this->assertEquals('abcd', $headers->{'X-Mashape-Key'});
|
// send another request
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get');
|
$response = Unirest\Request::get('http://mockbin.com/request');
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
$headers = $response->body->headers;
|
$this->assertTrue(property_exists($response->body->headers, 'x-mashape-key'));
|
||||||
$properties = get_object_vars($headers);
|
$this->assertEquals('abcd', $response->body->headers->{'x-mashape-key'});
|
||||||
$this->assertTrue(array_key_exists('X-Mashape-Key', $properties));
|
|
||||||
$this->assertEquals('abcd', $headers->{'X-Mashape-Key'});
|
|
||||||
Unirest\Request::clearDefaultHeaders();
|
Unirest\Request::clearDefaultHeaders();
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get');
|
|
||||||
|
$response = Unirest\Request::get('http://mockbin.com/request');
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
$headers = $response->body->headers;
|
$this->assertFalse(property_exists($response->body->headers, 'x-mashape-key'));
|
||||||
$properties = get_object_vars($headers);
|
|
||||||
$this->assertFalse(array_key_exists('X-Mashape-Key', $properties));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGzip()
|
public function testGzip()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::get('http://httpbin.org/gzip');
|
$response = Unirest\Request::get('http://mockbin.com/gzip/request');
|
||||||
$args = $response->body;
|
|
||||||
$this->assertEquals(true, $args->gzipped);
|
$this->assertEquals('gzip', $response->headers['Content-Encoding']);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testBasicAuthenticationDeprecated()
|
public function testBasicAuthenticationDeprecated()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get', array(), array(), 'user', 'password');
|
$response = Unirest\Request::get('http://mockbin.com/request', array(), array(), 'user', 'password');
|
||||||
$headers = $response->body->headers;
|
|
||||||
$this->assertEquals('Basic dXNlcjpwYXNzd29yZA==', $headers->Authorization);
|
$this->assertEquals('Basic dXNlcjpwYXNzd29yZA==', $response->body->headers->authorization);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testBasicAuthentication()
|
public function testBasicAuthentication()
|
||||||
{
|
{
|
||||||
Unirest\Request::auth('user', 'password');
|
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()
|
public function testCustomHeaders()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get', array(
|
$response = Unirest\Request::get('http://mockbin.com/request', array(
|
||||||
'user-agent' => 'ciao',
|
'user-agent' => 'unirest-php',
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('unirest-php', $response->body->headers->{'user-agent'});
|
||||||
$headers = $response->body->headers;
|
|
||||||
$this->assertEquals('ciao', $headers->{'User-Agent'});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GET
|
// GET
|
||||||
public function testGet()
|
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'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'nick' => 'thefosk'
|
'nick' => 'thefosk'
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('GET', $response->body->method);
|
||||||
$args = $response->body->args;
|
$this->assertEquals('Mark', $response->body->queryString->name);
|
||||||
$this->assertEquals('Mark', $args->name);
|
$this->assertEquals('thefosk', $response->body->queryString->nick);
|
||||||
$this->assertEquals('thefosk', $args->nick);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetMultidimensionalArray()
|
public function testGetMultidimensionalArray()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get', array(
|
$response = Unirest\Request::get('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'key' => 'value',
|
'key' => 'value',
|
||||||
@@ -153,17 +143,15 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('GET', $response->body->method);
|
||||||
$args = $response->body->args;
|
$this->assertEquals('value', $response->body->queryString->key);
|
||||||
|
$this->assertEquals('item1', $response->body->queryString->items[0]);
|
||||||
$this->assertEquals('value', $args->key);
|
$this->assertEquals('item2', $response->body->queryString->items[1]);
|
||||||
$this->assertEquals('item1', $args->{'items[0]'});
|
|
||||||
$this->assertEquals('item2', $args->{'items[1]'});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetWithDots()
|
public function testGetWithDots()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get', array(
|
$response = Unirest\Request::get('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'user.name' => 'Mark',
|
'user.name' => 'Mark',
|
||||||
@@ -171,15 +159,14 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('GET', $response->body->method);
|
||||||
$args = $response->body->args;
|
$this->assertEquals('Mark', $response->body->queryString->{'user.name'});
|
||||||
$this->assertEquals('Mark', $args->{'user.name'});
|
$this->assertEquals('thefosk', $response->body->queryString->nick);
|
||||||
$this->assertEquals('thefosk', $args->nick);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetWithDotsAlt()
|
public function testGetWithDotsAlt()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get', array(
|
$response = Unirest\Request::get('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'user.name' => 'Mark Bond',
|
'user.name' => 'Mark Bond',
|
||||||
@@ -187,69 +174,63 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('GET', $response->body->method);
|
||||||
$args = $response->body->args;
|
$this->assertEquals('Mark Bond', $response->body->queryString->{'user.name'});
|
||||||
$this->assertEquals('Mark Bond', $args->{'user.name'});
|
$this->assertEquals('thefosk', $response->body->queryString->nick);
|
||||||
$this->assertEquals('thefosk', $args->nick);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetWithEqualSign()
|
public function testGetWithEqualSign()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get', array(
|
$response = Unirest\Request::get('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'name' => 'Mark=Hello'
|
'name' => 'Mark=Hello'
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('GET', $response->body->method);
|
||||||
$args = $response->body->args;
|
$this->assertEquals('Mark=Hello', $response->body->queryString->name);
|
||||||
$this->assertEquals('Mark=Hello', $args->name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetWithEqualSignAlt()
|
public function testGetWithEqualSignAlt()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::get('http://httpbin.org/get', array(
|
$response = Unirest\Request::get('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'name' => 'Mark=Hello=John'
|
'name' => 'Mark=Hello=John'
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('GET', $response->body->method);
|
||||||
$args = $response->body->args;
|
$this->assertEquals('Mark=Hello=John', $response->body->queryString->name);
|
||||||
$this->assertEquals('Mark=Hello=John', $args->name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetWithComplexQuery()
|
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);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('GET', $response->body->method);
|
||||||
$args = $response->body->args;
|
$this->assertEquals('', $response->body->queryString->cursor);
|
||||||
$this->assertEquals('', $args->cursor);
|
$this->assertEquals('[{"type":"/music/album","name":null,"artist":{"id":"/en/bob_dylan"},"limit":3}]', $response->body->queryString->query);
|
||||||
$this->assertEquals('[{"type":"/music/album","name":null,"artist":{"id":"/en/bob_dylan"},"limit":3}]', $args->query);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetArray()
|
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[0]' => 'Mark',
|
||||||
'name[1]' => 'John'
|
'name[1]' => 'John'
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('GET', $response->body->method);
|
||||||
$args = $response->body->args;
|
$this->assertEquals('Mark', $response->body->queryString->name[0]);
|
||||||
$this->assertEquals('Mark', $args->{'name[0]'});
|
$this->assertEquals('John', $response->body->queryString->name[1]);
|
||||||
$this->assertEquals('John', $args->{'name[1]'});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// POST
|
// POST
|
||||||
public function testPost()
|
public function testPost()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::post('http://httpbin.org/post', array(
|
$response = Unirest\Request::post('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'name' => 'Mark',
|
'name' => 'Mark',
|
||||||
@@ -257,29 +238,27 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('POST', $response->body->method);
|
||||||
$form = $response->body->form;
|
$this->assertEquals('Mark', $response->body->postData->params->name);
|
||||||
$this->assertEquals('Mark', $form->name);
|
$this->assertEquals('thefosk', $response->body->postData->params->nick);
|
||||||
$this->assertEquals('thefosk', $form->nick);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testPostWithEqualSign()
|
public function testPostWithEqualSign()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::post('http://httpbin.org/post', array(
|
$response = Unirest\Request::post('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'name' => 'Mark=Hello'
|
'name' => 'Mark=Hello'
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('POST', $response->body->method);
|
||||||
$form = $response->body->form;
|
$this->assertEquals('Mark=Hello', $response->body->postData->params->name);
|
||||||
$this->assertEquals('Mark=Hello', $form->name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testPostArray()
|
public function testPostArray()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::post('http://httpbin.org/post', array(
|
$response = Unirest\Request::post('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'name[0]' => 'Mark',
|
'name[0]' => 'Mark',
|
||||||
@@ -287,16 +266,14 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('POST', $response->body->method);
|
||||||
$form = $response->body->form;
|
$this->assertEquals('Mark', $response->body->postData->params->{'name[0]'});
|
||||||
|
$this->assertEquals('John', $response->body->postData->params->{'name[1]'});
|
||||||
$this->assertEquals('Mark', $form->{'name[0]'});
|
|
||||||
$this->assertEquals('John', $form->{'name[1]'});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testPostWithDots()
|
public function testPostWithDots()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::post('http://httpbin.org/post', array(
|
$response = Unirest\Request::post('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'user.name' => 'Mark',
|
'user.name' => 'Mark',
|
||||||
@@ -304,15 +281,14 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('POST', $response->body->method);
|
||||||
$form = $response->body->form;
|
$this->assertEquals('Mark', $response->body->postData->params->{'user.name'});
|
||||||
$this->assertEquals('Mark', $form->{'user.name'});
|
$this->assertEquals('thefosk', $response->body->postData->params->nick);
|
||||||
$this->assertEquals('thefosk', $form->nick);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testRawPost()
|
public function testRawPost()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::post('http://httpbin.org/post', array(
|
$response = Unirest\Request::post('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json',
|
'Accept' => 'application/json',
|
||||||
'Content-Type' => 'application/json'
|
'Content-Type' => 'application/json'
|
||||||
), json_encode(array(
|
), json_encode(array(
|
||||||
@@ -320,15 +296,13 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
)));
|
)));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('POST', $response->body->method);
|
||||||
$json = $response->body->json;
|
$this->assertEquals('Sam Sullivan', json_decode($response->body->postData->text)->author);
|
||||||
|
|
||||||
$this->assertEquals('Sam Sullivan', $json->author);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testPostMultidimensionalArray()
|
public function testPostMultidimensionalArray()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::post('http://httpbin.org/post', array(
|
$response = Unirest\Request::post('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'key' => 'value',
|
'key' => 'value',
|
||||||
@@ -339,17 +313,16 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('POST', $response->body->method);
|
||||||
$form = $response->body->form;
|
$this->assertEquals('value', $response->body->postData->params->key);
|
||||||
$this->assertEquals('value', $form->key);
|
$this->assertEquals('item1', $response->body->postData->params->{'items[0]'});
|
||||||
$this->assertEquals('item1', $form->{'items[0]'});
|
$this->assertEquals('item2', $response->body->postData->params->{'items[1]'});
|
||||||
$this->assertEquals('item2', $form->{'items[1]'});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// PUT
|
// PUT
|
||||||
public function testPut()
|
public function testPut()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::put('http://httpbin.org/put', array(
|
$response = Unirest\Request::put('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'name' => 'Mark',
|
'name' => 'Mark',
|
||||||
@@ -357,16 +330,15 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('PUT', $response->body->method);
|
||||||
$form = $response->body->form;
|
$this->assertEquals('Mark', $response->body->postData->params->name);
|
||||||
$this->assertEquals('Mark', $form->name);
|
$this->assertEquals('thefosk', $response->body->postData->params->nick);
|
||||||
$this->assertEquals('thefosk', $form->nick);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// PATCH
|
// PATCH
|
||||||
public function testPatch()
|
public function testPatch()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::patch('http://httpbin.org/patch', array(
|
$response = Unirest\Request::patch('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'name' => 'Mark',
|
'name' => 'Mark',
|
||||||
@@ -374,16 +346,15 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('PATCH', $response->body->method);
|
||||||
$form = $response->body->form;
|
$this->assertEquals('Mark', $response->body->postData->params->name);
|
||||||
$this->assertEquals('Mark', $form->name);
|
$this->assertEquals('thefosk', $response->body->postData->params->nick);
|
||||||
$this->assertEquals('thefosk', $form->nick);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// DELETE
|
// DELETE
|
||||||
public function testDelete()
|
public function testDelete()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::delete('http://httpbin.org/delete', array(
|
$response = Unirest\Request::delete('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json',
|
'Accept' => 'application/json',
|
||||||
'Content-Type' => 'application/x-www-form-urlencoded'
|
'Content-Type' => 'application/x-www-form-urlencoded'
|
||||||
), array(
|
), array(
|
||||||
@@ -392,42 +363,37 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
$data = $response->body->data;
|
$this->assertEquals('DELETE', $response->body->method);
|
||||||
$this->assertTrue(empty($data));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Upload
|
// Upload
|
||||||
public function testUpload()
|
public function testUpload()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::post('http://httpbin.org/post', array(
|
$response = Unirest\Request::post('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'name' => 'Mark',
|
'name' => 'Mark',
|
||||||
'file' => Unirest\File::add(UPLOAD_FIXTURE)
|
'file' => Unirest\File::add(UPLOAD_FIXTURE)
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('POST', $response->body->method);
|
||||||
$files = $response->body->files;
|
$this->assertEquals('Mark', $response->body->postData->params->name);
|
||||||
$this->assertEquals('This is a test', $files->file);
|
$this->assertEquals('This is a test', $response->body->postData->params->file);
|
||||||
|
|
||||||
$form = $response->body->form;
|
|
||||||
$this->assertEquals('Mark', $form->name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testUploadIfFilePartOfData()
|
public function testUploadIfFilePartOfData()
|
||||||
{
|
{
|
||||||
$response = Unirest\Request::post('http://httpbin.org/post', array(
|
$response = Unirest\Request::post('http://mockbin.com/request', array(
|
||||||
'Accept' => 'application/json'
|
'Accept' => 'application/json'
|
||||||
), array(
|
), array(
|
||||||
'name' => 'Mark',
|
'name' => 'Mark',
|
||||||
'files[owl.gif]' => Unirest\File::add(UPLOAD_FIXTURE)
|
'files[owl.gif]' => Unirest\File::add(UPLOAD_FIXTURE)
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->assertEquals(200, $response->code);
|
$this->assertEquals(200, $response->code);
|
||||||
|
$this->assertEquals('POST', $response->body->method);
|
||||||
//$files = $response->body->files;
|
$this->assertEquals('Mark', $response->body->postData->params->name);
|
||||||
//$this->assertEquals('This is a test', $files->file);
|
$this->assertEquals('This is a test', $response->body->postData->params->{'files[owl.gif]'});
|
||||||
|
|
||||||
$form = $response->body->form;
|
|
||||||
$this->assertEquals('Mark', $form->name);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user