93 lines
2.5 KiB
PHP
93 lines
2.5 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace RetailCrm\Tests;
|
||
|
|
||
|
use RetailCrm\Test\TestCase;
|
||
|
|
||
|
class ApiClientStoreTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @group integration
|
||
|
*/
|
||
|
public function testStoreInventories()
|
||
|
{
|
||
|
$client = static::getApiClient();
|
||
|
|
||
|
$response = $client->storeInventories();
|
||
|
$this->assertInstanceOf('RetailCrm\Response\ApiResponse', $response);
|
||
|
$this->assertEquals(200, $response->getStatusCode());
|
||
|
$this->assertTrue($response->success);
|
||
|
$this->assertTrue(
|
||
|
isset($response['offers']),
|
||
|
'API returns orders assembly history'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @group unit
|
||
|
* @expectedException \InvalidArgumentException
|
||
|
*/
|
||
|
public function testStoreInventoriesUploadExceptionEmpty()
|
||
|
{
|
||
|
$client = static::getApiClient();
|
||
|
|
||
|
$response = $client->storeInventoriesUpload(array());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @group integration
|
||
|
*/
|
||
|
public function testStoreInventoriesUpload()
|
||
|
{
|
||
|
$client = static::getApiClient();
|
||
|
|
||
|
$externalIdA = 'upload-a-' . time();
|
||
|
$externalIdB = 'upload-b-' . time();
|
||
|
|
||
|
$response = $client->storeInventoriesUpload(array(
|
||
|
array(
|
||
|
'externalId' => $externalIdA,
|
||
|
'available' => 10,
|
||
|
'purchasePrice' => 1700
|
||
|
),
|
||
|
array(
|
||
|
'externalId' => $externalIdB,
|
||
|
'available' => 20,
|
||
|
'purchasePrice' => 1500
|
||
|
),
|
||
|
));
|
||
|
$this->assertInstanceOf('RetailCrm\Response\ApiResponse', $response);
|
||
|
$this->assertTrue(
|
||
|
$response->isSuccessful(),
|
||
|
'Got offer'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @group integration
|
||
|
*/
|
||
|
public function testStoreInventoriesUploadFailed()
|
||
|
{
|
||
|
$client = static::getApiClient();
|
||
|
|
||
|
$externalIdA = 'upload-a-' . time();
|
||
|
$externalIdB = 'upload-b-' . time();
|
||
|
|
||
|
$response = $client->storeInventoriesUpload(array(
|
||
|
array(
|
||
|
'externalId' => $externalIdA,
|
||
|
'available' => 10,
|
||
|
'purchasePrice' => 1700
|
||
|
),
|
||
|
array(
|
||
|
'externalId' => $externalIdB,
|
||
|
'available' => 20,
|
||
|
'purchasePrice' => 1500
|
||
|
),
|
||
|
));
|
||
|
$this->assertInstanceOf('RetailCrm\Response\ApiResponse', $response);
|
||
|
$this->assertEquals(400, $response->getStatusCode());
|
||
|
$this->assertTrue(isset($response['errorMsg']), $response['errorMsg']);
|
||
|
}
|
||
|
}
|