/xchange-ripple/src/test/java/org/knowm/xchange/ripple/dto/account/trade/RippleNotificationTest.java

http://github.com/timmolter/XChange · Java · 54 lines · 46 code · 6 blank · 2 comment · 0 complexity · f8a3ea631a8119ef3c95b60dc4632fc5 MD5 · raw file

  1. package org.knowm.xchange.ripple.dto.account.trade;
  2. import static org.assertj.core.api.Assertions.assertThat;
  3. import com.fasterxml.jackson.databind.ObjectMapper;
  4. import java.io.IOException;
  5. import java.io.InputStream;
  6. import java.text.ParseException;
  7. import org.junit.Test;
  8. import org.knowm.xchange.ripple.RippleExchange;
  9. import org.knowm.xchange.ripple.dto.trade.RippleNotifications;
  10. import org.knowm.xchange.ripple.dto.trade.RippleNotifications.RippleNotification;
  11. public class RippleNotificationTest {
  12. @Test
  13. public void notificationUnmarshalTest() throws IOException, ParseException {
  14. // Read in the JSON from the example resources
  15. final InputStream is =
  16. getClass()
  17. .getResourceAsStream("/org/knowm/xchange/ripple/dto/trade/example-notifications.json");
  18. final ObjectMapper mapper = new ObjectMapper();
  19. final RippleNotifications response = mapper.readValue(is, RippleNotifications.class);
  20. // Verify that the example data was unmarshalled correctly
  21. assertThat(response.isSuccess()).isEqualTo(true);
  22. assertThat(response.getNotifications()).hasSize(11);
  23. final RippleNotification orderType = response.getNotifications().get(9);
  24. assertThat(orderType.getAccount()).isEqualTo("rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B");
  25. assertThat(orderType.getType()).isEqualTo("order");
  26. assertThat(orderType.getDirection()).isEqualTo("incoming");
  27. assertThat(orderType.getState()).isEqualTo("validated");
  28. assertThat(orderType.getResult()).isEqualTo("tesSUCCESS");
  29. assertThat(orderType.getLedger()).isEqualTo(14024693);
  30. assertThat(orderType.getHash())
  31. .isEqualTo("BFFD04119882BF26B68E27090EE44C0074EAAFA92E0248C979511808193522D5");
  32. assertThat(orderType.getTimestamp())
  33. .isEqualTo(RippleExchange.ToDate("2015-06-13T11:45:20.102Z"));
  34. assertThat(orderType.getTransactionUrl())
  35. .isEqualTo(
  36. "api.ripple.com/v1/accounts/rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B/orders/BFFD04119882BF26B68E27090EE44C0074EAAFA92E0248C979511808193522D5");
  37. assertThat(orderType.getPreviousHash())
  38. .isEqualTo("F2DCD35FB1D2E9951B56BD773D67345C4955CB41D8A43DB3D2BF5AE9E2F831C6");
  39. assertThat(orderType.getPreviousNotificationUrl())
  40. .isEqualTo(
  41. "api.ripple.com/v1/accounts/rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B/notifications/F2DCD35FB1D2E9951B56BD773D67345C4955CB41D8A43DB3D2BF5AE9E2F831C6");
  42. assertThat(orderType.getNextHash())
  43. .isEqualTo("GHRE072948B95345396B2D9A364363GDE521HRT67QQRGGRTHYTRUP0RRB631107");
  44. assertThat(orderType.getNextNotificationUrl())
  45. .isEqualTo(
  46. "api.ripple.com/v1/accounts/rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B/notifications/GHRE072948B95345396B2D9A364363GDE521HRT67QQRGGRTHYTRUP0RRB631107");
  47. }
  48. }