Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Core] Add missing spec for ContainsProductRuleChecker #3340

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<?php

/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace spec\Sylius\Component\Core\Promotion\Checker;

use PhpSpec\ObjectBehavior;
use Sylius\Component\Core\Model\OrderInterface;
use Sylius\Component\Core\Model\OrderItem;
use Sylius\Component\Core\Model\ProductVariant;
use Sylius\Component\Promotion\Exception\UnsupportedTypeException;
use Sylius\Component\Promotion\Model\PromotionSubjectInterface;

/**
* @author Piotr Walków <[email protected]>
*/
class ContainsProductRuleCheckerSpec extends ObjectBehavior
{
function it_is_initialibable()
{
$this->shouldHaveType('Sylius\Component\Core\Promotion\Checker\ContainsProductRuleChecker');
}

function it_is_sylius_rule_checker()
{
$this->shouldImplement('Sylius\Component\Promotion\Checker\RuleCheckerInterface');
}

function it_throws_exception_on_invalid_subject(PromotionSubjectInterface $subject)
{
$this->shouldThrow(UnsupportedTypeException::class)->duringIsEligible($subject, []);
}

function it_returns_true_if_variant_is_right_and_exclude_is_not_set(
OrderInterface $subject,
OrderItem $orderItem,
ProductVariant $variant
) {
$subject->getItems()->willReturn([$orderItem]);
$orderItem->getVariant()->willReturn($variant);
$variant->getId()->willReturn(1);

$this->isEligible($subject, ['variant' => 1, 'exclude' => false])->shouldReturn(true);
}

function it_returns_false_if_variant_is_right_and_exclude_is_set(
OrderInterface $subject,
OrderItem $orderItem,
ProductVariant $variant
) {
$subject->getItems()->willReturn([$orderItem]);
$orderItem->getVariant()->willReturn($variant);
$variant->getId()->willReturn(1);

$this->isEligible($subject, ['variant' => 1, 'exclude' => true])->shouldReturn(false);
}

function it_returns_true_if_variant_is_not_included_and_exclude_is_not_set(
OrderInterface $subject,
OrderItem $orderItem,
ProductVariant $variant
) {
$subject->getItems()->willReturn([$orderItem]);
$orderItem->getVariant()->willReturn($variant);
$variant->getId()->willReturn(2);

$this->isEligible($subject, ['variant' => 1, 'exclude' => true])->shouldReturn(true);
}

function it_returns_false_if_variant_is_not_included_and_exclude_is_not_set(
OrderInterface $subject,
OrderItem $orderItem,
ProductVariant $variant
) {
$subject->getItems()->willReturn([$orderItem]);
$orderItem->getVariant()->willReturn($variant);
$variant->getId()->willReturn(2);

$this->isEligible($subject, ['variant' => 1, 'exclude' => false])->shouldReturn(false);
}
}