corentin_wakdo/tests/Unit/Admin/CounterOrderControllerTest.php
Imugiii 6b48a86a4d
All checks were successful
CI / php-lint (pull_request) Successful in 21s
CI / js-tests (pull_request) Successful in 26s
CI / secret-scan (push) Successful in 9s
CI / php-lint (push) Successful in 20s
CI / secret-scan (pull_request) Successful in 9s
CI / static-tests (pull_request) Successful in 46s
CI / static-tests (push) Successful in 50s
CI / js-tests (push) Successful in 24s
feat(orders): saisie commande comptoir/drive - fondation produits (CREATE_COUNTER_ORDER, mlt 4.1)
2026-06-22 10:07:19 +00:00

248 lines
9.2 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Tests\Unit\Admin;
use PHPUnit\Framework\TestCase;
use App\Auth\Csrf;
use App\Auth\SessionManager;
use App\Controllers\CounterOrderController;
use App\Core\Config;
use App\Core\Database;
use App\Core\DatabaseInterface;
use App\Core\Request;
use App\Order\OrderQueryRepository;
use App\Tests\Support\FakeDatabase;
/**
* Stub OrderQueryRepository : liste canned multi-source (rendu de la liste teste sans
* base). recent() ramene tous canaux ; le controleur filtre par source derivee du chemin.
*/
final class StubChannelOrders extends OrderQueryRepository
{
public function recent(int $limit = 50): array
{
return [
['order_number' => 'C100', 'source' => 'counter', 'service_mode' => 'dine_in', 'service_tag' => null, 'status' => 'paid', 'total_ttc_cents' => 890, 'created_at' => '2026-06-22 10:00:00', 'paid_at' => '2026-06-22 10:00:01'],
['order_number' => 'D200', 'source' => 'drive', 'service_mode' => 'drive', 'service_tag' => null, 'status' => 'paid', 'total_ttc_cents' => 990, 'created_at' => '2026-06-22 10:05:00', 'paid_at' => '2026-06-22 10:05:01'],
['order_number' => 'K9', 'source' => 'kiosk', 'service_mode' => 'takeaway', 'service_tag' => null, 'status' => 'paid', 'total_ttc_cents' => 500, 'created_at' => '2026-06-22 10:06:00', 'paid_at' => '2026-06-22 10:06:01'],
];
}
}
final class TestCounterOrderController extends CounterOrderController
{
public function __construct(
Request $request,
Config $config,
Database $database,
private readonly SessionManager $testSession,
private readonly FakeDatabase $fakeDb,
) {
parent::__construct($request, $config, $database);
}
protected function sessionManager(): SessionManager
{
return $this->testSession;
}
protected function db(): DatabaseInterface
{
return $this->fakeDb;
}
protected function orderQuery(): OrderQueryRepository
{
return new StubChannelOrders($this->fakeDb);
}
}
final class CounterOrderControllerTest extends TestCase
{
/** @var list<string> */
private array $touchedKeys = [];
private SessionManager $session;
private string $csrf = '';
protected function setUp(): void
{
$this->setEnv('SESSION_LIFETIME_IDLE', '14400');
$this->setEnv('SESSION_LIFETIME_ABSOLUTE', '36000');
$this->session = new SessionManager(new Config(), true);
$now = time();
$this->session->set('user_id', 7);
$this->session->set('role_id', 4);
$this->session->set('logged_in_at', $now - 100);
$this->session->set('last_activity', $now - 50);
$this->csrf = Csrf::token($this->session);
}
protected function tearDown(): void
{
foreach ($this->touchedKeys as $key) {
putenv($key);
}
$this->touchedKeys = [];
}
private function setEnv(string $key, string $value): void
{
$this->touchedKeys[] = $key;
putenv($key . '=' . $value);
}
private function permittedDb(): FakeDatabase
{
$db = new FakeDatabase();
$db->guardUserRow = ['is_active' => 1];
$db->userDisplayRow = ['first_name' => 'Sam', 'last_name' => 'C', 'role_label' => 'Comptoir'];
$db->canResult = true;
$db->permissionCodes = ['order.read', 'order.create'];
return $db;
}
private function get(string $path): Request
{
return new Request('GET', $path, [], [], '', '203.0.113.5');
}
/**
* @param array<string, string> $form
*/
private function post(array $form, string $path): Request
{
return new Request('POST', $path, [], ['content-type' => 'application/x-www-form-urlencoded'], http_build_query($form), '203.0.113.5');
}
private function controller(Request $request, FakeDatabase $db): TestCounterOrderController
{
return new TestCounterOrderController($request, new Config(), new Database(new Config()), $this->session, $db);
}
public function testIndexRequiresOrderCreate(): void
{
$db = $this->permittedDb();
$db->canResult = false;
$db->permissionCodes = [];
self::assertSame(403, $this->controller($this->get('/counter/orders'), $db)->index()->status());
}
public function testCounterIndexListsOnlyCounterOrders(): void
{
$response = $this->controller($this->get('/counter/orders'), $this->permittedDb())->index();
self::assertSame(200, $response->status());
$body = $response->body();
self::assertStringContainsString('Commandes comptoir', $body);
self::assertStringContainsString('C100', $body); // canal counter present
self::assertStringNotContainsString('D200', $body); // canal drive exclu
self::assertStringNotContainsString('K9', $body); // kiosk exclu
self::assertStringContainsString('Nouvelle commande', $body);
}
public function testDriveIndexListsOnlyDriveOrders(): void
{
$response = $this->controller($this->get('/drive/orders'), $this->permittedDb())->index();
self::assertSame(200, $response->status());
$body = $response->body();
self::assertStringContainsString('Commandes drive', $body);
self::assertStringContainsString('D200', $body);
self::assertStringNotContainsString('C100', $body);
}
public function testCreateRendersProductComposer(): void
{
$db = $this->permittedDb();
$db->productsRows = [
['id' => 12, 'category_id' => 1, 'name' => 'Cheeseburger', 'description' => null, 'price_cents' => 890, 'image_path' => null, 'display_order' => 1],
];
$response = $this->controller($this->get('/counter/orders/new'), $db)->create();
self::assertSame(200, $response->status());
$body = $response->body();
self::assertStringContainsString('Cheeseburger', $body);
self::assertStringContainsString('qty_12', $body); // champ quantite par produit
self::assertStringContainsString('service_mode', $body);
}
public function testStoreRejectsInvalidCsrf(): void
{
$db = $this->permittedDb();
$request = $this->post(['service_mode' => 'dine_in', 'qty_12' => '1'], '/counter/orders');
self::assertSame(403, $this->controller($request, $db)->store()->status());
}
public function testStoreEmptyCartReRendersWith422(): void
{
$db = $this->permittedDb();
$db->productsRows = [
['id' => 12, 'category_id' => 1, 'name' => 'Cheeseburger', 'description' => null, 'price_cents' => 890, 'image_path' => null, 'display_order' => 1],
];
$request = $this->post(['_csrf' => $this->csrf, 'service_mode' => 'dine_in', 'qty_12' => '0'], '/counter/orders');
$response = $this->controller($request, $db)->store();
self::assertSame(422, $response->status());
self::assertFalse($db->wrote('INSERT INTO customer_order'));
}
public function testStoreCreatesCounterOrderAndRedirects(): void
{
$db = $this->permittedDb();
$db->productRow = ['id' => 12, 'name' => 'Cheeseburger', 'price_cents' => 890, 'vat_rate' => 100, 'is_available' => 1];
$db->lastInsertId = 100;
// pay() (encaissement immediat) relit la commande persistee par numero.
$db->orderByNumberRow = ['id' => 100, 'order_number' => 'C100', 'total_ttc_cents' => 890, 'status' => 'pending_payment'];
$request = $this->post(['_csrf' => $this->csrf, 'service_mode' => 'dine_in', 'qty_12' => '2'], '/counter/orders');
$response = $this->controller($request, $db)->store();
self::assertSame(302, $response->status());
self::assertSame('/counter/orders', $response->header('Location'));
self::assertTrue($db->wrote('INSERT INTO customer_order'));
// Source auto-tagguee counter, acteur = equipier de session (id 7).
$insert = $this->writeParams($db, 'INSERT INTO customer_order');
self::assertSame('counter', $insert['source']);
self::assertSame(7, $insert['acting']);
// Encaissement immediat : transition paid emise.
self::assertTrue($db->wrote('UPDATE customer_order SET status'));
}
public function testStoreDriveRejectsNonDriveServiceMode(): void
{
// RG-T09 : au drive, service_mode doit etre drive ; sinon re-rendu 422, pas d'INSERT.
$db = $this->permittedDb();
$db->productRow = ['id' => 12, 'name' => 'Cheeseburger', 'price_cents' => 890, 'vat_rate' => 100, 'is_available' => 1];
$request = $this->post(['_csrf' => $this->csrf, 'service_mode' => 'takeaway', 'qty_12' => '1'], '/drive/orders');
$response = $this->controller($request, $db)->store();
self::assertSame(422, $response->status());
self::assertFalse($db->wrote('INSERT INTO customer_order'));
}
/**
* Parametres lies de la premiere ecriture dont le SQL contient $needle.
*
* @return array<string|int, mixed>
*/
private function writeParams(FakeDatabase $db, string $needle): array
{
foreach ($db->writes as $write) {
if (str_contains($write['sql'], $needle)) {
return $write['params'];
}
}
return [];
}
}