Search in sources :

Example 31 with Client

use of com.ingenico.connect.gateway.sdk.java.Client 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));
    }
}
Also used : Response(com.ingenico.connect.gateway.sdk.java.Response) CreatePaymentResponse(com.ingenico.connect.gateway.sdk.java.domain.payment.CreatePaymentResponse) ResponseHeader(com.ingenico.connect.gateway.sdk.java.ResponseHeader) ResponseException(com.ingenico.connect.gateway.sdk.java.ResponseException) CreatePaymentRequest(com.ingenico.connect.gateway.sdk.java.domain.payment.CreatePaymentRequest) NotFoundException(com.ingenico.connect.gateway.sdk.java.NotFoundException) Client(com.ingenico.connect.gateway.sdk.java.Client) Test(org.junit.Test)

Example 32 with Client

use of com.ingenico.connect.gateway.sdk.java.Client 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));
    }
}
Also used : Response(com.ingenico.connect.gateway.sdk.java.Response) CreatePaymentResponse(com.ingenico.connect.gateway.sdk.java.domain.payment.CreatePaymentResponse) ResponseHeader(com.ingenico.connect.gateway.sdk.java.ResponseHeader) CommunicationException(com.ingenico.connect.gateway.sdk.java.CommunicationException) ResponseException(com.ingenico.connect.gateway.sdk.java.ResponseException) CreatePaymentRequest(com.ingenico.connect.gateway.sdk.java.domain.payment.CreatePaymentRequest) Client(com.ingenico.connect.gateway.sdk.java.Client) Test(org.junit.Test)

Example 33 with Client

use of com.ingenico.connect.gateway.sdk.java.Client 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());
    }
}
Also used : Response(com.ingenico.connect.gateway.sdk.java.Response) CreatePaymentResponse(com.ingenico.connect.gateway.sdk.java.domain.payment.CreatePaymentResponse) DeclinedPaymentException(com.ingenico.connect.gateway.sdk.java.DeclinedPaymentException) CreatePaymentRequest(com.ingenico.connect.gateway.sdk.java.domain.payment.CreatePaymentRequest) Client(com.ingenico.connect.gateway.sdk.java.Client) Test(org.junit.Test)

Example 34 with Client

use of com.ingenico.connect.gateway.sdk.java.Client in project connect-sdk-java by Ingenico-ePayments.

the class GetPaymentProductExample method example.

@SuppressWarnings("unused")
public void example() throws URISyntaxException, IOException {
    Client client = getClient();
    try {
        GetProductParams query = new GetProductParams();
        query.setCountryCode("US");
        query.setCurrencyCode("USD");
        query.setLocale("en_US");
        query.setAmount(1000L);
        query.setIsRecurring(true);
        query.setForceBasicFlow(false);
        query.addHide("fields");
        PaymentProductResponse response = client.merchant("merchantId").products().get(1, query);
    } finally {
        client.close();
    }
}
Also used : Client(com.ingenico.connect.gateway.sdk.java.Client) PaymentProductResponse(com.ingenico.connect.gateway.sdk.java.domain.product.PaymentProductResponse)

Example 35 with Client

use of com.ingenico.connect.gateway.sdk.java.Client in project connect-sdk-java by Ingenico-ePayments.

the class GetPaymentProductsExample method example.

@SuppressWarnings("unused")
public void example() throws URISyntaxException, IOException {
    Client client = getClient();
    try {
        FindProductsParams query = new FindProductsParams();
        query.setCountryCode("US");
        query.setCurrencyCode("USD");
        query.setLocale("en_US");
        query.setAmount(1000L);
        query.setIsRecurring(true);
        query.addHide("fields");
        PaymentProducts response = client.merchant("merchantId").products().find(query);
    } finally {
        client.close();
    }
}
Also used : PaymentProducts(com.ingenico.connect.gateway.sdk.java.domain.product.PaymentProducts) Client(com.ingenico.connect.gateway.sdk.java.Client)

Aggregations

Client (com.ingenico.connect.gateway.sdk.java.Client)70 Test (org.junit.Test)35 CreatePaymentRequest (com.ingenico.connect.gateway.sdk.java.domain.payment.CreatePaymentRequest)19 HttpHost (org.apache.http.HttpHost)17 CreatePaymentResponse (com.ingenico.connect.gateway.sdk.java.domain.payment.CreatePaymentResponse)14 Address (com.ingenico.connect.gateway.sdk.java.domain.definitions.Address)12 AmountOfMoney (com.ingenico.connect.gateway.sdk.java.domain.definitions.AmountOfMoney)11 Response (com.ingenico.connect.gateway.sdk.java.Response)9 CallContext (com.ingenico.connect.gateway.sdk.java.CallContext)7 Customer (com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.Customer)6 Order (com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.Order)6 DeclinedPaymentException (com.ingenico.connect.gateway.sdk.java.DeclinedPaymentException)5 ConvertAmount (com.ingenico.connect.gateway.sdk.java.domain.services.ConvertAmount)5 HashMap (java.util.HashMap)5 ApiException (com.ingenico.connect.gateway.sdk.java.ApiException)4 Card (com.ingenico.connect.gateway.sdk.java.domain.definitions.Card)4 CompanyInformation (com.ingenico.connect.gateway.sdk.java.domain.definitions.CompanyInformation)4 TestConnection (com.ingenico.connect.gateway.sdk.java.domain.services.TestConnection)4 ConvertAmountParams (com.ingenico.connect.gateway.sdk.java.merchant.services.ConvertAmountParams)4 ArrayList (java.util.ArrayList)4