Esempio n. 1
0
    def afterSetUp(self):
        """
        """
        super(TestStockInformationData, self).afterSetUp()
        container = self.shop["stock-information"]
        container.invokeFactory("StockInformation", id="s1")

        sm = IStockManagement(self.shop)
        self.si = sm.getStockInformationFor(self.shop.products.product_1)
 def testgetStockInformationFor_1(self):
     """
     """
     container = self.shop["stock-information"]
     container.invokeFactory("StockInformation", id="s1")
     
     sm = IStockManagement(self.shop)
     valid_stock_information = sm.getStockInformationFor(self.shop.products.product_1)
     
     self.assertEqual(valid_stock_information.getId(), "s1")
Esempio n. 3
0
    def testgetStockInformationFor_1(self):
        """
        """
        container = self.shop["stock-information"]
        container.invokeFactory("StockInformation", id="s1")

        sm = IStockManagement(self.shop)
        valid_stock_information = sm.getStockInformationFor(
            self.shop.products.product_1)

        self.assertEqual(valid_stock_information.getId(), "s1")
    def testGetStockInformations(self):
        """
        """
        container = self.shop["stock-information"]
        container.invokeFactory("StockInformation", id="s1")
        container.invokeFactory("StockInformation", id="s2")        
        container.invokeFactory("StockInformation", id="s3")        

        sm = IStockManagement(self.shop)
        ids = [s.getId() for s in sm.getStockInformations()]
        
        self.assertEqual(ids, ["s1", "s2", "s3"])
Esempio n. 5
0
    def testGetStockInformations(self):
        """
        """
        container = self.shop["stock-information"]
        container.invokeFactory("StockInformation", id="s1")
        container.invokeFactory("StockInformation", id="s2")
        container.invokeFactory("StockInformation", id="s3")

        sm = IStockManagement(self.shop)
        ids = [s.getId() for s in sm.getStockInformations()]

        self.assertEqual(ids, ["s1", "s2", "s3"])
    def testRemoveCart(self):
        """
        """
        view = getMultiAdapter((self.shop.products.product_1, self.shop.products.product_1.REQUEST), name="addToCart")
        view.addToCart()
        view.addToCart()
        
        view = getMultiAdapter((self.shop.products.product_2, self.shop.products.product_2.REQUEST), name="addToCart")
        view.addToCart()
        
        cart = ICartManagement(self.shop).getCart()
        sm = IStockManagement(self.shop)

        sm.removeCart(cart)
        
        self.assertEqual(self.shop.products.product_1.getStockAmount(), 8.0)
        self.assertEqual(self.shop.products.product_2.getStockAmount(), 19.0)
Esempio n. 7
0
    def testRemoveCart(self):
        """
        """
        view = getMultiAdapter((self.shop.products.product_1,
                                self.shop.products.product_1.REQUEST),
                               name="addToCart")
        view.addToCart()
        view.addToCart()

        view = getMultiAdapter((self.shop.products.product_2,
                                self.shop.products.product_2.REQUEST),
                               name="addToCart")
        view.addToCart()

        cart = ICartManagement(self.shop).getCart()
        sm = IStockManagement(self.shop)

        sm.removeCart(cart)

        self.assertEqual(self.shop.products.product_1.getStockAmount(), 8.0)
        self.assertEqual(self.shop.products.product_2.getStockAmount(), 19.0)