Skip to content

Commit 9797c9e

Browse files
committed
fix
1 parent 2c6c1a8 commit 9797c9e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Diff for: src/test/java/org/mifos/integrationtest/cucumber/stepdef/BatchApiStepDef.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ public void iAmAbleToParseSubBatchSummaryResponse() {
620620

621621
@And("I call the sub batch summary API for sub batch summary with expected status of {int}")
622622
public void iCallTheSubBatchSummaryAPIForSubBatchSummaryWithExpectedStatusOf(int expectedStatus) {
623-
await().atMost(awaitMost, SECONDS).pollDelay(pollDelay, SECONDS).pollInterval(pollInterval, SECONDS).untilAsserted(() -> {
623+
await().atMost(awaitMost + 10, SECONDS).pollDelay(pollDelay, SECONDS).pollInterval(pollInterval, SECONDS).untilAsserted(() -> {
624624
RequestSpecification requestSpec = Utils.getDefaultSpec(scenarioScopeState.tenant);
625625
requestSpec.header("X-Correlation-ID", scenarioScopeState.clientCorrelationId);
626626
if (authEnabled) {
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
id,request_id,payment_mode,payer_identifier_type,payer_identifier,payee_identifier_type,payee_identifier,amount,currency,note
2-
0,f1e22fe3-9740-4fba-97b6-78f43bfa7f2f,mojaloop,accountNumber,003001003879112168,accountNumber,103873110196,850,USD,Test Payee Payment
3-
1,72aa3ea4-e6f6-4880-877f-39f6ac4d052e,mojaloop,accountNumber,003001003879112168,accountNumber,103874120160,222,USD,Test Payee Payment
4-
2,f1e22fe3-9740-4fba-97b6-78f43bfa7f2f,mojaloop,accountNumber,003001003879112168,accountNumber,103873110195,840,USD,Test Payee Payment
2+
0,f1e22fe3-9740-4fba-97b6-78f43bfa7f2f,mojaloop,accountNumber,0030010038791121681,accountNumber,103873110196,850,USD,Test Payee Payment
3+
1,72aa3ea4-e6f6-4880-877f-39f6ac4d052e,mojaloop,accountNumber,0030010038791121683,accountNumber,103874120160,222,USD,Test Payee Payment
4+
2,f1e22fe3-9740-4fba-97b6-78f43bfa7f2f,mojaloop,accountNumber,0030010038791121684,accountNumber,103873110195,840,USD,Test Payee Payment

Diff for: src/test/java/resources/bulkPayment.feature

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@gov @ext
22
Feature: Test ability to make payment to individual with bank account
33

4-
Scenario: Input CSV file using the batch transaction API and poll batch summary API till we get completed status
4+
Scenario: Input CSV file using the batch transaction API and poll batch summary API till we get completed status [WIP]
55
Given I have tenant as "paymentbb1"
66
And I have the demo csv file "bulk_payment.csv"
77
And I create a list of payee identifiers from csv file
@@ -25,7 +25,7 @@ Feature: Test ability to make payment to individual with bank account
2525
And Status of transaction is "COMPLETED"
2626
And I should have matching total txn count and successful txn count in response
2727

28-
Scenario: Bulk Transfer with ClosedLoop and Mojaloop
28+
Scenario: Bulk Transfer with ClosedLoop and Mojaloop [WIP]
2929
Given I have tenant as "paymentbb1"
3030
And I have the demo csv file "bulk_payment_closedl_mock_mojaloop.csv"
3131
And I create a list of payee identifiers from csv file
@@ -49,7 +49,7 @@ Feature: Test ability to make payment to individual with bank account
4949
And Status of transaction is "COMPLETED"
5050
And My total txns 8 and successful txn count in response should Match
5151

52-
Scenario: Bulk Transfer with ClosedLoop and GSMA
52+
Scenario: Bulk Transfer with ClosedLoop and GSMA [WIP]
5353
#payer 1 creation
5454
Given I have Fineract-Platform-TenantId as "payerfsp2"
5555
When I create and setup a "payer" with id "1" and account balance of 100 for combine test cases

Diff for: src/test/java/resources/identityMapperTest.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Feature: Identity Account Mapper Api Test
238238
Then I will call the fetch beneficiary API with expected status of 200
239239
And I will assert the fields from fetch beneficiary response
240240
@gov @ext
241-
Scenario: Batch Account Lookup Integration Test
241+
Scenario: Batch Account Lookup Integration Test [WIP]
242242
Given I create an IdentityMapperDTO for Register Beneficiary from csv file
243243
When I call the register beneficiary API with expected status of 202 and stub "/registerBeneficiaryApiTest"
244244
# And I will sleep for 3000 millisecond

0 commit comments

Comments
 (0)