test/jdk/java/net/httpclient/offline/OfflineTesting.java
author chegar
Wed, 07 Feb 2018 14:17:24 +0000
branchhttp-client-branch
changeset 56089 42208b2f224e
parent 56023 fa36a61f4cbf
child 56167 96fa4f49a9ff
permissions -rw-r--r--
http-client-branch: move to standard package and module name

/*
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/*
 * @test
 * @summary Demonstrates how to achieve testing without network connections
 * @build FixedHttpHeaders DelegatingHttpClient FixedHttpResponse FixedResponseHttpClient
 * @run testng/othervm OfflineTesting
 */

import java.io.IOException;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import org.testng.annotations.Test;
import static java.nio.charset.StandardCharsets.UTF_8;
import static java.net.http.HttpRequest.BodyPublisher.fromString;
import static java.net.http.HttpResponse.BodyHandler.asByteArray;
import static java.net.http.HttpResponse.BodyHandler.asString;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertTrue;
import static org.testng.Assert.fail;

public class OfflineTesting {

    private static HttpClient getClient() {
        // be sure to return the appropriate client when testing
        //return HttpClient.newHttpClient();
        return FixedResponseHttpClient.createClientFrom(
                HttpClient.newBuilder(),
                200,
                FixedHttpHeaders.of("Server",  "nginx",
                                    "Content-Type", "text/html"),
                "A response message");
    }

    @Test
    public void testResponseAsString() {
        HttpClient client = getClient();

        HttpRequest request = HttpRequest.newBuilder()
                .uri(URI.create("http://openjdk.java.net/"))
                .build();

        client.sendAsync(request, asString())
                .thenAccept(response -> {
                    System.out.println("response: " + response);
                    assertEquals(response.statusCode(), 200);
                    assertTrue(response.headers().firstValue("Server").isPresent());
                    assertEquals(response.body(), "A response message"); } )
                .join();
    }

    @Test
    public void testResponseAsByteArray() {
        HttpClient client = getClient();

        HttpRequest request = HttpRequest.newBuilder()
                .uri(URI.create("http://openjdk.java.net/"))
                .build();

        client.sendAsync(request, asByteArray())
                .thenAccept(response -> {
                    System.out.println("response: " + response);
                    assertEquals(response.statusCode(), 200);
                    assertTrue(response.headers().firstValue("Content-Type").isPresent());
                    assertEquals(response.body(), "A response message".getBytes(UTF_8)); } )
                .join();
    }

    @Test
    public void testFileNotFound() {
        //HttpClient client = HttpClient.newHttpClient();
        HttpClient client = FixedResponseHttpClient.createClientFrom(
                HttpClient.newBuilder(),
                404,
                FixedHttpHeaders.of("Connection",  "keep-alive",
                                    "Content-Length", "162",
                                    "Content-Type", "text/html",
                                    "Date", "Mon, 15 Jan 2018 15:01:16 GMT",
                                    "Server", "nginx"),
                "<html>\n" +
                "<head><title>404 Not Found</title></head>\n" +
                "<body bgcolor=\"white\">\n" +
                "<center><h1>404 Not Found</h1></center>\n" +
                "<hr><center>nginx</center>\n" +
                "</body>\n" +
                "</html>");

        HttpRequest request = HttpRequest.newBuilder()
                .uri(URI.create("http://openjdk.java.net/notFound"))
                .build();

        client.sendAsync(request, asString())
                .thenAccept(response -> {
                    assertEquals(response.statusCode(), 404);
                    response.headers().firstValue("Content-Type")
                            .ifPresentOrElse(type -> assertEquals(type, "text/html"),
                                             () -> fail("Content-Type not present"));
                    assertTrue(response.body().contains("404 Not Found")); } )
                .join();
    }

    @Test
    public void testEcho() {
        HttpClient client = FixedResponseHttpClient.createEchoClient(
                HttpClient.newBuilder(),
                200,
                FixedHttpHeaders.of("Connection",  "keep-alive"));

        HttpRequest request = HttpRequest.newBuilder()
                .uri(URI.create("http://openjdk.java.net/echo"))
                .POST(fromString("Hello World"))
                .build();

        client.sendAsync(request, asString())
                .thenAccept(response -> {
                    System.out.println("response: " + response);
                    assertEquals(response.statusCode(), 200);
                    assertEquals(response.body(), "Hello World"); } )
                .join();
    }

    @Test
    public void testEchoBlocking() throws IOException, InterruptedException {
        HttpClient client = FixedResponseHttpClient.createEchoClient(
                HttpClient.newBuilder(),
                200,
                FixedHttpHeaders.of("Connection",  "keep-alive"));

        HttpRequest request = HttpRequest.newBuilder()
                .uri(URI.create("http://openjdk.java.net/echo"))
                .POST(fromString("Hello chegar!!"))
                .build();

        HttpResponse<String> response = client.send(request, asString());
        System.out.println("response: " + response);
        assertEquals(response.statusCode(), 200);
        assertEquals(response.body(), "Hello chegar!!");
    }
}