Esempio n. 1
0
 def test_LYT_RED_REVERSE_03(self, description):
     initialRedeemedPoints = LoyaltyDBHelper.getSumOfPointsAwarded(
         self.customerId)['sumOfRedeemedValue']
     ptsRedemptionResponse = LoyaltyHelper.pointsRedemptionAndAssertion(
         self, constant.config['defaultRedeemPts'], initialRedeemedPoints)
     time.sleep(1)
     self.EMFConnObj.newBillEvent(
         EMFObject.NewBillEvent({
             'uniqueRedemptionId':
             ptsRedemptionResponse['uniqueRedemptionId']
         }))
     parsedResponse = LoyaltyHelper.redemptionReversalAndAssertion(
         self, [ptsRedemptionResponse['uniqueRedemptionId']])
     LoyaltyHelper.redemptionReversalDBAssertion(
         self, ptsRedemptionResponse['pointsRedemptionSummaryId'],
         parsedResponse['redemptionReversalId'], initialRedeemedPoints)
     LoyaltyHelper.redemptionReversalAndAssertion(
         self, [ptsRedemptionResponse['uniqueRedemptionId']],
         expectException=[3802, "all redeemed points already reversed"])
Esempio n. 2
0
    def test_LYT_RED_REVERSE_06(self, description):
        redemptionId = []
        initialRedeemedPoints = LoyaltyDBHelper.getSumOfPointsAwarded(
            self.customerId)['sumOfRedeemedValue']
        uniqueRedemptionId = LoyaltyHelper.pointsRedemptionAndAssertion(
            self, constant.config['defaultRedeemPts'], initialRedeemedPoints,
            {'redeemedOnBillId': -1})['uniqueRedemptionId']

        prsDBDetails = LoyaltyDBHelper.getPointsRedemptionSummary(
            self.customerId, self.storeId,
            {'redemptionIds': uniqueRedemptionId})
        Assertion.constructAssertion(
            len(prsDBDetails) == len([uniqueRedemptionId]),
            'No of Records added to prs Actual: {} and Expected: {}'.format(
                len(prsDBDetails), len(uniqueRedemptionId)))
        for prs in prsDBDetails:
            Assertion.constructAssertion(
                prs['billId'] == -1,
                'RedemptionId updated to prs with BillId Actual: {} and Expected: {}'
                .format(prs['billId'], constant.config['billNumber']))
            Assertion.constructAssertion(
                prs['redemption_id'] in uniqueRedemptionId,
                'Unique Redemption Id is match with BillIds Actual: {} and Expected: {}'
                .format(prs['redemption_id'], uniqueRedemptionId))
            Assertion.constructAssertion(
                prs['redemptionType'] == 'REDEMPTION',
                'Redemption type is Matched Actual: {} and Expected: {}'.
                format(prs['redemptionType'], 'REDEMPTION'))
            redemptionId.append(prs['prs_id'])

        parsedResponse = LoyaltyHelper.redemptionReversalAndAssertion(
            self, [uniqueRedemptionId])
        LoyaltyHelper.redemptionReversalDBAssertion(
            self, redemptionId, parsedResponse['redemptionReversalId'],
            initialRedeemedPoints)
        LoyaltyHelper.redemptionReversalAndAssertion(
            self,
            listOfRedemptionId=[parsedResponse['redemptionReversalId']],
            expectException=[
                3804, 'redemption reversal of a reversal not allowed'
            ])
Esempio n. 3
0
 def test_LYT_RED_REVERSE_04(self, description, isValid):
     time.sleep(1)
     billId1 = LoyaltyHelper.simplePropertiesParser(
         self.EMFConnObj.newBillEvent(
             EMFObject.NewBillEvent()).__dict__)['sourceId']
     time.sleep(1)
     billId2 = LoyaltyHelper.simplePropertiesParser(
         self.EMFConnObj.newBillEvent(
             EMFObject.NewBillEvent({
                 'customerID':
                 constant.config['usersInfo'][1]['userId'],
                 'userDetails':
                 EMFObject.constructUserDetailsObject(1)
             })).__dict__)['sourceId']
     initialRedeemCus1 = LoyaltyDBHelper.getSumOfPointsAwarded(
         self.customerId)['sumOfRedeemedValue']
     uniqueRedemptionId1 = LoyaltyHelper.pointsRedemptionAndAssertion(
         self, constant.config['defaultRedeemPts'], initialRedeemCus1,
         {'redeemedOnBillId': int(billId1)})['uniqueRedemptionId']
     self.customerId = constant.config['usersInfo'][1]['userId']
     initialRedeemCus1 = LoyaltyDBHelper.getSumOfPointsAwarded(
         self.customerId)['sumOfRedeemedValue']
     uniqueRedemptionId2 = LoyaltyHelper.pointsRedemptionAndAssertion(
         self, constant.config['defaultRedeemPts'], initialRedeemCus1, {
             'redeemedOnBillId': int(billId2),
             'userDetails': EMFObject.constructUserDetailsObject(1)
         })['uniqueRedemptionId']
     LoyaltyHelper.redemptionReversalAndAssertion(
         self, uniqueRedemptionId1,
         {'userDetails': EMFObject.constructUserDetailsObject(1)},
         [3803, 'prs record not found for the unique redemption id'])
     self.customerId = constant.config['usersInfo'][0]['userId']
     LoyaltyHelper.redemptionReversalAndAssertion(
         self,
         uniqueRedemptionId2,
         expectException=[
             3803, 'prs record not found for the unique redemption id'
         ])
