1
0
mirror of synced 2024-11-23 22:06:09 +03:00
api-client-php/tests/RetailCrm/Tests/Http/ClientTest.php

84 lines
2.0 KiB
PHP
Raw Normal View History

<?php
2016-07-22 01:01:47 +03:00
/**
* PHP version 5.4
2016-07-22 01:01:47 +03:00
*
* API client test class
*
* @category RetailCrm
* @package RetailCrm
* @author RetailCrm <integration@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://www.retailcrm.ru/docs/Developers/ApiVersion5
2016-07-22 01:01:47 +03:00
*/
namespace RetailCrm\Tests\Http;
use RetailCrm\Test\TestCase;
use RetailCrm\ApiClient;
use RetailCrm\Http\Client;
2016-07-22 01:01:47 +03:00
/**
* Class ClientTest
*
* @category RetailCrm
* @package RetailCrm
* @author RetailCrm <integration@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://www.retailcrm.ru/docs/Developers/ApiVersion5
2016-07-22 01:01:47 +03:00
*/
class ClientTest extends TestCase
{
/**
* @group client
*/
public function testConstruct()
{
$client = new Client('https://asdf.df', []);
static::assertInstanceOf('RetailCrm\Http\Client', $client);
}
/**
* @group client
* @expectedException \InvalidArgumentException
*/
public function testHttpRequiring()
{
$client = new Client('http://demo.retailcrm.ru/api/' . $_SERVER['CRM_API_VERSION'], ['apiKey' => '123']);
2016-07-22 01:01:47 +03:00
return $client;
}
/**
* @group client
* @expectedException \InvalidArgumentException
*/
public function testRequestWrongMethod()
{
$client = static::getClient();
$client->makeRequest('/a', 'adsf');
}
/**
* @group client
* @expectedException \RetailCrm\Exception\CurlException
*/
public function testRequestWrongUrl()
{
$client = new Client('https://asdf.df', []);
$client->makeRequest('/a', Client::METHOD_GET, []);
}
/**
* @group client
*/
public function testRequestSuccess()
{
$client = static::getClient();
2014-11-06 03:18:39 +03:00
$response = $client->makeRequest('/orders', Client::METHOD_GET);
static::assertInstanceOf('RetailCrm\Response\ApiResponse', $response);
static::assertEquals(200, $response->getStatusCode());
}
}