forked from bisq-network/bisq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bisq-network#7021 from alvasw/test_all_taker_bsq_c…
…ases Test all Taker BSQ cases
- Loading branch information
Showing
1 changed file
with
219 additions
and
0 deletions.
There are no files selected for viewing
219 changes: 219 additions & 0 deletions
219
core/src/test/java/bisq/core/fee/TxValidatorTakerBsqFeeTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,219 @@ | ||
/* | ||
* This file is part of Bisq. | ||
* | ||
* Bisq is free software: you can redistribute it and/or modify it | ||
* under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or (at | ||
* your option) any later version. | ||
* | ||
* Bisq is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public | ||
* License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package bisq.core.fee; | ||
|
||
import bisq.core.dao.state.DaoStateService; | ||
import bisq.core.dao.state.model.blockchain.Tx; | ||
import bisq.core.filter.Filter; | ||
import bisq.core.filter.FilterManager; | ||
import bisq.core.provider.mempool.FeeValidationStatus; | ||
import bisq.core.provider.mempool.TxValidator; | ||
|
||
import org.bitcoinj.core.Coin; | ||
|
||
import java.util.List; | ||
import java.util.Optional; | ||
|
||
import org.mockito.Mock; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
|
||
import static org.hamcrest.CoreMatchers.is; | ||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.mockito.ArgumentMatchers.any; | ||
import static org.mockito.ArgumentMatchers.anyInt; | ||
import static org.mockito.ArgumentMatchers.anyString; | ||
import static org.mockito.Mockito.doReturn; | ||
import static org.mockito.Mockito.mock; | ||
|
||
@ExtendWith(MockitoExtension.class) | ||
public class TxValidatorTakerBsqFeeTests { | ||
|
||
private static final int FEE_BLOCK_THRESHOLD = 48; | ||
private static final int FEE_PAYMENT_HEIGHT = 143; | ||
private static final String FEE_TX_ID = "e3607e971ead7d03619e3a9eeaa771ed5adba14c448839e0299f857f7bb4ec07"; | ||
|
||
@Test | ||
void feeUnconfirmedAfterEightHours(@Mock DaoStateService daoStateService, @Mock FilterManager filterManager) { | ||
doReturn(Optional.empty()).when(daoStateService).getTx(anyString()); | ||
|
||
int chainHeight = FEE_PAYMENT_HEIGHT + FEE_BLOCK_THRESHOLD + 2; | ||
doReturn(chainHeight).when(daoStateService).getChainHeight(); | ||
|
||
TxValidator txValidator = new TxValidator(daoStateService, FEE_TX_ID, | ||
Coin.valueOf(100000), true, FEE_PAYMENT_HEIGHT, filterManager); | ||
|
||
TxValidator txValidator1 = txValidator.validateBsqFeeTx(false); | ||
assertThat(txValidator1.getStatus(), is(FeeValidationStatus.NACK_BSQ_FEE_NOT_FOUND)); | ||
} | ||
|
||
@Test | ||
void newBsqTx(@Mock DaoStateService daoStateService, @Mock FilterManager filterManager) { | ||
doReturn(Optional.empty()).when(daoStateService).getTx(anyString()); | ||
doReturn(FEE_PAYMENT_HEIGHT).when(daoStateService).getChainHeight(); | ||
|
||
TxValidator txValidator = new TxValidator(daoStateService, FEE_TX_ID, | ||
Coin.valueOf(100000), true, FEE_PAYMENT_HEIGHT, filterManager); | ||
|
||
TxValidator txValidator1 = txValidator.validateBsqFeeTx(false); | ||
assertThat(txValidator1.getStatus(), is(FeeValidationStatus.ACK_BSQ_TX_IS_NEW)); | ||
} | ||
|
||
@Test | ||
void takerFeeAmountExactMatch(@Mock DaoStateService daoStateService, @Mock FilterManager filterManager) { | ||
Tx tx = mock(Tx.class); | ||
doReturn(5000L).when(tx).getBurntBsq(); | ||
doReturn(Optional.of(tx)).when(daoStateService).getTx(anyString()); | ||
|
||
doReturn(FEE_PAYMENT_HEIGHT).when(daoStateService).getChainHeight(); | ||
|
||
TxValidator txValidator = new TxValidator(daoStateService, FEE_TX_ID, | ||
Coin.valueOf(100000), true, FEE_PAYMENT_HEIGHT, filterManager); | ||
|
||
doReturn(Coin.valueOf(5000)).when(daoStateService).getParamValueAsCoin(any(), anyInt()); | ||
doReturn(Coin.valueOf(5000)).when(daoStateService).getParamValueAsCoin(any(), anyString()); | ||
|
||
TxValidator txValidator1 = txValidator.validateBsqFeeTx(false); | ||
assertThat(txValidator1.getStatus(), is(FeeValidationStatus.ACK_FEE_OK)); | ||
} | ||
|
||
@Test | ||
void takerFeeAmountHigherThanExpected(@Mock DaoStateService daoStateService, @Mock FilterManager filterManager) { | ||
Tx tx = mock(Tx.class); | ||
doReturn(6000L).when(tx).getBurntBsq(); | ||
doReturn(Optional.of(tx)).when(daoStateService).getTx(anyString()); | ||
|
||
doReturn(FEE_PAYMENT_HEIGHT).when(daoStateService).getChainHeight(); | ||
|
||
TxValidator txValidator = new TxValidator(daoStateService, FEE_TX_ID, | ||
Coin.valueOf(100000), true, FEE_PAYMENT_HEIGHT, filterManager); | ||
|
||
doReturn(Coin.valueOf(5000)).when(daoStateService).getParamValueAsCoin(any(), anyInt()); | ||
doReturn(Coin.valueOf(5000)).when(daoStateService).getParamValueAsCoin(any(), anyString()); | ||
|
||
TxValidator txValidator1 = txValidator.validateBsqFeeTx(false); | ||
assertThat(txValidator1.getStatus(), is(FeeValidationStatus.ACK_FEE_OK)); | ||
} | ||
|
||
@Test | ||
void takerFeeWithinTolerance(@Mock DaoStateService daoStateService, @Mock FilterManager filterManager) { | ||
Tx tx = mock(Tx.class); | ||
doReturn(4900L).when(tx).getBurntBsq(); | ||
doReturn(Optional.of(tx)).when(daoStateService).getTx(anyString()); | ||
|
||
doReturn(FEE_PAYMENT_HEIGHT).when(daoStateService).getChainHeight(); | ||
|
||
TxValidator txValidator = new TxValidator(daoStateService, FEE_TX_ID, | ||
Coin.valueOf(100000), true, FEE_PAYMENT_HEIGHT, filterManager); | ||
|
||
doReturn(Coin.valueOf(5000)).when(daoStateService).getParamValueAsCoin(any(), anyInt()); | ||
doReturn(Coin.valueOf(5000)).when(daoStateService).getParamValueAsCoin(any(), anyString()); | ||
|
||
TxValidator txValidator1 = txValidator.validateBsqFeeTx(false); | ||
assertThat(txValidator1.getStatus(), is(FeeValidationStatus.ACK_FEE_OK)); | ||
} | ||
|
||
@Test | ||
void takerPassFilterFeeCheck(@Mock DaoStateService daoStateService, @Mock FilterManager filterManager) { | ||
Tx tx = mock(Tx.class); | ||
doReturn(4900L).when(tx).getBurntBsq(); | ||
doReturn(Optional.of(tx)).when(daoStateService).getTx(anyString()); | ||
|
||
doReturn(FEE_PAYMENT_HEIGHT).when(daoStateService).getChainHeight(); | ||
|
||
TxValidator txValidator = new TxValidator(daoStateService, FEE_TX_ID, | ||
Coin.valueOf(100000), true, FEE_PAYMENT_HEIGHT, filterManager); | ||
|
||
doReturn(Coin.valueOf(10_000), Coin.valueOf(5_000)).when(daoStateService).getParamValueAsCoin(any(), anyInt()); | ||
doReturn(Coin.valueOf(10_000), Coin.valueOf(5_000)).when(daoStateService).getParamValueAsCoin(any(), anyString()); | ||
|
||
Filter filter = mock(Filter.class); | ||
doReturn(5_000_000L).when(filter).getTakerFeeBsq(); | ||
doReturn(filter).when(filterManager).getFilter(); | ||
|
||
TxValidator txValidator1 = txValidator.validateBsqFeeTx(false); | ||
assertThat(txValidator1.getStatus(), is(FeeValidationStatus.ACK_FEE_OK)); | ||
} | ||
|
||
@Test | ||
void takerFailFilterFeeCheck(@Mock DaoStateService daoStateService, @Mock FilterManager filterManager) { | ||
Tx tx = mock(Tx.class); | ||
doReturn(4900L).when(tx).getBurntBsq(); | ||
doReturn(Optional.of(tx)).when(daoStateService).getTx(anyString()); | ||
|
||
doReturn(FEE_PAYMENT_HEIGHT).when(daoStateService).getChainHeight(); | ||
|
||
TxValidator txValidator = new TxValidator(daoStateService, FEE_TX_ID, | ||
Coin.valueOf(100000), true, FEE_PAYMENT_HEIGHT, filterManager); | ||
|
||
doReturn(Coin.valueOf(10_000)).when(daoStateService).getParamValueAsCoin(any(), anyInt()); | ||
doReturn(Coin.valueOf(10_000)).when(daoStateService).getParamValueAsCoin(any(), anyString()); | ||
|
||
Filter filter = mock(Filter.class); | ||
doReturn(10_000_000L).when(filter).getTakerFeeBsq(); | ||
doReturn(filter).when(filterManager).getFilter(); | ||
|
||
TxValidator txValidator1 = txValidator.validateBsqFeeTx(false); | ||
assertThat(txValidator1.getStatus(), is(FeeValidationStatus.NACK_TAKER_FEE_TOO_LOW)); | ||
} | ||
|
||
@Test | ||
void takerNoFilterFeeMatchesDifferentDaoParameter(@Mock DaoStateService daoStateService, | ||
@Mock FilterManager filterManager) { | ||
Tx tx = mock(Tx.class); | ||
doReturn(4900L).when(tx).getBurntBsq(); | ||
doReturn(Optional.of(tx)).when(daoStateService).getTx(anyString()); | ||
|
||
doReturn(FEE_PAYMENT_HEIGHT).when(daoStateService).getChainHeight(); | ||
|
||
TxValidator txValidator = new TxValidator(daoStateService, FEE_TX_ID, | ||
Coin.valueOf(100000), true, FEE_PAYMENT_HEIGHT, filterManager); | ||
|
||
doReturn(Coin.valueOf(10_000), Coin.valueOf(4900)).when(daoStateService).getParamValueAsCoin(any(), anyInt()); | ||
doReturn(Coin.valueOf(10_000), Coin.valueOf(4900)).when(daoStateService).getParamValueAsCoin(any(), anyString()); | ||
|
||
doReturn(null).when(filterManager).getFilter(); | ||
doReturn(List.of(Coin.valueOf(4900))).when(daoStateService).getParamChangeList(any()); | ||
|
||
TxValidator txValidator1 = txValidator.validateBsqFeeTx(false); | ||
assertThat(txValidator1.getStatus(), is(FeeValidationStatus.ACK_FEE_OK)); | ||
} | ||
|
||
@Test | ||
void takerNoFilterFeeTooLow(@Mock DaoStateService daoStateService, @Mock FilterManager filterManager) { | ||
Tx tx = mock(Tx.class); | ||
doReturn(4900L).when(tx).getBurntBsq(); | ||
doReturn(Optional.of(tx)).when(daoStateService).getTx(anyString()); | ||
|
||
doReturn(FEE_PAYMENT_HEIGHT).when(daoStateService).getChainHeight(); | ||
|
||
TxValidator txValidator = new TxValidator(daoStateService, FEE_TX_ID, | ||
Coin.valueOf(100000), true, FEE_PAYMENT_HEIGHT, filterManager); | ||
|
||
doReturn(Coin.valueOf(10_000)).when(daoStateService).getParamValueAsCoin(any(), anyInt()); | ||
doReturn(Coin.valueOf(10_000)).when(daoStateService).getParamValueAsCoin(any(), anyString()); | ||
|
||
doReturn(null).when(filterManager).getFilter(); | ||
doReturn(List.of(Coin.valueOf(5_000))).when(daoStateService).getParamChangeList(any()); | ||
|
||
TxValidator txValidator1 = txValidator.validateBsqFeeTx(false); | ||
assertThat(txValidator1.getStatus(), is(FeeValidationStatus.NACK_TAKER_FEE_TOO_LOW)); | ||
} | ||
} |