48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Checkout\Cart\Controllers;
|
|
|
|
use UnitTester;
|
|
use Codeception\Example;
|
|
use Webkul\Checkout\Models\Cart;
|
|
use Webkul\Shop\Http\Controllers\CartController;
|
|
|
|
class CartControllerCest
|
|
{
|
|
/**
|
|
* @param \UnitTester $I
|
|
*
|
|
* @param \Example $scenario
|
|
*
|
|
* @throws \Exception
|
|
* @dataProvider getOnWarningAddingToCartScenarios
|
|
*/
|
|
public function testOnWarningAddingToCart(UnitTester $I, Example $scenario): void
|
|
{
|
|
$I->assertEquals($scenario['expected'],
|
|
$I->executeFunction(
|
|
CartController::class,
|
|
'onWarningAddingToCart',
|
|
[$scenario['result']]
|
|
)
|
|
);
|
|
}
|
|
|
|
protected function getOnWarningAddingToCartScenarios(): array
|
|
{
|
|
return [
|
|
[
|
|
'result' => ['key' => 'value', 'warning' => 'Hello World. Something went wrong.'],
|
|
'expected' => true,
|
|
],
|
|
[
|
|
'result' => ['key' => 'value'],
|
|
'expected' => false,
|
|
],
|
|
[
|
|
'result' => new Cart(),
|
|
'expected' => false,
|
|
],
|
|
];
|
|
}
|
|
} |