Exemplo n.º 1
0
 /**
  * Tests the catalog with a product with attributes.
  */
 public function testCatalogAttribute()
 {
     $this->drupalLogin($this->adminUser);
     $term = $this->createTerm();
     $product = $this->createProduct(array('taxonomy_catalog' => array($term->id())));
     $attribute = $this->createAttribute(array('display' => 0));
     uc_attribute_subject_save($attribute, 'product', $product->id());
     $this->drupalGet('catalog/' . $term->id());
     $this->drupalPostForm(NULL, array(), 'Add to cart');
     $this->assertNoText($product->label() . ' added to your shopping cart.');
     $this->assertText('This product has options that need to be selected before purchase. Please select them in the form below.');
 }
Exemplo n.º 2
0
 /**
  * Tests that product in cart has the selected attribute option.
  */
 public function testAttributeAddToCart()
 {
     for ($display = 0; $display <= 3; ++$display) {
         // Set up an attribute.
         $data = array('display' => $display);
         $attribute = $this->createAttribute($data);
         if ($display) {
             // Give the attribute an option.
             $option = $this->createAttributeOption(array('aid' => $attribute->aid));
         }
         $attribute = uc_attribute_load($attribute->aid);
         // Put the attribute on a product.
         $product = $this->createProduct();
         uc_attribute_subject_save($attribute, 'product', $product->id(), TRUE);
         // Add the product to the cart.
         if ($display == 3) {
             $edit = array("attributes[{$attribute->aid}][{$option->oid}]" => $option->oid);
         } elseif (isset($option)) {
             $edit = array("attributes[{$attribute->aid}]" => $option->oid);
         } else {
             $option = new \stdClass();
             $option->name = self::randomMachineName();
             $option->price = 0;
             $edit = array("attributes[{$attribute->aid}]" => $option->name);
         }
         $this->addToCart($product, $edit);
         $this->assertText("{$attribute->label}: {$option->name}", 'Option selected on cart item.');
         $this->assertText(uc_currency_format($product->price->value + $option->price), 'Product has adjusted price.');
     }
 }
Exemplo n.º 3
0
 /**
  * Creates a product with all attribute types and options.
  *
  * @param $product_class
  *   Defaults to FALSE to create a normal product, set to TRUE to
  *   create a product class instead.
  */
 protected function createCartLinksProduct($product_class = FALSE)
 {
     // Create a product
     if ($product_class) {
         $product = $this->createProductClass(array('promote' => 0));
     } else {
         $product = $this->createProduct(array('promote' => 0));
     }
     // Create some attributes
     for ($i = 0; $i < 5; $i++) {
         $attribute = $this->createAttribute();
         $attributes[$attribute->aid] = $attribute;
     }
     // Add some options, organizing them by aid and oid.
     $attribute_aids = array_keys($attributes);
     $all_options = array();
     foreach ($attribute_aids as $aid) {
         for ($i = 0; $i < 3; $i++) {
             $option = $this->createAttributeOption(array('aid' => $aid));
             $all_options[$option->aid][$option->oid] = $option;
         }
     }
     // array('required' => TRUE)
     // Get the options.
     $attribute = uc_attribute_load($attribute->aid);
     // Load every attribute we got.
     $attributes_with_options = uc_attribute_load_multiple();
     // Pick 5 keys to check at random.
     $aids = array_rand($attributes, 3);
     // Load the attributes back.
     $loaded_attributes = uc_attribute_load_multiple($aids);
     // TODO: add attributes of all 4 types
     // TODO: create both required and not required attributes
     // Add the selected attributes to the product.
     foreach ($loaded_attributes as $loaded_attribute) {
         uc_attribute_subject_save($loaded_attribute, 'product', $product->id(), TRUE);
     }
     return $product;
 }
