1
0
mirror of synced 2024-11-23 13:56:06 +03:00
api-client-php/tests/RetailCrm/Tests/Methods/Version5/ApiClientPricesTest.php
2017-06-22 16:42:42 +03:00

114 lines
2.9 KiB
PHP

<?php
/**
* PHP version 5.4
*
* API client prices 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
*/
namespace RetailCrm\Tests\Methods\Version5;
use RetailCrm\Test\TestCase;
/**
* Class ApiClientPricesTest
*
* @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
*/
class ApiClientPricesTest extends TestCase
{
/**
* @group prices_v5
*/
public function testPricesEdit()
{
$client = static::getApiClient();
$response = $client->request->pricesTypesEdit(
[
'code' => 'sample_v4_price_code',
'name' => 'Sample v4 price type',
'ordering' => 500,
'active' => true
]
);
static::assertInstanceOf('RetailCrm\Response\ApiResponse', $response);
static::assertEquals(200, $response->getStatusCode());
static::assertTrue($response->isSuccessful());
}
/**
* @depends testPricesEdit
* @group prices_v5
*/
public function testPricesGet()
{
$client = static::getApiClient();
$response = $client->request->pricesTypes();
static::assertInstanceOf('RetailCrm\Response\ApiResponse', $response);
static::assertTrue(in_array($response->getStatusCode(), [200, 201]));
static::assertTrue($response->isSuccessful());
}
/**
* @group prices_v5
* @expectedException \InvalidArgumentException
*/
public function testPricesUploadExceptionEmpty()
{
$client = static::getApiClient();
$client->request->storePricesUpload([]);
}
/**
* @depends testPricesEdit
* @group prices_v5
*/
public function testPricesUpload()
{
$client = static::getApiClient();
$xmlIdA = 'upload-a-' . time();
$xmlIdB = 'upload-b-' . time();
$response = $client->request->storePricesUpload([
[
'xmlId' => $xmlIdA,
'prices' => [
[
'code' => 'sample_v4_price_code',
'price' => 1700
]
]
],
[
'xmlId' => $xmlIdB,
'prices' => [
[
'code' => 'sample_v4_price_code',
'price' => 1500
]
]
],
]);
static::assertInstanceOf('RetailCrm\Response\ApiResponse', $response);
static::assertEquals(200, $response->getStatusCode());
}
}