47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Functional\CartRule;
|
|
|
|
use FunctionalTester;
|
|
use Webkul\CartRule\Models\CartRule;
|
|
|
|
class CartRuleCreateCest
|
|
{
|
|
public function testCartRuleCreation(FunctionalTester $I)
|
|
{
|
|
$I->loginAsAdmin();
|
|
|
|
$I->amOnAdminRoute('admin.cart-rules.index');
|
|
|
|
// we are dealing with `Vue.js` so we can not do classical form filling
|
|
$I->sendAjaxPostRequest(route('admin.cart-rules.store'), [
|
|
'_token' => csrf_token(),
|
|
'name' => 'Demo Cart Rule',
|
|
|
|
// the following fields are important to send with the POST request
|
|
'starts_from' => '',
|
|
'ends_till' => '',
|
|
|
|
'use_auto_generation' => 0,
|
|
'coupon_type' => 0, // no coupon
|
|
'action_type' => 'by_percent',
|
|
'coupon_code' => 'coupon',
|
|
'discount_amount' => '10',
|
|
|
|
'channels' => [
|
|
'default',
|
|
],
|
|
|
|
'customer_groups' => [
|
|
'guest',
|
|
],
|
|
]);
|
|
|
|
$cartRule = $I->grabRecord(CartRule::class, [
|
|
'name' => 'Demo Cart Rule',
|
|
]);
|
|
|
|
$I->seeResponseCodeIsSuccessful();
|
|
}
|
|
}
|