Exemple #1
0
 def test_delete_a_product(self):
     """ Delete a Product """
     shopcart = Shopcart(user_id=1, product_id=1, quantity=1, price=12.00)
     shopcart.save()
     self.assertEqual(len(Shopcart.all()), 1)
     # delete item and make sure it isn't in the database
     shopcart.delete()
     self.assertEqual(len(Shopcart.all()), 0)
Exemple #2
0
 def test_delete_a_shopcart_entry(self):
     """ Delete a shopcart entry """
     shopcart = Shopcart(user_id=999, product_id=999, quantity=999, price=999.99)
     shopcart.save()
     self.assertEqual(Shopcart.findByUserId(999).count(), 1)
     # delete item and make sure it isn't in the database
     shopcart.delete()
     self.assertEqual(Shopcart.findByUserId(999).count(), 0)
Exemple #3
0
    def test_findByUserId(self):
        """ Find shopcart list by user_id """
        shopcart = Shopcart(user_id=999, product_id=999, quantity=999, price=999.99)
        shopcart.save()

        shopcarts = Shopcart.findByUserId(999)
        self.assertIsNot(shopcarts, None)
        self.assertEqual(shopcarts[0].user_id, shopcart.user_id)
        self.assertEqual(shopcarts[0].product_id, shopcart.product_id)
Exemple #4
0
    def test_remove_all(self):
        """ Remove all the shopcart data in the system """
        shopcart = Shopcart(user_id=1, product_id=1, quantity=1, price=12.00)
        shopcart.save()
        shopcart = Shopcart(user_id=1, product_id=2, quantity=1, price=12.00)
        shopcart.save()

        # delete data
        shopcart.remove_all()
        shopcarts = Shopcart.all()
        self.assertEqual(len(shopcarts), 0)
Exemple #5
0
 def test_find_shopcart_entry(self):
     """ Find a Shopcart by user_id and product_id """
     Shopcart(user_id=1, product_id=1, quantity=1, price=12.00).save()
     entry = Shopcart(user_id=1, product_id=2, quantity=1, price=15.00)
     entry.save()
     shopcart = Shopcart.find(entry.user_id, entry.product_id)
     self.assertIsNot(shopcart, None)
     self.assertEqual(shopcart.user_id, 1)
     self.assertEqual(shopcart.product_id, 2)
     self.assertEqual(shopcart.quantity, 1)
     self.assertEqual(shopcart.price, 15.00)
Exemple #6
0
 def test_add_a_shopcart_entry(self):
     """ Create a shopcart entry and add it to the database """
     shopcarts = Shopcart.findByUserId(999)
     before_cnt = (shopcarts.count())
     #self.assertEqual(shopcarts, [])
     shopcart = Shopcart(user_id=999, product_id=999, quantity=888, price=999.99)
     self.assertTrue(shopcarts != None)
     self.assertEqual(shopcart.user_id, 999)
     shopcart.save()
     # Asert that it was assigned an id and shows up in the database
     shopcarts2 = Shopcart.findByUserId(999)
     self.assertEqual(shopcarts2.count(), before_cnt+1)
Exemple #7
0
 def test_update_a_shopcart_entry(self):
     """ Update a Shopcart entry """
     shopcart = Shopcart(user_id=999, product_id=999, quantity=999, price=999.99)
     shopcart.save()
     self.assertEqual(shopcart.user_id, 999)
     # Change it an save it
     shopcart.quantity =888
     shopcart.save()
     self.assertEqual(shopcart.user_id, 999)
     self.assertEqual(shopcart.product_id, 999)
     # Fetch it back and make sure the id hasn't changed
     # but the data did change
     item = Shopcart.find(999,999)
     self.assertEqual(item.quantity, 888)
Exemple #8
0
 def test_delete_user_product(self):
     """ Delete User Products """
     shopcart = Shopcart(user_id=1, product_id=1, quantity=1, price=12.00)
     shopcart.save()
     shopcart = Shopcart(user_id=1, product_id=2, quantity=1, price=12.00)
     shopcart.save()
     shopcart = Shopcart(user_id=1, product_id=3, quantity=1, price=12.00)
     shopcart.save()
     # delete item and make sure it isn't in the database
     shopcart.delete()
     shopcarts = Shopcart.findByUserId(1)
     self.assertIsNot(shopcarts, None)