1
0
Fork 0
mirror of synced 2025-04-04 05:33:31 +03:00

fix test backward compatibility with phpunit < v.6

This commit is contained in:
gorokh 2020-02-07 17:36:34 +03:00
parent b304badfe5
commit 7b6523262d
10 changed files with 58 additions and 6 deletions

View file

@ -3,6 +3,7 @@
namespace Retailcrm\Retailcrm\Model\Service;
use Retailcrm\Retailcrm\Helper\Data as Helper;
use Magento\Framework\App\Config\ScopeConfigInterface;
class IntegrationModule
{
@ -110,9 +111,15 @@ class IntegrationModule
}
if ($response->isSuccessful() && $active == true) {
$scope = ScopeConfigInterface::SCOPE_TYPE_DEFAULT;
$scopeId = 0;
$this->resourceConfig->saveConfig(
Helper::XML_PATH_RETAILCRM . 'general/client_id_in_crm',
$this->clientId
$this->clientId,
$scope,
$scopeId
);
return true;

View file

@ -2,6 +2,11 @@
namespace Retailcrm\Retailcrm\Test\Helpers;
// backward compatibility with phpunit < v.6
if (!class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
class FieldsetTest extends \PHPUnit\Framework\TestCase
{
protected $elementMock;

View file

@ -2,6 +2,11 @@
namespace Retailcrm\Retailcrm\Test\Unit\Block\Frontend;
// backward compatibility with phpunit < v.6
if (!class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
class DaemonCollectorTest extends \PHPUnit\Framework\TestCase
{
private $unit;

View file

@ -2,6 +2,11 @@
namespace Retailcrm\Retailcrm\Test\Unit\Model\Observer;
// backward compatibility with phpunit < v.6
if (!class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
class CustomerTest extends \PHPUnit\Framework\TestCase
{
private $mockApi;

View file

@ -2,6 +2,11 @@
namespace Retailcrm\Retailcrm\Test\Unit\Observer;
// backward compatibility with phpunit < v.6
if (!class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
/**
* Order create observer test class
*/

View file

@ -2,6 +2,11 @@
namespace Retailcrm\Retailcrm\Test\Unit\Observer;
// backward compatibility with phpunit < v.6
if (!class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
class OrderUpdateTest extends \PHPUnit\Framework\TestCase
{
private $unit;

View file

@ -2,6 +2,11 @@
namespace Retailcrm\Retailcrm\Test\Unit\Model\Service;
// backward compatibility with phpunit < v.6
if (!class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
class CustomerTest extends \PHPUnit\Framework\TestCase
{
private $mockData;

View file

@ -2,6 +2,11 @@
namespace Retailcrm\Retailcrm\Test\Unit\Model\Service;
// backward compatibility with phpunit < v.6
if (!class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
class IntegrationModuleTest extends \PHPUnit\Framework\TestCase
{
private $mockResourceConfig;

View file

@ -2,6 +2,11 @@
namespace Retailcrm\Retailcrm\Test\Unit\Model\Service;
// backward compatibility with phpunit < v.6
if (!class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
class InventoriesUploadTest extends \PHPUnit\Framework\TestCase
{
private $mockApi;
@ -18,12 +23,12 @@ class InventoriesUploadTest extends \PHPUnit\Framework\TestCase
'isConfigured'
])
->getMock();
$this->mockProductRepository = $this->getMockBuilder(\Magento\Catalog\Api\ProductRepositoryInterface::class)
->disableOriginalConstructor()
->setMethods(['getById'])
->getMockForAbstractClass();
$this->mockResponse = $this->getMockBuilder(\RetailCrm\Response\ApiResponse::class)
->disableOriginalConstructor()
->setMethods(['isSuccessful'])
@ -88,9 +93,9 @@ class InventoriesUploadTest extends \PHPUnit\Framework\TestCase
}
public function dataProviderLoadStocks()
{
{
$response = $this->getResponseData();
return array(
array(
'response' => $response['true']
@ -100,7 +105,7 @@ class InventoriesUploadTest extends \PHPUnit\Framework\TestCase
)
);
}
private function getApiInventories()
{
return array(

View file

@ -2,6 +2,11 @@
namespace Retailcrm\Retailcrm\Test\Unit\Model\Service;
// backward compatibility with phpunit < v.6
if (!class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
class OrderTest extends \PHPUnit\Framework\TestCase
{
private $mockProductRepository;