Search in sources :

Example 1 with MyRequest

use of com.recurly.v3.fixtures.MyRequest in project recurly-client-java by recurly.

the class BaseClientTest method testMakeRequestWithBody.

@Test
public void testMakeRequestWithBody() throws IOException {
    final Call mCall = mock(Call.class);
    AtomicBoolean postCalled = new AtomicBoolean(false);
    AtomicBoolean putCalled = new AtomicBoolean(false);
    Answer answer = (i) -> {
        Request request = i.getArgument(0);
        HttpUrl url = request.url();
        switch(request.method()) {
            case "POST":
                assertEquals("/resources", url.url().getPath());
                postCalled.set(true);
                break;
            case "PUT":
                assertEquals("/resources/someId", url.url().getPath());
                putCalled.set(true);
                break;
            default:
                // Any other request method is a failure
                Assert.fail();
        }
        return mCall;
    };
    when(mCall.execute()).thenReturn(MockClient.buildResponse(200, "OK", getResponseJson())).thenReturn(MockClient.buildResponse(200, "OK", getResponseJson()));
    OkHttpClient mockOkHttpClient = MockClient.getMockOkHttpClient(answer);
    final MockClient client = new MockClient("apiKey", mockOkHttpClient);
    final MyRequest newResource = new MyRequest();
    newResource.setMyString("aaron");
    final MyResource resource = client.createResource(newResource);
    assertEquals(MyResource.class, resource.getClass());
    assertEquals("aaron", resource.getMyString());
    assertTrue(postCalled.get());
    final MyResource anotherResource = client.updateResource("someId", newResource);
    assertEquals(MyResource.class, anotherResource.getClass());
    assertEquals("aaron", anotherResource.getMyString());
    assertTrue(putCalled.get());
}
Also used : Assertions.assertThrows(org.junit.jupiter.api.Assertions.assertThrows) NotFoundException(com.recurly.v3.exception.NotFoundException) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) FixtureConstants(com.recurly.v3.fixtures.FixtureConstants) HashMap(java.util.HashMap) Headers(okhttp3.Headers) MockQueryParams(com.recurly.v3.fixtures.MockQueryParams) ArrayList(java.util.ArrayList) Answer(org.mockito.stubbing.Answer) MockClient(com.recurly.v3.fixtures.MockClient) ApiException(com.recurly.v3.ApiException) Map(java.util.Map) Response(okhttp3.Response) Call(okhttp3.Call) Assertions.assertEquals(org.junit.jupiter.api.Assertions.assertEquals) MediaType(okhttp3.MediaType) Request(okhttp3.Request) TransactionException(com.recurly.v3.exception.TransactionException) InvalidApiKeyException(com.recurly.v3.exception.InvalidApiKeyException) MyResource(com.recurly.v3.fixtures.MyResource) DateTime(org.joda.time.DateTime) Assert.assertTrue(org.junit.Assert.assertTrue) IOException(java.io.IOException) Mockito.when(org.mockito.Mockito.when) Field(java.lang.reflect.Field) StandardCharsets(java.nio.charset.StandardCharsets) Test(org.junit.jupiter.api.Test) IOUtils(org.apache.commons.io.IOUtils) OkHttpClient(okhttp3.OkHttpClient) ValidationException(com.recurly.v3.exception.ValidationException) MyRequest(com.recurly.v3.fixtures.MyRequest) HttpUrl(okhttp3.HttpUrl) Assert(org.junit.Assert) InternalServerException(com.recurly.v3.exception.InternalServerException) Collections(java.util.Collections) ExceptionFactory(com.recurly.v3.exception.ExceptionFactory) InputStream(java.io.InputStream) Mockito.mock(org.mockito.Mockito.mock) Call(okhttp3.Call) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) Answer(org.mockito.stubbing.Answer) OkHttpClient(okhttp3.OkHttpClient) Request(okhttp3.Request) MyRequest(com.recurly.v3.fixtures.MyRequest) MyRequest(com.recurly.v3.fixtures.MyRequest) HttpUrl(okhttp3.HttpUrl) MockClient(com.recurly.v3.fixtures.MockClient) MyResource(com.recurly.v3.fixtures.MyResource) Test(org.junit.jupiter.api.Test)

Example 2 with MyRequest

use of com.recurly.v3.fixtures.MyRequest in project recurly-client-java by recurly.

the class JsonSerializerTest method testSerialize.

@Test
public void testSerialize() {
    final JsonSerializer jsonSerializer = new JsonSerializer();
    final MyRequest mockRequest = new MyRequest();
    mockRequest.setMyString("aaron");
    mockRequest.setMyConstant(FixtureConstants.ConstantType.TWENTY_THREE);
    final String serialized = jsonSerializer.serialize(mockRequest);
    assertEquals("{\"my_string\":\"aaron\",\"my_constant\":\"twenty-three\"}", serialized);
}
Also used : MyRequest(com.recurly.v3.fixtures.MyRequest) Test(org.junit.jupiter.api.Test)

Aggregations

MyRequest (com.recurly.v3.fixtures.MyRequest)2 Test (org.junit.jupiter.api.Test)2 ApiException (com.recurly.v3.ApiException)1 ExceptionFactory (com.recurly.v3.exception.ExceptionFactory)1 InternalServerException (com.recurly.v3.exception.InternalServerException)1 InvalidApiKeyException (com.recurly.v3.exception.InvalidApiKeyException)1 NotFoundException (com.recurly.v3.exception.NotFoundException)1 TransactionException (com.recurly.v3.exception.TransactionException)1 ValidationException (com.recurly.v3.exception.ValidationException)1 FixtureConstants (com.recurly.v3.fixtures.FixtureConstants)1 MockClient (com.recurly.v3.fixtures.MockClient)1 MockQueryParams (com.recurly.v3.fixtures.MockQueryParams)1 MyResource (com.recurly.v3.fixtures.MyResource)1 IOException (java.io.IOException)1 InputStream (java.io.InputStream)1 Field (java.lang.reflect.Field)1 StandardCharsets (java.nio.charset.StandardCharsets)1 ArrayList (java.util.ArrayList)1 Collections (java.util.Collections)1 HashMap (java.util.HashMap)1