You are here

protected function OrderAssignmentTest::setUp in Commerce Core 8.2

Overrides OrderKernelTestBase::setUp

File

modules/order/tests/src/Kernel/OrderAssignmentTest.php, line 57

Class

OrderAssignmentTest
Tests the order assignment service.

Namespace

Drupal\Tests\commerce_order\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installEntitySchema('commerce_payment');
  $this
    ->installEntitySchema('commerce_payment_method');
  $this
    ->installConfig([
    'commerce_payment',
  ]);
  $this->user = $this
    ->createUser([
    'mail' => $this
      ->randomString() . '@example.com',
  ]);

  // Turn off title generation to allow explicit values to be used.
  $variation_type = ProductVariationType::load('default');
  $variation_type
    ->setGenerateTitle(FALSE);
  $variation_type
    ->save();
  $product = Product::create([
    'type' => 'default',
    'title' => 'Default testing product',
  ]);
  $product
    ->save();
  $variation = ProductVariation::create([
    'type' => 'default',
    'product_id' => $product
      ->id(),
    'sku' => 'TEST_' . strtolower($this
      ->randomMachineName()),
    'title' => $this
      ->randomString(),
    'price' => new Price('12.00', 'USD'),
    'status' => TRUE,
  ]);
  $variation
    ->save();
  $billing_profile = Profile::create([
    'type' => 'customer',
    'address' => [
      'country_code' => 'US',
      'postal_code' => '53177',
      'locality' => 'Milwaukee',
      'address_line1' => 'Pabst Blue Ribbon Dr',
      'administrative_area' => 'WI',
      'given_name' => 'Frederick',
      'family_name' => 'Pabst',
    ],
  ]);
  $billing_profile
    ->save();
  $billing_profile = $this
    ->reloadEntity($billing_profile);
  $payment_method_profile = $billing_profile
    ->createDuplicate();
  $payment_method_profile
    ->setData('copy_to_address_book', TRUE);
  $payment_method_profile
    ->save();
  $payment_gateway = PaymentGateway::create([
    'id' => 'example',
    'label' => 'Example',
    'plugin' => 'example_onsite',
  ]);
  $payment_gateway
    ->setPluginConfiguration([
    'api_key' => '2342fewfsfs',
    'mode' => 'test',
    'payment_method_types' => [
      'credit_card',
    ],
  ]);
  $payment_gateway
    ->save();

  /** @var \Drupal\commerce_payment\Entity\PaymentMethodInterface $payment_method */
  $payment_method = PaymentMethod::create([
    'type' => 'credit_card',
    'payment_gateway' => 'example',
    'payment_gateway_mode' => 'test',
    'billing_profile' => $payment_method_profile,
  ]);
  $payment_method
    ->save();

  /** @var \Drupal\commerce_order\OrderItemStorageInterface $order_item_storage */
  $order_item_storage = $this->container
    ->get('entity_type.manager')
    ->getStorage('commerce_order_item');
  $order_item = $order_item_storage
    ->createFromPurchasableEntity($variation);
  $order_item
    ->save();

  /** @var \Drupal\commerce_order\Entity\OrderInterface $order */
  $order = Order::create([
    'type' => 'default',
    'order_number' => '6',
    'store_id' => $this->store
      ->id(),
    'uid' => $this->user
      ->id(),
    'mail' => $this->user
      ->getEmail(),
    'ip_address' => '127.0.0.1',
    'billing_profile' => $billing_profile,
    'payment_method' => $payment_method,
    'order_items' => [
      $order_item,
    ],
    'state' => 'draft',
  ]);
  $order
    ->save();
  $this->order = $this
    ->reloadEntity($order);
  $this->orderAssignment = $this->container
    ->get('commerce_order.order_assignment');
}