Search in sources :

Example 6 with ForestRequest

use of com.dtflys.forest.http.ForestRequest in project forest by dromara.

the class TestUrlWithAt method testGetUrlWithUserInfo.

@Test
public void testGetUrlWithUserInfo() {
    server.enqueue(new MockResponse().setBody(EXPECTED));
    ForestResponse<String> response = getClient.getUrlWithUserInfo();
    assertNotNull(response);
    log.info("response: " + response);
    ForestRequest request = response.getRequest();
    String userInfo = request.getUserInfo();
    assertEquals("xxxxxx:yyyy", userInfo);
    mockRequest(server).assertMethodEquals("GET").assertPathEquals("/hello/user");
}
Also used : MockResponse(okhttp3.mockwebserver.MockResponse) ForestRequest(com.dtflys.forest.http.ForestRequest) Test(org.junit.Test)

Example 7 with ForestRequest

use of com.dtflys.forest.http.ForestRequest in project forest by dromara.

the class TestUrlWithAt method testGetUrlWithUserInfo3.

@Test
public void testGetUrlWithUserInfo3() {
    server.enqueue(new MockResponse().setBody(EXPECTED));
    ForestResponse<String> response = getClient.getUrlWithUserInfo3("xxx/yyy/foo");
    assertNotNull(response);
    log.info("response: " + response);
    ForestRequest request = response.getRequest();
    String userInfo = request.getUserInfo();
    assertEquals("xxx/yyy/foo", userInfo);
    mockRequest(server).assertMethodEquals("GET").assertPathEquals("/hello/user");
}
Also used : MockResponse(okhttp3.mockwebserver.MockResponse) ForestRequest(com.dtflys.forest.http.ForestRequest) Test(org.junit.Test)

Example 8 with ForestRequest

use of com.dtflys.forest.http.ForestRequest in project forest by dromara.

the class TestUrlWithAt method testGetUrlWithUserInfo2.

@Test
public void testGetUrlWithUserInfo2() {
    server.enqueue(new MockResponse().setBody(EXPECTED));
    ForestResponse<String> response = getClient.getUrlWithUserInfo2();
    assertNotNull(response);
    log.info("response: " + response);
    ForestRequest request = response.getRequest();
    String userInfo = request.getUserInfo();
    assertEquals("xxxxxx:1234", userInfo);
    mockRequest(server).assertMethodEquals("GET").assertPathEquals("/hello/user");
}
Also used : MockResponse(okhttp3.mockwebserver.MockResponse) ForestRequest(com.dtflys.forest.http.ForestRequest) Test(org.junit.Test)

Example 9 with ForestRequest

use of com.dtflys.forest.http.ForestRequest in project forest by dromara.

the class TestBaseRedirectClient method testBaseAutoRedirect_305.

@Test
public void testBaseAutoRedirect_305() {
    server.enqueue(new MockResponse().addHeader("Location", "http://localhost:" + server.getPort() + "/b").setResponseCode(305));
    server.enqueue(new MockResponse().setBody(EXPECTED));
    AtomicReference<ForestRequest> atomicReq = new AtomicReference<>(null);
    ForestResponse<String> response = baseRedirectClient.testAutoRedirect(((redirectReq, prevReq, prevRes) -> {
        atomicReq.set(redirectReq);
    }));
    assertThat(atomicReq.get()).isNotNull();
    assertThat(atomicReq.get().path()).isEqualTo("/b");
    assertThat(response).isNotNull();
    assertThat(response.getStatusCode()).isEqualTo(200);
    String result = response.getResult();
    assertThat(result).isNotNull().isEqualTo(EXPECTED);
    mockRequest(server).assertPathEquals("/");
    mockRequest(server).assertPathEquals("/b").assertBodyEquals("body=" + RedirectInterceptor.BODY);
}
Also used : BeforeClass(org.junit.BeforeClass) ForestRequest(com.dtflys.forest.http.ForestRequest) Test(org.junit.Test) AtomicReference(java.util.concurrent.atomic.AtomicReference) ForestResponse(com.dtflys.forest.http.ForestResponse) TimeUnit(java.util.concurrent.TimeUnit) CountDownLatch(java.util.concurrent.CountDownLatch) ForestConfiguration(com.dtflys.forest.config.ForestConfiguration) Rule(org.junit.Rule) MockWebServer(okhttp3.mockwebserver.MockWebServer) MockResponse(okhttp3.mockwebserver.MockResponse) MockServerRequest.mockRequest(com.dtflys.forest.mock.MockServerRequest.mockRequest) AssertionsForClassTypes.assertThat(org.assertj.core.api.AssertionsForClassTypes.assertThat) HttpBackend(com.dtflys.forest.backend.HttpBackend) BaseClientTest(com.dtflys.test.http.BaseClientTest) MockResponse(okhttp3.mockwebserver.MockResponse) AtomicReference(java.util.concurrent.atomic.AtomicReference) ForestRequest(com.dtflys.forest.http.ForestRequest) Test(org.junit.Test) BaseClientTest(com.dtflys.test.http.BaseClientTest)

