You are here

class OrderVariationTypeTest in Commerce Core 8.2

@coversDefaultClass \Drupal\commerce_product\Plugin\Commerce\Condition\OrderVariationType @group commerce

Hierarchy

Expanded class hierarchy of OrderVariationTypeTest

File

modules/product/tests/src/Unit/Plugin/Commerce/Condition/OrderVariationTypeTest.php, line 15

Namespace

Drupal\Tests\commerce_product\Unit\Plugin\Commerce\Condition
View source
class OrderVariationTypeTest extends UnitTestCase {

  /**
   * ::covers evaluate.
   */
  public function testEvaluate() {
    $configuration = [];
    $configuration['variation_types'] = [
      'bag',
    ];
    $condition = new OrderVariationType($configuration, 'order_variation_type', [
      'entity_type' => 'commerce_order',
    ]);

    // Order item with no purchasable entity.
    $first_order_item = $this
      ->prophesize(OrderItemInterface::class);
    $first_order_item
      ->getEntityTypeId()
      ->willReturn('commerce_order_item');
    $first_order_item
      ->getPurchasedEntity()
      ->willReturn(NULL);
    $first_order_item = $first_order_item
      ->reveal();

    // Order item with a glass variation.
    $product_variation = $this
      ->prophesize(ProductVariationInterface::class);
    $product_variation
      ->getEntityTypeId()
      ->willReturn('commerce_product_variation');
    $product_variation
      ->bundle()
      ->willReturn('glass');
    $product_variation = $product_variation
      ->reveal();
    $second_order_item = $this
      ->prophesize(OrderItemInterface::class);
    $second_order_item
      ->getEntityTypeId()
      ->willReturn('commerce_order_item');
    $second_order_item
      ->getPurchasedEntity()
      ->willReturn($product_variation);
    $second_order_item = $second_order_item
      ->reveal();
    $order = $this
      ->buildOrder([
      $first_order_item,
    ]);
    $this
      ->assertFalse($condition
      ->evaluate($order));
    $order = $this
      ->buildOrder([
      $second_order_item,
    ]);
    $this
      ->assertFalse($condition
      ->evaluate($order));
    $order = $this
      ->buildOrder([
      $first_order_item,
      $second_order_item,
    ]);
    $this
      ->assertFalse($condition
      ->evaluate($order));
    $configuration['variation_types'] = [
      'glass',
    ];
    $condition
      ->setConfiguration($configuration);
    $order = $this
      ->buildOrder([
      $first_order_item,
      $second_order_item,
    ]);
    $this
      ->assertTrue($condition
      ->evaluate($order));
  }

  /**
   * Builds a mock order with the given order items.
   *
   * @param \Drupal\commerce_order\Entity\OrderItemInterface[] $order_items
   *   The order items.
   *
   * @return object
   *   The mock order.
   */
  protected function buildOrder(array $order_items) {
    $order = $this
      ->prophesize(OrderInterface::class);
    $order
      ->getEntityTypeId()
      ->willReturn('commerce_order');
    $order
      ->getItems()
      ->wilLReturn($order_items);
    $order = $order
      ->reveal();
    return $order;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
OrderVariationTypeTest::buildOrder protected function Builds a mock order with the given order items.
OrderVariationTypeTest::testEvaluate public function ::covers evaluate.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340