1
0
Fork 0
mirror of synced 2025-04-02 21:36:14 +03:00

Update tests

Update module version
This commit is contained in:
Ivan Chaplygin 2025-02-04 17:19:33 +03:00
parent fe64c3a3f9
commit 9985d9d91c
6 changed files with 31 additions and 7 deletions

View file

@ -1,3 +1,6 @@
## 2025-02-04 4.8.19
* Optimization of order unloading
## 2025-02-03 4.8.18
* Added additional parameters to GET requests

View file

@ -1 +1 @@
4.8.18
4.8.19

View file

@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
Requires PHP: 7.1
Requires at least: 5.3
Tested up to: 6.5
Stable tag: 4.8.18
Stable tag: 4.8.19
License: GPLv1 or later
License URI: http://www.gnu.org/licenses/gpl-1.0.html
@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
== Changelog ==
= 4.8.19 =
* Optimization of order unloading
= 4.8.18 =
* Added additional parameters to GET requests

View file

@ -5,7 +5,7 @@
* Description: Integration plugin for WooCommerce & Simla.com
* Author: RetailDriver LLC
* Author URI: http://retailcrm.pro/
* Version: 4.8.18
* Version: 4.8.19
* Tested up to: 6.5
* Requires Plugins: woocommerce
* WC requires at least: 5.4
@ -27,7 +27,7 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
class WC_Integration_Retailcrm {
const WOOCOMMERCE_SLUG = 'woocommerce';
const WOOCOMMERCE_PLUGIN_PATH = 'woocommerce/woocommerce.php';
const MODULE_VERSION = '4.8.18';
const MODULE_VERSION = '4.8.19';
private static $instance;

View file

@ -16,7 +16,7 @@
*
* @link https://wordpress.org/plugins/woo-retailcrm/
*
* @version 4.8.18
* @version 4.8.19
*
* @package RetailCRM
*/

View file

@ -36,7 +36,8 @@ class WC_Retailcrm_Uploader_Test extends WC_Retailcrm_Test_Case_Helper
'getCountOrders',
'customersGet',
'customersList',
'ordersCreate'
'ordersCreate',
'ordersUpload'
))
->getMock();
@ -82,7 +83,7 @@ class WC_Retailcrm_Uploader_Test extends WC_Retailcrm_Test_Case_Helper
/**
* @param $retailcrm
* @dataProvider dataProviderApiClient
* @dataProvider dataProviderApiClientForUpload
*/
public function test_order_upload($retailcrm)
{
@ -134,6 +135,23 @@ class WC_Retailcrm_Uploader_Test extends WC_Retailcrm_Test_Case_Helper
);
}
public function dataProviderApiClientForUpload()
{
$this->setUp();
$apiMock = (clone $this->apiMock);
$apiMock->expects($this->once())->method('ordersUpload');
return array(
array(
'retailcrm' => $apiMock
),
array(
'retailcrm' => false
)
);
}
/**
* @param $retailcrm
*