本文整理汇总了Python中cart.Cart.add_product方法的典型用法代码示例。如果您正苦于以下问题:Python Cart.add_product方法的具体用法?Python Cart.add_product怎么用?Python Cart.add_product使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cart.Cart
的用法示例。
在下文中一共展示了Cart.add_product方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestCart
# 需要导入模块: from cart import Cart [as 别名]
# 或者: from cart.Cart import add_product [as 别名]
class TestCart(unittest.TestCase):
def setUp(self):
self.session = {}
self.product_one = NonCallableMock(product_id=1, price=1.99)
self.product_two = NonCallableMock(product_id=2, price=2.49)
self.cart = Cart(self.session)
def test_can_add_product(self):
self.cart.add_product(self.product_one, 10)
self.assertEqual(
self.cart.get_cart_item(self.product_one).quantity, 10)
def test_cannot_add_product_twice(self):
self.cart.add_product(self.product_one, 13)
self.assertRaises(
CartError, lambda: self.cart.add_product(self.product_one, 10))
def test_remove_product(self):
self.cart.add_product(self.product_one, 10)
self.cart.remove_product(self.product_one)
self.assertEqual(self.cart.num_items, 0)
self.assertRaises(
CartError, lambda: self.cart.get_cart_item(self.product_one))
def test_cannot_remove_product_not_in_cart(self):
self.assertRaises(
CartError, lambda: self.cart.remove_product(self.product_one))
def test_can_calculate_quantity_of_cart(self):
self.cart.add_product(self.product_one, 10)
self.assertEqual(self.cart.num_items, 10)
self.cart.add_product(self.product_two, 15)
self.assertEqual(self.cart.num_items, 25)
def test_quantity_of_empty_cart_is_zero(self):
self.assertEqual(self.cart.num_items, 0)
def test_can_calculate_subtotal_of_cart(self):
self.cart.add_product(self.product_one, 10)
self.assertEqual(self.cart.sub_total, 19.9)
self.cart.add_product(self.product_two, 15)
self.assertEqual(self.cart.sub_total, 57.25)
def test_subtotal_of_empty_cart_is_zero(self):
self.assertEqual(self.cart.sub_total, 0)
def test_can_update_quanity(self):
self.cart.add_product(self.product_one, 10)
self.cart.update_quantity(self.product_one, 15)
self.assertEqual(
self.cart.get_cart_item(self.product_one).quantity, 15)
def test_cannot_update_quantity_if_not_in_cart(self):
self.assertRaises(CartError, lambda:
self.cart.update_quantity(self.product_one, 10))
def test_can_save_cart(self):
self.cart.add_product(self.product_one)
self.cart.save(self.session)
self.new_cart = Cart(self.session)
self.assertEqual(self.cart.cart_items, self.new_cart.cart_items)
def test_can_reset_cart(self):
self.cart.add_product(self.product_one, 10)
self.cart.reset()
self.assertEqual(self.cart.cart_items, [])