You are here

class OrderItemPurchasedEntityTest in Commerce Core 8.2

@coversDefaultClass \Drupal\commerce_order\Plugin\Commerce\Condition\OrderItemPurchasedEntity @group commerce

Hierarchy

Expanded class hierarchy of OrderItemPurchasedEntityTest

File

modules/order/tests/src/Unit/Plugin/Commerce/Condition/OrderItemPurchasedEntityTest.php, line 17

Namespace

Drupal\Tests\commerce_order\Unit\Plugin\Commerce\Condition
View source
class OrderItemPurchasedEntityTest extends UnitTestCase {

  /**
   * @covers ::evaluate
   */
  public function testEvaluate() {
    $entity_type_manager = $this
      ->prophesize(EntityTypeManagerInterface::class);
    $entity_type = $this
      ->prophesize(EntityTypeInterface::class);
    $entity_type
      ->id()
      ->willReturn('commerce_product_variation');
    $entity_type_manager
      ->getDefinition('commerce_product_variation')
      ->willReturn($entity_type
      ->reveal());
    $entity_type_manager = $entity_type_manager
      ->reveal();
    $entity_uuid_mapper = $this
      ->prophesize(EntityUuidMapperInterface::class);
    $entity_uuid_mapper = $entity_uuid_mapper
      ->reveal();
    $configuration = [];
    $configuration['entities'] = [
      '62e428e1-88a6-478c-a8c6-a554ca2332ae',
    ];
    $condition = new OrderItemPurchasedEntity($configuration, 'order_item_variation', [
      'entity_type' => 'commerce_order_item',
      'purchasable_entity_type' => 'commerce_product_variation',
    ], $entity_type_manager, $entity_uuid_mapper);

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

    // Order item with the second variation.
    $purchased_entity = $this
      ->prophesize(ProductVariationInterface::class);
    $purchased_entity
      ->getEntityTypeId()
      ->willReturn('commerce_product_variation');
    $purchased_entity
      ->uuid()
      ->willReturn('30df59bd-7b03-4cf7-bb35-d42fc49f0651');
    $purchased_entity = $purchased_entity
      ->reveal();
    $order_item = $this
      ->prophesize(OrderItemInterface::class);
    $order_item
      ->getEntityTypeId()
      ->willReturn('commerce_order_item');
    $order_item
      ->getPurchasedEntity()
      ->willReturn($purchased_entity);
    $order_item = $order_item
      ->reveal();
    $this
      ->assertFalse($condition
      ->evaluate($order_item));
    $configuration['entities'] = [
      '30df59bd-7b03-4cf7-bb35-d42fc49f0651',
    ];
    $condition
      ->setConfiguration($configuration);
    $this
      ->assertTrue($condition
      ->evaluate($order_item));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
OrderItemPurchasedEntityTest::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