View source
<?php
namespace Drupal\Tests\commerce_promotion\Kernel;
use Drupal\commerce_order\Entity\OrderItem;
use Drupal\commerce_order\Entity\Order;
use Drupal\commerce_product\Entity\Product;
use Drupal\commerce_product\Entity\ProductType;
use Drupal\commerce_product\Entity\ProductVariation;
use Drupal\commerce_promotion\Entity\Promotion;
use Drupal\Tests\commerce_order\Kernel\OrderKernelTestBase;
class PromotionConditionTest extends OrderKernelTestBase {
protected $order;
public static $modules = [
'commerce_promotion',
'commerce_promotion_test',
];
protected function setUp() : void {
parent::setUp();
$this
->installEntitySchema('commerce_promotion');
$this
->installConfig([
'commerce_promotion',
]);
$this
->installSchema('commerce_promotion', [
'commerce_promotion_usage',
]);
$user = $this
->createUser();
$this->order = Order::create([
'type' => 'default',
'state' => 'completed',
'mail' => 'test@example.com',
'ip_address' => '127.0.0.1',
'order_number' => '6',
'store_id' => $this->store,
'uid' => $user
->id(),
'order_items' => [],
]);
}
public function testPromotionConditions() {
$promotion = Promotion::create([
'name' => 'Promotion 1',
'order_types' => [
$this->order
->bundle(),
],
'stores' => [
$this->store
->id(),
],
'status' => TRUE,
'offer' => [
'target_plugin_id' => 'order_percentage_off',
'target_plugin_configuration' => [
'percentage' => '0.10',
],
],
'conditions' => [
[
'target_plugin_id' => 'order_total_price',
'target_plugin_configuration' => [
'operator' => '<',
'amount' => [
'number' => '20.00',
'currency_code' => 'USD',
],
],
],
[
'target_plugin_id' => 'order_total_price',
'target_plugin_configuration' => [
'operator' => '>',
'amount' => [
'number' => '100.00',
'currency_code' => 'USD',
],
],
],
],
'condition_operator' => 'OR',
]);
$promotion
->save();
$order_item = OrderItem::create([
'type' => 'test',
'quantity' => 3,
'unit_price' => [
'number' => '10.00',
'currency_code' => 'USD',
],
]);
$order_item
->save();
$this->order
->addItem($order_item);
$result = $promotion
->applies($this->order);
$this
->assertFalse($result);
$order_item
->setQuantity(1);
$order_item
->save();
$this->order
->save();
$result = $promotion
->applies($this->order);
$this
->assertTrue($result);
$order_item
->setQuantity(11);
$order_item
->save();
$this->order
->save();
$result = $promotion
->applies($this->order);
$this
->assertTrue($result);
$promotion
->setConditionOperator('AND');
$result = $promotion
->applies($this->order);
$this
->assertFalse($result);
}
public function testOfferConditions() {
$promotion = Promotion::create([
'name' => 'Promotion 1',
'order_types' => [
$this->order
->bundle(),
],
'stores' => [
$this->store
->id(),
],
'status' => TRUE,
'offer' => [
'target_plugin_id' => 'order_item_percentage_off',
'target_plugin_configuration' => [
'conditions' => [
[
'plugin' => 'order_item_product_type',
'configuration' => [
'product_types' => [
'default',
],
],
],
],
'percentage' => '0.10',
],
],
'conditions' => [
[
'target_plugin_id' => 'order_total_price',
'target_plugin_configuration' => [
'operator' => '>',
'amount' => [
'number' => '30.00',
'currency_code' => 'USD',
],
],
],
],
'condition_operator' => 'AND',
]);
$promotion
->save();
$product_type = ProductType::create([
'id' => 'test',
'label' => 'Test',
'variationType' => 'default',
]);
$product_type
->save();
$first_variation = ProductVariation::create([
'type' => 'default',
'sku' => $this
->randomMachineName(),
'price' => [
'number' => '20',
'currency_code' => 'USD',
],
]);
$first_variation
->save();
$second_variation = ProductVariation::create([
'type' => 'default',
'sku' => $this
->randomMachineName(),
'price' => [
'number' => '30',
'currency_code' => 'USD',
],
]);
$second_variation
->save();
$first_product = Product::create([
'type' => 'default',
'title' => $this
->randomMachineName(),
'stores' => [
$this->store,
],
'variations' => [
$first_variation,
],
]);
$first_product
->save();
$second_product = Product::create([
'type' => 'test',
'title' => $this
->randomMachineName(),
'stores' => [
$this->store,
],
'variations' => [
$second_variation,
],
]);
$second_product
->save();
$order_item_storage = \Drupal::entityTypeManager()
->getStorage('commerce_order_item');
$first_order_item = $order_item_storage
->createFromPurchasableEntity($first_variation);
$first_order_item
->save();
$second_order_item = $order_item_storage
->createFromPurchasableEntity($second_variation);
$second_order_item
->save();
$this->order
->setItems([
$first_order_item,
$second_order_item,
]);
$this->order->state = 'draft';
$this->order
->save();
$this->order = $this
->reloadEntity($this->order);
$first_order_item = $this
->reloadEntity($first_order_item);
$second_order_item = $this
->reloadEntity($second_order_item);
$this
->assertCount(1, $first_order_item
->getAdjustments());
$this
->assertCount(0, $second_order_item
->getAdjustments());
}
}