This is an automated email from the ASF dual-hosted git repository.
adamsaghy pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
from 37de6b8899 Merge pull request #6294
add f6a7cd6187 FINERACT-2732: type savings transaction search results as
an ordered list
add 5aa0e6e5da FINERACT-2732: expose the savings product fields typed
clients need
add d0ac26b5a9 FINERACT-2732: extend the feign savings helpers for
interest posting and search
add 3d2b293875 FINERACT-2732: migrate savings interest posting and search
tests to feign
add 54e59cb56d FINERACT-2732: correct the savings transaction adjust
response schema
add ba90d25b44 FINERACT-2732: extend the feign savings helpers for
transaction reversal
add 54a4f06a17 FINERACT-2732: migrate the savings balance-after-reversal
test to feign
add 79ce01a66e FINERACT-2732: migrate the savings recalculate-balance test
to feign
add eb30123ec5 FINERACT-2732: migrate the savings product creation test to
feign
add 4e7c157879 FINERACT-2732: migrate the savings accrual tests to feign
add 994e0d0dd5 FINERACT-2732: expose the fields typed clients need for
post-interest-as-on and datatables
add 9df559f486 FINERACT-2732: migrate the savings datatable and interest
posting tests to feign
add b836c093be FINERACT-2732: migrate the savings interest posting job
test to feign
add 72a2c65b87 FINERACT-2732: expose the note and transfer-fee fields
typed clients need
add 92ba01abdc FINERACT-2732: extend the feign helpers for transfers and
failing batches
add 341ae1ec4c FINERACT-2732: migrate the savings transaction and
transfer-fee tests to feign
add 856553ba6c FINERACT-2732: assert scheduler jobs actually succeed
add a63b9e5475 FINERACT-2732: type the savings transaction read response
add 305fa6ee68 FINERACT-2732: read savings transactions and search through
typed clients
new 6504ce927f Merge pull request #6241
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../api/DatatablesApiResourceSwagger.java | 11 +
.../api/SavingsAccountTransactionsApiResource.java | 13 +-
...vingsAccountTransactionsApiResourceSwagger.java | 12 +-
.../api/SavingsAccountsApiResourceSwagger.java | 2 +
.../api/SavingsProductsApiResourceSwagger.java | 102 +++
...xibleSavingsInterestPostingIntegrationTest.java | 150 ++--
...avingsAccountBalanceCheckAfterReversalTest.java | 176 ++---
.../SavingsAccountForceWithdrawalTest.java | 98 +--
.../SavingsAccountRecalculateBalanceTest.java | 299 +++-----
...AccountTransactionDatatableIntegrationTest.java | 266 +++----
.../SavingsAccountTransactionTest.java | 653 +++++++----------
...gsAccountTransactionsSearchIntegrationTest.java | 383 +++++-----
.../SavingsAccrualAccountingIntegrationTest.java | 381 +++++-----
.../SavingsAccrualIntegrationTest.java | 314 +++------
.../SavingsInterestPostingIntegrationTest.java | 140 ++--
.../SavingsInterestPostingJobIntegrationTest.java | 444 +++++-------
.../SavingsInterestPostingTest.java | 769 +++++++--------------
.../SavingsProductCreationIntegrationTest.java | 241 +++----
.../client/feign/FeignSavingsTestBase.java | 24 +
.../feign/helpers/FeignAccountTransferHelper.java | 5 +
.../client/feign/helpers/FeignDatatableHelper.java | 56 +-
.../helpers/FeignGlobalConfigurationHelper.java | 68 ++
...archHelper.java => FeignPaymentTypeHelper.java} | 12 +-
...onHelper.java => FeignSavingsChargeHelper.java} | 28 +-
.../client/feign/helpers/FeignSavingsHelper.java | 27 +
.../feign/helpers/FeignSavingsProductHelper.java | 12 +
.../helpers/FeignSavingsTransactionHelper.java | 97 +++
.../client/feign/helpers/FeignSchedulerHelper.java | 17 +-
.../feign/modules/SavingsRequestBuilders.java | 112 +++
.../client/feign/modules/SavingsTestData.java | 25 +
.../feign/modules/SavingsTestValidators.java | 94 +++
.../common/GlobalConfigurationHelper.java | 2 +-
.../common/batch/BatchServiceHelper.java | 4 +
.../savings/AccountTransferWithdrawalFeeTest.java | 245 +++----
34 files changed, 2441 insertions(+), 2841 deletions(-)
copy
integration-tests/src/test/java/org/apache/fineract/integrationtests/client/feign/helpers/{FeignSearchHelper.java
=> FeignPaymentTypeHelper.java} (72%)
copy
integration-tests/src/test/java/org/apache/fineract/integrationtests/client/feign/helpers/{FeignSavingsTransactionHelper.java
=> FeignSavingsChargeHelper.java} (50%)
create mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/client/feign/modules/SavingsTestValidators.java