You are here

PriceCalculatedFormatterTest.php in Commerce Core 8.2

File

modules/order/tests/src/Kernel/Formatter/PriceCalculatedFormatterTest.php
View source
<?php

namespace Drupal\Tests\commerce_order\Kernel\Formatter;

use Drupal\commerce_price\Price;
use Drupal\commerce_product\Entity\Product;
use Drupal\commerce_product\Entity\ProductVariation;
use Drupal\commerce_promotion\Entity\Promotion;
use Drupal\commerce_tax\Entity\TaxType;
use Drupal\Tests\commerce_order\Kernel\OrderKernelTestBase;

/**
 * Tests the calculated price formatter.
 *
 * @group commerce
 */
class PriceCalculatedFormatterTest extends OrderKernelTestBase {

  /**
   * The first variation.
   *
   * @var \Drupal\commerce_product\Entity\ProductVariationInterface
   */
  protected $firstVariation;

  /**
   * The second variation.
   *
   * @var \Drupal\commerce_product\Entity\ProductVariationInterface
   */
  protected $secondVariation;

  /**
   * The commerce_product_variation view builder.
   *
   * @var \Drupal\Core\Entity\EntityViewBuilderInterface
   */
  protected $viewBuilder;

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

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->installEntitySchema('commerce_promotion');
    $this
      ->installSchema('commerce_promotion', [
      'commerce_promotion_usage',
    ]);
    $promotion = Promotion::create([
      'name' => 'Promotion 1',
      'order_types' => [
        'default',
      ],
      'stores' => [
        $this->store
          ->id(),
      ],
      'status' => TRUE,
      'offer' => [
        'target_plugin_id' => 'order_item_percentage_off',
        'target_plugin_configuration' => [
          'percentage' => '0.5',
        ],
      ],
    ]);
    $promotion
      ->save();

    // The default store is US-WI, so imagine that the US has VAT.
    TaxType::create([
      'id' => 'us_vat',
      'label' => 'US VAT',
      'plugin' => 'custom',
      'configuration' => [
        'display_inclusive' => TRUE,
        'rates' => [
          [
            'id' => 'standard',
            'label' => 'Standard',
            'percentage' => '0.2',
          ],
        ],
        'territories' => [
          [
            'country_code' => 'US',
            'administrative_area' => 'WI',
          ],
          [
            'country_code' => 'US',
            'administrative_area' => 'SC',
          ],
        ],
      ],
    ])
      ->save();
    $first_variation = ProductVariation::create([
      'type' => 'default',
      'sku' => 'TEST_CALCULATED_PRICE',
      'status' => 1,
      'price' => new Price('3.00', 'USD'),
    ]);
    $first_variation
      ->save();
    $second_variation = ProductVariation::create([
      'type' => 'default',
      'sku' => 'TEST_CALCULATED_PRICE2',
      'status' => 1,
      'price' => new Price('4.00', 'USD'),
    ]);
    $second_variation
      ->save();
    $product = Product::create([
      'type' => 'default',
      'title' => 'Default testing product',
      'stores' => [
        $this->store
          ->id(),
      ],
      'variations' => [
        $first_variation,
        $second_variation,
      ],
    ]);
    $product
      ->save();
    $this->firstVariation = $this
      ->reloadEntity($first_variation);
    $this->secondVariation = $this
      ->reloadEntity($second_variation);
    $user = $this
      ->createUser([
      'mail' => 'user1@example.com',
    ]);
    $this->container
      ->get('current_user')
      ->setAccount($user);
    $this->viewBuilder = $this->container
      ->get('entity_type.manager')
      ->getViewBuilder('commerce_product_variation');
  }

  /**
   * Tests the rendered output.
   */
  public function testRender() {
    $variation_display = commerce_get_entity_display('commerce_product_variation', 'default', 'view');
    $variation_display
      ->setComponent('price', [
      'label' => 'above',
      'type' => 'commerce_price_calculated',
      'settings' => [],
    ]);
    $variation_display
      ->save();
    $variation_build = $this->viewBuilder
      ->view($this->firstVariation);
    $this
      ->render($variation_build);
    $this
      ->assertEscaped('$3.00');
    $variation_build = $this->viewBuilder
      ->view($this->secondVariation);
    $this
      ->render($variation_build);
    $this
      ->assertEscaped('$4.00');
    $variation_display
      ->setComponent('price', [
      'label' => 'above',
      'type' => 'commerce_price_calculated',
      'settings' => [
        'adjustment_types' => [
          'tax' => 'tax',
        ],
      ],
    ]);
    $variation_display
      ->save();
    $variation_build = $this->viewBuilder
      ->view($this->firstVariation);
    $this
      ->render($variation_build);
    $this
      ->assertEscaped('$3.60');

    // The test commerce-price-calculated template outputs the adjustments as
    // well.
    $this
      ->assertEscaped('Tax: $0.60');
    $variation_build = $this->viewBuilder
      ->view($this->secondVariation);
    $this
      ->render($variation_build);
    $this
      ->assertEscaped('$4.80');
    $this
      ->assertEscaped('Tax: $0.80');
    $variation_display
      ->setComponent('price', [
      'label' => 'above',
      'type' => 'commerce_price_calculated',
      'settings' => [
        'adjustment_types' => [
          'tax' => 'tax',
          'promotion' => 'promotion',
        ],
      ],
    ]);
    $variation_display
      ->save();
    $variation_build = $this->viewBuilder
      ->view($this->firstVariation);
    $this
      ->render($variation_build);
    $this
      ->assertEscaped('$1.80');
    $this
      ->assertEscaped('Discount: -$1.80');
    $this
      ->assertEscaped('Tax: $0.60');
    $variation_build = $this->viewBuilder
      ->view($this->secondVariation);
    $this
      ->render($variation_build);
    $this
      ->assertEscaped('$2.40');
    $this
      ->assertEscaped('Discount: -$2.40');
    $this
      ->assertEscaped('Tax: $0.80');
  }

}

Classes

Namesort descending Description
PriceCalculatedFormatterTest Tests the calculated price formatter.