use of com.ingenico.connect.gateway.sdk.java.Response in project connect-sdk-java by Ingenico-ePayments.
the class PaymentsClientTest method testCreateInvalidRequest.
/**
* Tests that a 400 failure response without a payment result will throw a {@link ValidationException}.
*/
@Test
@SuppressWarnings("resource")
public void testCreateInvalidRequest() {
Client client = Factory.createClient(session);
String responseBody = getResource("invalid_request.json");
whenPost().thenReturn(new Response(400, responseBody, null));
CreatePaymentRequest body = createRequest();
try {
client.merchant("merchantId").payments().create(body);
Assert.fail("Expected ValidationException");
} catch (ValidationException e) {
Assert.assertTrue(e.toString().contains(responseBody));
}
}
use of com.ingenico.connect.gateway.sdk.java.Response in project connect-sdk-java by Ingenico-ePayments.
the class PaymentsClientTest method testCreateNotFound.
/**
* Tests that a 404 response with a non-JSON response will throw a {@link NotFoundException}.
*/
@Test
@SuppressWarnings("resource")
public void testCreateNotFound() {
Client client = Factory.createClient(session);
String responseBody = getResource("not_found.html");
whenPost().thenReturn(new Response(404, responseBody, Arrays.asList(new ResponseHeader("content-type", "text/html"))));
CreatePaymentRequest body = createRequest();
try {
client.merchant("merchantId").payments().create(body);
Assert.fail("Expected NotFoundException");
} catch (NotFoundException e) {
Assert.assertNotNull(e.getCause());
Assert.assertEquals(ResponseException.class, e.getCause().getClass());
Assert.assertTrue(e.getCause().toString().contains(responseBody));
}
}
use of com.ingenico.connect.gateway.sdk.java.Response in project connect-sdk-java by Ingenico-ePayments.
the class PaymentsClientTest method testCreateMethodNotAllowed.
/**
* Tests that a 405 response with a non-JSON response will throw a {@link CommunicationException}.
*/
@Test
@SuppressWarnings("resource")
public void testCreateMethodNotAllowed() {
Client client = Factory.createClient(session);
String responseBody = getResource("method_not_allowed.html");
whenPost().thenReturn(new Response(405, responseBody, Arrays.asList(new ResponseHeader("content-type", "text/html"))));
CreatePaymentRequest body = createRequest();
try {
client.merchant("merchantId").payments().create(body);
Assert.fail("Expected CommunicationException");
} catch (CommunicationException e) {
Assert.assertNotNull(e.getCause());
Assert.assertEquals(ResponseException.class, e.getCause().getClass());
Assert.assertTrue(e.getCause().toString().contains(responseBody));
}
}
use of com.ingenico.connect.gateway.sdk.java.Response in project connect-sdk-java by Ingenico-ePayments.
the class PaymentsClientTest method testCreateRejected.
/**
* Tests that a failure response with a payment result will throw a {@link DeclinedPaymentException}.
*/
@Test
@SuppressWarnings("resource")
public void testCreateRejected() {
Client client = Factory.createClient(session);
String responseBody = getResource("rejected.json");
whenPost().thenReturn(new Response(400, responseBody, null));
CreatePaymentRequest body = createRequest();
try {
client.merchant("merchantId").payments().create(body);
Assert.fail("Expected DeclinedPaymentException");
} catch (DeclinedPaymentException e) {
Assert.assertTrue(e.toString().contains("payment '000002000020142544360000100001'"));
Assert.assertTrue(e.toString().contains("status 'REJECTED'"));
Assert.assertTrue(e.toString().contains(responseBody));
Assert.assertNotNull(e.getCreatePaymentResult());
Assert.assertEquals("000002000020142544360000100001", e.getCreatePaymentResult().getPayment().getId());
Assert.assertEquals("REJECTED", e.getCreatePaymentResult().getPayment().getStatus());
}
}
use of com.ingenico.connect.gateway.sdk.java.Response in project connect-sdk-java by Ingenico-ePayments.
the class PaymentsClientTest method testCreateSuccess.
/**
* Tests that a non-failure response will not throw an exception.
*/
@Test
@SuppressWarnings("resource")
public void testCreateSuccess() {
Client client = Factory.createClient(session);
String responseBody = getResource("pending_approval.json");
whenPost().thenReturn(new Response(201, responseBody, null));
CreatePaymentRequest body = createRequest();
CreatePaymentResponse response = client.merchant("merchantId").payments().create(body);
Assert.assertEquals("000002000020142549460000100001", response.getPayment().getId());
Assert.assertEquals("PENDING_APPROVAL", response.getPayment().getStatus());
}
Aggregations