Esempio n. 1
0
    def testGetGroups(self):
        """
        """
        gm = IGroupManagement(self.shop)
        ids = [g.getId() for g in gm.getGroups()]

        self.assertEqual(ids, ["group_1", "group_2"])
 def testGetGroups(self):
     """
     """
     gm = IGroupManagement(self.shop)
     ids = [g.getId() for g in gm.getGroups()]
     
     self.assertEqual(ids, ["group_1", "group_2"])
Esempio n. 3
0
 def getGroups(self):
     """Returns groups of the shop.
     """
     shop = self._getShop()
     
     gm = IGroupManagement(shop)
     return gm.getGroups()
Esempio n. 4
0
    def isValid(self, product):
        """Returns True if given product is at least in one of the selected
        groups of the criterion.
        """
        pm = IGroupManagement(product)
        product_groups = [group.getId() for group in pm.getGroups()]
        criteria_groups = self.context.getGroups()

        for criteria_group in criteria_groups:
            if criteria_group in product_groups:
                return True
        return False
Esempio n. 5
0
    def isValid(self, product):
        """Returns True if given product is at least in one of the selected
        groups of the criterion.
        """
        pm = IGroupManagement(product)
        product_groups = [group.getId() for group in pm.getGroups()]
        criteria_groups = self.context.getGroups()

        for criteria_group in criteria_groups:
            if criteria_group in product_groups:
                return True
        return False
 def testGetGroups_2(self):
     """
     """
     cm = IGroupManagement(self.shop.products.product_3)
     self.assertEqual(cm.getGroups(), [])
 def testGetGroups_1(self):
     """
     """
     cm = IGroupManagement(self.shop.products.product_1)
     ids = [g.getId() for g in cm.getGroups()]
     self.assertEqual(ids, ["group_1", "group_2"])
Esempio n. 8
0
 def testGetGroups_2(self):
     """
     """
     cm = IGroupManagement(self.shop.products.product_3)
     self.assertEqual(cm.getGroups(), [])
Esempio n. 9
0
 def testGetGroups_1(self):
     """
     """
     cm = IGroupManagement(self.shop.products.product_1)
     ids = [g.getId() for g in cm.getGroups()]
     self.assertEqual(ids, ["group_1", "group_2"])