Search in sources :

Example 1 with WebhookNotification

use of com.braintreegateway.WebhookNotification in project camel by apache.

the class WebhookNotificationGatewayIntegrationTest method testParse.

@Test
public void testParse() throws Exception {
    final BraintreeGateway gateway = getGateway();
    Map<String, String> notification = gateway.webhookTesting().sampleNotification(WebhookNotification.Kind.SUBSCRIPTION_WENT_PAST_DUE, "my_id");
    final Map<String, Object> headers = new HashMap<>();
    headers.put(BraintreeConstants.PROPERTY_PREFIX + "signature", notification.get("bt_signature"));
    headers.put(BraintreeConstants.PROPERTY_PREFIX + "payload", notification.get("bt_payload"));
    final WebhookNotification result = requestBodyAndHeaders("direct://PARSE", null, headers);
    assertNotNull("parse result", result);
    assertEquals("my_id", result.getSubscription().getId());
}
Also used : HashMap(java.util.HashMap) WebhookNotification(com.braintreegateway.WebhookNotification) BraintreeGateway(com.braintreegateway.BraintreeGateway) Test(org.junit.Test)

Aggregations

BraintreeGateway (com.braintreegateway.BraintreeGateway)1 WebhookNotification (com.braintreegateway.WebhookNotification)1 HashMap (java.util.HashMap)1 Test (org.junit.Test)1