Esempio n. 4
0
    def test_LYT_RED_REVERSE_02(self, description, pointToReverse):
        uniqueRedemptionId = []
        redemptionId = []
        initialRedeemedPoints = LoyaltyDBHelper.getSumOfPointsAwarded(
            self.customerId)['sumOfRedeemedValue']
        noOfRedeem = 2
        for i in range(noOfRedeem):
            redeemPointsResponse = LoyaltyHelper.pointsRedemptionAndAssertion(
                self, pointToReverse,
                (initialRedeemedPoints + (i * pointToReverse)))
            uniqueRedemptionId.append(
                redeemPointsResponse['uniqueRedemptionId'])

        time.sleep(1)
        LoyaltyHelper.simplePropertiesParser(
            self.EMFConnObj.newBillEvent(
                EMFObject.NewBillEvent(
                    {'uniqueRedemptionId': uniqueRedemptionId})).__dict__)
        prsDBDetails = LoyaltyDBHelper.getPointsRedemptionSummary(
            self.customerId, self.storeId,
            {'redemptionIds': uniqueRedemptionId})
        Assertion.constructAssertion(
            len(prsDBDetails) == len(uniqueRedemptionId),
            'No of Records added to prs Actual: {} and Expected: {}'.format(
                len(prsDBDetails), len(uniqueRedemptionId)))
        for prs in prsDBDetails:
            Assertion.constructAssertion(
                prs['billId'] == constant.config['billNumber'],
                'RedemptionId updated to prs with BillId Actual: {} and Expected: {}'
                .format(prs['billId'], constant.config['billNumber']))
            Assertion.constructAssertion(
                prs['redemption_id'] in uniqueRedemptionId,
                'Unique Redemption Id is match with BillIds Actual: {} and Expected: {}'
                .format(prs['redemption_id'], uniqueRedemptionId))
            Assertion.constructAssertion(
                prs['redemptionType'] == 'REDEMPTION',
                'Redemption type is Matched Actual: {} and Expected: {}'.
                format(prs['redemptionType'], 'REDEMPTION'))
            redemptionId.append(prs['prs_id'])

        parsedResponse = LoyaltyHelper.redemptionReversalAndAssertion(
            self, [uniqueRedemptionId[0]])
        LoyaltyHelper.redemptionReversalDBAssertion(
            self, redemptionId, parsedResponse['redemptionReversalId'],
            (initialRedeemedPoints + pointToReverse))
        self.pointEngineConnObj.getPointsRedemptionSummaryForCustomer(
            self.orgId, self.customerId, True)
Esempio n. 5
0
 def test_LYT_RED_REVERSE_05(self, description, pointsToBeReversed):
     time.sleep(1)
     billId = int(
         LoyaltyHelper.simplePropertiesParser(
             self.EMFConnObj.newBillEvent(
                 EMFObject.NewBillEvent()).__dict__)['sourceId'])
     initialRedeemedPoints = LoyaltyDBHelper.getSumOfPointsAwarded(
         self.customerId)['sumOfRedeemedValue']
     redemptionId = []
     uniqueRedemptionId = LoyaltyHelper.pointsRedemptionAndAssertion(
         self, constant.config['defaultRedeemPts'], initialRedeemedPoints,
         {'redeemedOnBillId': billId})['uniqueRedemptionId']
     prsDBDetails = LoyaltyDBHelper.getPointsRedemptionSummary(
         self.customerId, self.storeId,
         {'redemptionIds': uniqueRedemptionId})
     Assertion.constructAssertion(
         len(prsDBDetails) == len([uniqueRedemptionId]),
         'No of Records added to prs Actual: {} and Expected: {}'.format(
             len(prsDBDetails), len(uniqueRedemptionId)))
     for prs in prsDBDetails:
         Assertion.constructAssertion(
             prs['billId'] == billId,
             'RedemptionId updated to prs with BillId Actual: {} and Expected: {}'
             .format(prs['billId'], billId))
         Assertion.constructAssertion(
             prs['redemption_id'] in uniqueRedemptionId,
             'Unique Redemption Id is match with BillIds Actual: {} and Expected: {}'
             .format(prs['redemption_id'], uniqueRedemptionId))
         Assertion.constructAssertion(
             prs['redemptionType'] == 'REDEMPTION',
             'Redemption type is Matched Actual: {} and Expected: {}'.
             format(prs['redemptionType'], 'REDEMPTION'))
         redemptionId.append(prs['prs_id'])
     parsedResponse = LoyaltyHelper.redemptionReversalAndAssertion(
         self, [uniqueRedemptionId],
         {'pointsToBeReversed': pointsToBeReversed})
     LoyaltyHelper.redemptionReversalDBAssertion(
         self, redemptionId, parsedResponse['redemptionReversalId'],
         initialRedeemedPoints, pointsToBeReversed)