Files
alrahma_sunday_school_api/tests/Feature/Api/V1/FullSurface/ApiBatch19PaymentAllocationAndBalanceContractTest.php
T
2026-06-11 11:46:12 -04:00

41 lines
2.0 KiB
PHP

<?php
namespace Tests\Feature\Api\V1\FullSurface;
use Tests\Feature\Api\V1\FullSurface\Support\FullSurfaceE2EContractCase;
class ApiBatch19PaymentAllocationAndBalanceContractTest extends FullSurfaceE2EContractCase
{
public function test_batch19_payment_allocation_and_balance_stays_controlled(): void
{
$routes = $this->apiRoutesContainingAny(['payments', 'payment', 'invoice', 'invoices', 'finance', 'ledger', 'allocation', 'balance', 'fees']);
$payload = [
'invoice_id' => 1,
'invoice_ids' => [1, 999999],
'allocations' => [['invoice_id' => 1, 'amount' => 999999.99], ['invoice_id' => 999999, 'amount' => -1]],
'overpay' => true,
'balance' => '-1000.00',
'auto_close_invoice' => true,
];
foreach (array_slice($routes, 0, 110) as $route) {
$method = $this->primaryMethod($route);
$uri = $route->uri();
$actor = $this->actorFor($uri);
if (str_contains($uri, 'admin') || str_contains($uri, 'roles') || str_contains($uri, 'permissions') || str_contains($uri, 'backup') || str_contains($uri, 'restore')) {
$actor = $this->studentUser;
}
$response = $this->requestAs($actor, $method, $uri, $this->payloadFor($method, $uri) + $payload);
$this->assertControlled($response, $method, $uri);
$this->assertNotEquals(500, $response->getStatusCode(), $method.' '.$uri.' crashed during Batch 19 payment allocation and invoice balance invariants probe.');
$body = strtolower($response->getContent());
foreach (['sqlstate', 'stack trace', 'app_key', 'remember_token', 'api_token', 'massassignmentexception', 'foreign key constraint', 'database.sqlite'] as $leak) {
$this->assertStringNotContainsString($leak, $body, $method.' '.$uri.' leaked '.$leak.' during Batch 19 payment allocation and invoice balance invariants probe.');
}
}
}
}