Example 10 with ForestRequest

use of com.dtflys.forest.http.ForestRequest in project forest by dromara.

the class TestBaseRedirectClient method testBaseAutoRedirect_307.

@Test
public void testBaseAutoRedirect_307() {
    server.enqueue(new MockResponse().addHeader("Location", "http://localhost:" + server.getPort() + "/b").setResponseCode(307));
    server.enqueue(new MockResponse().setBody(EXPECTED));
    AtomicReference<ForestRequest> atomicReq = new AtomicReference<>(null);
    ForestResponse<String> response = baseRedirectClient.testAutoRedirect(((redirectReq, prevReq, prevRes) -> {
        atomicReq.set(redirectReq);
    }));
    assertThat(atomicReq.get()).isNotNull();
    assertThat(atomicReq.get().path()).isEqualTo("/b");
    assertThat(response).isNotNull();
    assertThat(response.getStatusCode()).isEqualTo(200);
    String result = response.getResult();
    assertThat(result).isNotNull().isEqualTo(EXPECTED);
    mockRequest(server).assertPathEquals("/");
    mockRequest(server).assertPathEquals("/b").assertBodyEquals("body=" + RedirectInterceptor.BODY);
}
Also used : BeforeClass(org.junit.BeforeClass) ForestRequest(com.dtflys.forest.http.ForestRequest) Test(org.junit.Test) AtomicReference(java.util.concurrent.atomic.AtomicReference) ForestResponse(com.dtflys.forest.http.ForestResponse) TimeUnit(java.util.concurrent.TimeUnit) CountDownLatch(java.util.concurrent.CountDownLatch) ForestConfiguration(com.dtflys.forest.config.ForestConfiguration) Rule(org.junit.Rule) MockWebServer(okhttp3.mockwebserver.MockWebServer) MockResponse(okhttp3.mockwebserver.MockResponse) MockServerRequest.mockRequest(com.dtflys.forest.mock.MockServerRequest.mockRequest) AssertionsForClassTypes.assertThat(org.assertj.core.api.AssertionsForClassTypes.assertThat) HttpBackend(com.dtflys.forest.backend.HttpBackend) BaseClientTest(com.dtflys.test.http.BaseClientTest) MockResponse(okhttp3.mockwebserver.MockResponse) AtomicReference(java.util.concurrent.atomic.AtomicReference) ForestRequest(com.dtflys.forest.http.ForestRequest) Test(org.junit.Test) BaseClientTest(com.dtflys.test.http.BaseClientTest)

Aggregations

ForestRequest (com.dtflys.forest.http.ForestRequest)85 Test (org.junit.Test)75 MockResponse (okhttp3.mockwebserver.MockResponse)59 BaseClientTest (com.dtflys.test.http.BaseClientTest)48 HttpBackend (com.dtflys.forest.backend.HttpBackend)42 MockWebServer (okhttp3.mockwebserver.MockWebServer)42 Rule (org.junit.Rule)42 ForestConfiguration (com.dtflys.forest.config.ForestConfiguration)39 ForestResponse (com.dtflys.forest.http.ForestResponse)37 CountDownLatch (java.util.concurrent.CountDownLatch)36 BeforeClass (org.junit.BeforeClass)36 MockServerRequest.mockRequest (com.dtflys.forest.mock.MockServerRequest.mockRequest)35 AssertionsForClassTypes.assertThat (org.assertj.core.api.AssertionsForClassTypes.assertThat)35 TimeUnit (java.util.concurrent.TimeUnit)29 AtomicReference (java.util.concurrent.atomic.AtomicReference)29 ContentType (com.dtflys.forest.backend.ContentType)15 File (java.io.File)14 URL (java.net.URL)14 HashMap (java.util.HashMap)14 LinkedHashMap (java.util.LinkedHashMap)14