use of com.github.jnidzwetzki.bitfinex.v2.entity.ExchangeOrder in project bitfinex-v2-wss-api-java by jnidzwetzki.
the class OrderManagerTest method testOrderSubmissionFailed.
/**
* Test order submit failed
* @throws APIException
* @throws InterruptedException
*/
@Test(timeout = 10000)
public void testOrderSubmissionFailed() throws APIException, InterruptedException {
final String jsonString = "[0,\"n\",[null,\"on-req\",null,null,[null,null,1513970684865000,\"tBTCUSD\",null,null,0.001,0.001,\"EXCHANGE MARKET\",null,null,null,null,null,null,null,12940,null,null,null,null,null,null,0,null,null],null,\"ERROR\",\"Invalid order: minimum size for BTC/USD is 0.002\"]]";
final JSONArray jsonArray = new JSONArray(jsonString);
final CountDownLatch latch = new CountDownLatch(1);
final Consumer<ExchangeOrder> orderCallback = (e) -> {
Assert.assertEquals(ExchangeOrderState.STATE_ERROR, e.getState());
Assert.assertEquals(API_KEY, e.getApikey());
Assert.assertEquals(1513970684865000l, e.getCid());
Assert.assertEquals(BitfinexCurrencyPair.BTC_USD.toBitfinexString(), e.getSymbol());
latch.countDown();
};
final BitfinexApiBroker bitfinexApiBroker = buildMockedBitfinexConnection();
bitfinexApiBroker.getOrderManager().registerCallback(orderCallback);
final NotificationHandler notificationHandler = new NotificationHandler();
notificationHandler.handleChannelData(bitfinexApiBroker, jsonArray);
latch.await();
}
use of com.github.jnidzwetzki.bitfinex.v2.entity.ExchangeOrder in project bitfinex-v2-wss-api-java by jnidzwetzki.
the class OrderManagerTest method testCancelOrder.
/**
* Test the cancelation of an order
* @throws InterruptedException
* @throws APIException
*/
@Test(timeout = 60000)
public void testCancelOrder() throws APIException, InterruptedException {
final BitfinexApiBroker bitfinexApiBroker = buildMockedBitfinexConnection();
final OrderManager orderManager = bitfinexApiBroker.getOrderManager();
final Runnable r = () -> {
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
return;
}
final ExchangeOrder exchangeOrder = new ExchangeOrder();
exchangeOrder.setOrderId(12);
exchangeOrder.setState(ExchangeOrderState.STATE_CANCELED);
orderManager.updateOrder(exchangeOrder);
};
// Cancel event
(new Thread(r)).start();
orderManager.cancelOrderAndWaitForCompletion(12);
}
Aggregations