Files
opensourcepos/tests/Models/CustomerRewardPointsTest.php
T
objecttothis 29a9b1a7e7 Bugfix: Resolve Race Condition in Rewards and Gift Card Spending (#4640)
* Implement atomic updates for gift card and reward point decrements, enhance error handling for insufficient balances, and add regression tests for concurrency safety.

* Add translations for insufficient gift card balance and reward points error messages across all supported languages.

* Reorder `clear_suspended_sale_detail` call to ensure transactional consistency.

* Reorder `clear_all` call to align with success and error handling logic.

* Ensure soft-deleted gift cards are excluded in balance updates.

* Refactor change_quantity logic with atomic upserts, improve error handling for insufficient stock, and update related tests and constants.

* Added check for NEW_ENTRY

* Added unit tests to test changes.

* Fix class name casing in ItemQuantityTest for consistency.

* Fix Bulgarian translations for insufficient balance error messages in Sales module.

* Fix Greek translations for insufficient balance error messages in Sales module.

* Fix Armenian translations for insufficient balance error messages in Sales module.

* Fix Tamil translations for insufficient balance error messages in Sales module.

* Implement race condition testing for database methods with concurrent process support.

* Fix class name casing in ItemTest for consistency.

* Improve concurrent process handling in race condition tests; add readiness and synchronization barriers.

* Improve handling of process I/O streams and timeout management in race condition tests.

* Add test for decrementing gift card value when marked as deleted

* Add `finally` block to ensure proper cleanup in async database race condition tests

* Improve error handling and timeout management in async database race condition tests.

* Refactor test utilities to use shared `EmployeeFixtureTrait` and `ItemFixtureTrait`.

* Track process exit codes explicitly in race condition tests for improved error detection and debugging.

* Improve error handling in `ConcurrentDbRaceTrait` by adding exceptions for `mysqli_poll` and `mysqli_reap_async_query`.

Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com>

---------

Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com>
2026-08-20 02:24:23 +04:00

134 lines
4.0 KiB
PHP

<?php
namespace Tests\Models;
use App\Models\Customer;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\DatabaseTestTrait;
use Config\Database;
use Tests\Support\ConcurrentDbRaceTrait;
/**
* Regression tests for GHSA-995p-52qw-5hh2: adjustRewardPoints() must apply
* its balance check and its write in a single atomic UPDATE, so that two
* concurrent reward-point spends against the same customer can never both
* read the same stale balance and double-spend it.
*/
class CustomerRewardPointsTest extends CIUnitTestCase
{
use DatabaseTestTrait;
use ConcurrentDbRaceTrait;
protected $migrate = true;
protected $migrateOnce = true;
protected $refresh = false;
protected $namespace = null;
public static function setUpBeforeClass(): void
{
$seeder = Database::seeder('tests');
$seeder->call('TestDatabaseBootstrapSeeder');
}
protected function setUp(): void
{
parent::setUp();
}
protected function createCustomerWithPoints(int $points): int
{
$db = \Config\Database::connect();
$db->table('people')->insert([
'first_name' => 'Reward',
'last_name' => 'Customer',
'phone_number' => '555-0100',
'email' => 'reward-customer-' . uniqid() . '@test.com',
'address_1' => '',
'address_2' => '',
'city' => '',
'state' => '',
'zip' => '',
'country' => '',
'comments' => '',
]);
$personId = (int) $db->insertID();
$db->table('customers')->insert([
'person_id' => $personId,
'employee_id' => 1,
'points' => $points,
]);
return $personId;
}
protected function getCustomerPoints(int $personId): int
{
$row = \Config\Database::connect()->table('customers')
->where('person_id', $personId)
->get()
->getRow();
return (int) $row->points;
}
public function testAdjustRewardPointsIncrementSucceeds(): void
{
$personId = $this->createCustomerWithPoints(10);
$customerModel = model(Customer::class);
$result = $customerModel->adjustRewardPoints($personId, 5);
$this->assertTrue($result);
$this->assertSame(15, $this->getCustomerPoints($personId));
}
public function testAdjustRewardPointsDecrementSucceedsWithSufficientPoints(): void
{
$personId = $this->createCustomerWithPoints(100);
$customerModel = model(Customer::class);
$result = $customerModel->adjustRewardPoints($personId, -40);
$this->assertTrue($result);
$this->assertSame(60, $this->getCustomerPoints($personId));
}
public function testAdjustRewardPointsDecrementFailsWithInsufficientPoints(): void
{
$personId = $this->createCustomerWithPoints(20);
$customerModel = model(Customer::class);
$result = $customerModel->adjustRewardPoints($personId, -40);
$this->assertFalse($result);
$this->assertSame(20, $this->getCustomerPoints($personId));
}
public function testAdjustRewardPointsDecrementExactBalanceSucceeds(): void
{
$personId = $this->createCustomerWithPoints(40);
$customerModel = model(Customer::class);
$result = $customerModel->adjustRewardPoints($personId, -40);
$this->assertTrue($result);
$this->assertSame(0, $this->getCustomerPoints($personId));
}
public function testAdjustRewardPointsConcurrentDecrementsOneWins(): void
{
$personId = $this->createCustomerWithPoints(100);
[$result1, $result2] = $this->raceTwoProcesses(
'rewardPoints',
[$personId, -60],
[$personId, -60]
);
$this->assertSame(1, (int) $result1 + (int) $result2);
$this->assertSame(40, $this->getCustomerPoints($personId));
}
}