Exemplo n.º 4
0
 public function testProductKitAttributes()
 {
     $this->drupalLogin($this->adminUser);
     // Create a 20% inclusive tax rate.
     $rate = (object) array('name' => $this->randomMachineName(8), 'rate' => 0.2, 'taxed_product_types' => array('product'), 'taxed_line_items' => [], 'weight' => 0, 'shippable' => 0, 'display_include' => 1, 'inclusion_text' => $this->randomMachineName(6));
     uc_tax_rate_save($rate);
     // Ensure Rules picks up the new condition.
     // entity_flush_caches();
     // Create a $10 product.
     $product = $this->createProduct(array('price' => 10));
     // Create an attribute.
     $attribute = (object) array('name' => $this->randomMachineName(8), 'label' => $this->randomMachineName(8), 'description' => $this->randomMachineName(8), 'required' => TRUE, 'display' => 1, 'ordering' => 0);
     uc_attribute_save($attribute);
     // Create an option with a price adjustment of $5.
     $option = (object) array('aid' => $attribute->aid, 'name' => $this->randomMachineName(8), 'cost' => 0, 'price' => 5, 'weight' => 0, 'ordering' => 0);
     uc_attribute_option_save($option);
     // Attach the attribute to the product.
     $attribute = uc_attribute_load($attribute->aid);
     uc_attribute_subject_save($attribute, 'product', $product->id(), TRUE);
     // Create a product kit containing the product.
     $kit = $this->drupalCreateNode(array('type' => 'product_kit', 'products' => array($product->id()), 'default_qty' => 1, 'mutable' => UC_PRODUCT_KIT_UNMUTABLE_WITH_LIST));
     // Set the kit total to $9 to automatically apply a discount.
     $kit = node_load($kit->id());
     $kit->kit_total = 9;
     $kit->save();
     $kit = node_load($kit->id());
     $this->assertEqual($kit->products[$product->id()]->discount, -1, 'Product kit component has correct discount applied.');
     // Ensure the price is displayed tax-inclusively on the add-to-cart form.
     $this->drupalGet('node/' . $kit->id());
     $this->assertText('$10.80' . $rate->inclusion_text, 'Tax inclusive price on node-view form is accurate.');
     // $10.80 = $9.00 + 20%
     $this->assertRaw($option->name . ', +$6.00</option>', 'Tax inclusive option price on node view form is accurate.');
     // $6.00 = $5.00 + 20%
     // Add the product kit to the cart, selecting the option.
     $attribute_key = 'products[' . $product->id() . '][attributes][' . $attribute->aid . ']';
     $this->addToCart($kit, array($attribute_key => $option->oid));
     // Check that the subtotal is $16.80 ($10 base + $5 option - $1 discount, with 20% tax)
     $this->drupalGet('cart');
     $this->assertText('Subtotal: $16.80', 'Order subtotal is correct on cart page.');
     // @todo: disable rest of test, see [#2306379]
     return;
     // Make sure that the subtotal is also correct on the checkout page.
     $this->drupalPostForm('cart', [], 'Checkout');
     $this->assertText('Subtotal: $16.80', 'Order subtotal is correct on checkout page.');
     // Manually proceed to checkout review.
     $edit = $this->populateCheckoutForm();
     $this->drupalPostForm('cart/checkout', $edit, t('Review order'));
     $this->assertRaw(t('Your order is almost complete.'));
     // Make sure the price is still listed tax-inclusively.
     // @TODO This could be handled more specifically with a regex.
     $this->assertText('$16.80' . $rate->inclusion_text, 'Tax inclusive price appears in cart pane on checkout review page');
     // Ensure the tax-inclusive price is listed on the order admin page.
     $order_ids = \Drupal::entityQuery('uc_order')->condition('delivery_first_name', $edit['panes[delivery][first_name]'])->execute();
     $order_id = reset($order_ids);
     $this->assertTrue($order_id, 'Order was created successfully');
     $this->drupalGet('admin/store/orders/' . $order_id);
     $this->assertText('$16.80' . $rate->inclusion_text, 'Tax inclusive price appears on the order view page.');
     // And on the invoice.
     $this->drupalGet('admin/store/orders/' . $order_id . '/invoice');
     $this->assertText('$16.80' . $rate->inclusion_text, 'Tax inclusive price appears on the invoice.');
     // And on the printable invoice.
     $this->drupalGet('admin/store/orders/' . $order_id . '/invoice');
     $this->assertText('$16.80' . $rate->inclusion_text, 'Tax inclusive price appears on the printable invoice.');
 }