Exemplo n.º 1
0
 /**
  * Tests creating/editing an Order.
  */
 public function testCreateOrder()
 {
     // Create a order through the add form.
     $this->drupalGet('/admin/commerce/orders');
     $this->clickLink('Create a new order');
     $user = $this->loggedInUser->getAccountName() . ' (' . $this->loggedInUser->id() . ')';
     $edit = ['customer_type' => 'existing', 'uid' => $user];
     $this->drupalPostForm(NULL, $edit, t('Create'));
     // Check the integrity of the edit form.
     $this->assertResponse(200, 'The order edit form can be accessed.');
     $this->assertFieldByName('billing_profile', NULL, 'Billing profile field is present');
     $this->assertFieldByName('line_items[form][inline_entity_form][purchased_entity][0][target_id]', NULL, 'Purchased entity field is present');
     $this->assertFieldByName('line_items[form][inline_entity_form][quantity][0][value]', NULL, 'Quantity field is present');
     $this->assertFieldByName('line_items[form][inline_entity_form][unit_price][0][amount]', NULL, 'Unit price field is present');
     $this->assertFieldsByValue(t('Create line item'), NULL, 'Create line item button is present');
     $entity = $this->variation->getSku() . ' (' . $this->variation->id() . ')';
     $edit = ['line_items[form][inline_entity_form][purchased_entity][0][target_id]' => $entity, 'line_items[form][inline_entity_form][quantity][0][value]' => 1, 'line_items[form][inline_entity_form][unit_price][0][amount]' => '9.99'];
     $this->drupalPostForm(NULL, $edit, t('Create line item'));
     $this->drupalPostForm(NULL, [], t('Edit'));
     $this->assertFieldByName('line_items[form][inline_entity_form][entities][0][form][purchased_entity][0][target_id]', NULL, 'SKU field is present');
     $this->assertFieldByName('line_items[form][inline_entity_form][entities][0][form][quantity][0][value]', NULL, 'Price field is present');
     $this->assertFieldByName('line_items[form][inline_entity_form][entities][0][form][unit_price][0][amount]', NULL, 'Status field is present');
     $this->assertFieldsByValue(t('Update line item'), NULL, 'Update line item button is present');
     $edit = ['line_items[form][inline_entity_form][entities][0][form][quantity][0][value]' => 3, 'line_items[form][inline_entity_form][entities][0][form][unit_price][0][amount]' => '1.11'];
     $this->drupalPostForm(NULL, $edit, t('Update line item'));
     $edit = ['billing_profile' => $this->billingProfile->id()];
     $this->drupalPostForm(NULL, $edit, t('Save'));
     $order_number = $this->cssSelect('tr td.views-field-order-number');
     $this->assertEqual(count($order_number), 1, 'Order exists in the table.');
 }
Exemplo n.º 2
0
 /**
  * Tests creating a Order programaticaly and through the add form.
  */
 public function testCreateOrder()
 {
     // Create a order through the add form.
     $this->drupalGet('/admin/commerce/orders');
     $this->clickLink('Create a new order');
     $user = $this->loggedInUser->getAccountName() . ' (' . $this->loggedInUser->id() . ')';
     $values = ['customer_type' => 'existing', 'uid' => $user];
     $this->drupalPostForm(NULL, $values, 'Create');
     $entity = $this->variation->getSku() . ' (' . $this->variation->id() . ')';
     $values = ['line_items[form][inline_entity_form][purchased_entity][0][target_id]' => $entity, 'line_items[form][inline_entity_form][quantity][0][value]' => 1, 'line_items[form][inline_entity_form][unit_price][0][amount]' => '9.99'];
     $this->drupalPostForm(NULL, $values, 'Create line item');
     $values = ['billing_profile' => $this->billingProfile->id()];
     $this->drupalPostForm(NULL, $values, t('Save'));
     $order_number = $this->cssSelect('tr td.views-field-order-number');
     $this->assertEqual(count($order_number), 1, 'Order exists in the table.');
 }