1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00
CamelCase
Fix Test
This commit is contained in:
Ivan Chaplygin 2024-04-12 10:20:21 +03:00
parent 7c84f365f0
commit 6d85d8d021
4 changed files with 53 additions and 47 deletions

View file

@ -32,7 +32,7 @@ jQuery(function() {
}
jQuery.ajax({
url: LoyaltyUrl.url + '/admin-ajax.php?action=register_customer_loyalty',
url: loyaltyUrl.url + '/admin-ajax.php?action=register_customer_loyalty',
method: 'POST',
timeout: 0,
data: {ajax: 1, phone: phone.val(), userId: customerId},
@ -63,7 +63,7 @@ jQuery(function() {
}
jQuery.ajax({
url: LoyaltyUrl.url + '/admin-ajax.php?action=activate_customer_loyalty',
url: loyaltyUrl.url + '/admin-ajax.php?action=activate_customer_loyalty',
method: 'POST',
timeout: 0,
data: {ajax: 1, loyaltyId: loyaltyId},

View file

@ -898,7 +898,7 @@ if (!class_exists('WC_Retailcrm_Base')) {
wp_register_script($jsScript, $jsScriptsPath . $jsScript . '.js', false, '0.1');
wp_enqueue_script($jsScript, $jsScriptsPath . $jsScript . '.js', '', '', true);
wp_localize_script($jsScript, 'LoyaltyUrl', $loyaltyUrl);
wp_localize_script($jsScript, 'loyaltyUrl', $loyaltyUrl);
wp_localize_script($jsScript, 'customerId', $userId);
wp_localize_script($jsScript, 'messagePhone', $messagePhone);
wp_localize_script($jsScript, 'termsLoyalty', $this->settings['loyalty_terms']);

View file

@ -19,24 +19,58 @@ class DataLoyaltyRetailCrm
public static function getDataLoyalty()
{
return [
'id' => 1,
'level' => [
'name' => 'Test level',
'privilegeSize' => 5,
'privilegeSizePromo' => 3,
'type' => 'bonus_converting'
[
'isSuccessful' => true,
'body' => json_encode(['loyaltyAccounts' => []]),
'expected' => 'id="loyaltyRegisterForm"'
],
'amount' => 1000,
'cardNumber' => '12345',
'activatedAt' => '2024-04-10 15:00:00',
'nextLevelSum' => 15000,
'loyalty' => [
'currency' => 'USD'
[
'isSuccessful' => true,
'body' => json_encode(
[
'loyaltyAccounts' => [
0 => [
'active' => false,
'customer' => [
'externalId' => 1
],
'id' => 1
]
]
]
),
'expected' => 'id="loyaltyActivateForm"'
],
'customer' => [
'externalId' => 1
[
'isSuccessful' => true,
'body' => json_encode(
[
'loyaltyAccounts' => [
0 => [
'id' => 1,
'level' => [
'name' => 'Test level',
'privilegeSize' => 5,
'privilegeSizePromo' => 3,
'type' => 'bonus_converting'
],
'amount' => 1000,
'cardNumber' => '12345',
'activatedAt' => '2024-04-10 15:00:00',
'nextLevelSum' => 15000,
'loyalty' => [
'currency' => 'USD'
],
'customer' => [
'externalId' => 1
],
'active' => true
]
]
]
),
'expected' => 'Ordinary products: accrual of 1 bonus for each'
],
'active' => true
];
}
}

View file

@ -87,34 +87,6 @@ class WC_Retailcrm_Loyalty_Test extends WC_Retailcrm_Test_Case_Helper
public function responseLoyalty()
{
return [
[
'isSuccessful' => true,
'body' => json_encode(['loyaltyAccounts' => []]),
'expected' => 'id="loyaltyRegisterForm"'
],
[
'isSuccessful' => true,
'body' => json_encode(
[
'loyaltyAccounts' => [
0 => [
'active' => false,
'customer' => [
'externalId' => 1
],
'id' => 1
]
]
]
),
'expected' => 'id="loyaltyActivateForm"'
],
[
'isSuccessful' => true,
'body' => json_encode(['loyaltyAccounts' => [0 => DataLoyaltyRetailCrm::getDataLoyalty()]]),
'expected' => 'accrual of 1 bonus for each'
]
];
return DataLoyaltyRetailCrm::getDataLoyalty();
}
}