You are here

CartIntegrationTest.php in Commerce Core 8.2

File

modules/log/tests/src/Kernel/CartIntegrationTest.php
View source
<?php

namespace Drupal\Tests\commerce_log\Kernel;

use Drupal\commerce_order\Entity\OrderItem;
use Drupal\commerce_price\Price;
use Drupal\commerce_product\Entity\ProductVariation;
use Drupal\commerce_product\Entity\ProductVariationType;
use Drupal\Tests\commerce_cart\Kernel\CartKernelTestBase;

/**
 * Tests integration with cart events.
 *
 * @group commerce
 */
class CartIntegrationTest extends CartKernelTestBase {

  /**
   * A sample user.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $user;

  /**
   * The variation to test against.
   *
   * @var \Drupal\commerce_product\Entity\ProductVariation
   */
  protected $variation;

  /**
   * The log storage.
   *
   * @var \Drupal\commerce_log\LogStorageInterface
   */
  protected $logStorage;

  /**
   * The log view builder.
   *
   * @var \Drupal\commerce_log\LogViewBuilder
   */
  protected $logViewBuilder;

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'commerce_log',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->installEntitySchema('commerce_log');
    $this->user = $this
      ->createUser();
    $this->logStorage = $this->container
      ->get('entity_type.manager')
      ->getStorage('commerce_log');
    $this->logViewBuilder = $this->container
      ->get('entity_type.manager')
      ->getViewBuilder('commerce_log');

    // Turn off title generation to allow explicit values to be used.
    $variation_type = ProductVariationType::load('default');
    $variation_type
      ->setGenerateTitle(FALSE);
    $variation_type
      ->save();
    $this->variation = ProductVariation::create([
      'type' => 'default',
      'sku' => 'TEST_' . strtolower($this
        ->randomMachineName()),
      'title' => 'Testing product',
      'status' => 1,
      'price' => new Price('12.00', 'USD'),
    ]);
  }

  /**
   * Tests that a log is generated when an order is placed.
   */
  public function testAddedToCart() {
    $cart = $this->cartProvider
      ->createCart('default', $this->store, $this->user);
    $this->cartManager
      ->addEntity($cart, $this->variation);
    $logs = $this->logStorage
      ->loadMultipleByEntity($cart);
    $this
      ->assertEquals(1, count($logs));
    $log = reset($logs);
    $build = $this->logViewBuilder
      ->view($log);
    $this
      ->render($build);
    $this
      ->assertText("{$this->variation->label()} added to the cart.");
  }

  /**
   * Tests that a log is not generated when a non-purchasable entity added.
   *
   * The cart manager does not fire the `CartEvents::CART_ENTITY_ADD` event
   * unless there is a purchasable entity.
   */
  public function testAddedToCartNoPurchasableEntity() {
    $cart = $this->cartProvider
      ->createCart('default', $this->store, $this->user);
    $order_item = OrderItem::create([
      'title' => 'Membership subscription',
      'type' => 'test',
      'quantity' => 1,
      'unit_price' => [
        'number' => '10.00',
        'currency_code' => 'USD',
      ],
    ]);
    $order_item
      ->save();
    $this->cartManager
      ->addOrderItem($cart, $order_item);
    $logs = $this->logStorage
      ->loadMultipleByEntity($cart);
    $this
      ->assertEquals(0, count($logs));
  }

  /**
   * Tests that a log is generated when an order is placed.
   */
  public function testRemovedFromCart() {
    $cart = $this->cartProvider
      ->createCart('default', $this->store, $this->user);
    $order_item = $this->cartManager
      ->addEntity($cart, $this->variation);
    $this->cartManager
      ->removeOrderItem($cart, $order_item);
    $logs = $this->logStorage
      ->loadMultipleByEntity($cart);
    $this
      ->assertEquals(2, count($logs));
    $log = end($logs);
    $build = $this->logViewBuilder
      ->view($log);
    $this
      ->render($build);
    $this
      ->assertText("{$this->variation->label()} removed from the cart.");
  }

  /**
   * Tests that a log generated when a non-purchasable entity removed.
   */
  public function testRemovedFromCartNoPurchasableEntity() {
    $cart = $this->cartProvider
      ->createCart('default', $this->store, $this->user);
    $order_item = OrderItem::create([
      'title' => 'Membership subscription',
      'type' => 'test',
      'quantity' => 1,
      'unit_price' => [
        'number' => '10.00',
        'currency_code' => 'USD',
      ],
    ]);
    $order_item
      ->save();
    $order_item = $this->cartManager
      ->addOrderItem($cart, $order_item);
    $this->cartManager
      ->removeOrderItem($cart, $order_item);
    $logs = $this->logStorage
      ->loadMultipleByEntity($cart);
    $this
      ->assertEquals(1, count($logs));
    $log = end($logs);
    $build = $this->logViewBuilder
      ->view($log);
    $this
      ->render($build);
    $this
      ->assertText("{$order_item->label()} removed from the cart.");
  }

}

Classes

Namesort descending Description
CartIntegrationTest Tests integration with cart events.