-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 #4716 from ghubstan/14-canceloffer-test
Test api method 'canceloffer'
- Loading branch information
Showing
3 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
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
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
81 changes: 81 additions & 0 deletions
81
apitest/src/test/java/bisq/apitest/method/offer/CancelOfferTest.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,81 @@ | ||
/* | ||
* 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.apitest.method.offer; | ||
|
||
import bisq.core.btc.wallet.Restrictions; | ||
|
||
import bisq.proto.grpc.CreateOfferRequest; | ||
import bisq.proto.grpc.OfferInfo; | ||
|
||
import java.util.List; | ||
|
||
import lombok.extern.slf4j.Slf4j; | ||
|
||
import org.junit.jupiter.api.MethodOrderer; | ||
import org.junit.jupiter.api.Order; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.TestMethodOrder; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
|
||
@Slf4j | ||
@TestMethodOrder(MethodOrderer.OrderAnnotation.class) | ||
public class CancelOfferTest extends AbstractOfferTest { | ||
|
||
private static final int MAX_OFFERS = 3; | ||
|
||
@Test | ||
@Order(1) | ||
public void testCancelOffer() { | ||
var req = CreateOfferRequest.newBuilder() | ||
.setPaymentAccountId(alicesDummyAcct.getId()) | ||
.setDirection("buy") | ||
.setCurrencyCode("cad") | ||
.setAmount(10000000) | ||
.setMinAmount(10000000) | ||
.setUseMarketBasedPrice(true) | ||
.setMarketPriceMargin(0.00) | ||
.setPrice("0") | ||
.setBuyerSecurityDeposit(Restrictions.getDefaultBuyerSecurityDepositAsPercent()) | ||
.build(); | ||
|
||
// Create some offers. | ||
for (int i = 1; i <= MAX_OFFERS; i++) { | ||
//noinspection ResultOfMethodCallIgnored | ||
aliceStubs.offersService.createOffer(req); | ||
// Wait for Alice's AddToOfferBook task. | ||
// Wait times vary; my logs show >= 2 second delay. | ||
sleep(2500); | ||
} | ||
|
||
List<OfferInfo> offers = getOffersSortedByDate(aliceStubs, "buy", "cad"); | ||
assertEquals(MAX_OFFERS, offers.size()); | ||
|
||
// Cancel the offers, checking the open offer count after each offer removal. | ||
for (int i = 1; i <= MAX_OFFERS; i++) { | ||
cancelOffer(aliceStubs, offers.remove(0).getId()); | ||
assertEquals(MAX_OFFERS - i, getOpenOffersCount(aliceStubs, "buy", "cad")); | ||
} | ||
|
||
sleep(1000); // wait for offer removal | ||
|
||
offers = getOffersSortedByDate(aliceStubs, "buy", "cad"); | ||
assertEquals(0, offers.size()); | ||
} | ||
} |