< prev index next >

test/jdk/java/net/httpclient/MultiAuthTest.java

Print this page


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


  29  * @summary Basic Authentication test with multiple clients issuing
  30  *          multiple requests. Includes password changes
  31  *          on server and client side.
  32  */
  33 
  34 import com.sun.net.httpserver.BasicAuthenticator;
  35 import com.sun.net.httpserver.HttpContext;
  36 import com.sun.net.httpserver.HttpExchange;
  37 import com.sun.net.httpserver.HttpHandler;
  38 import com.sun.net.httpserver.HttpServer;
  39 import java.io.IOException;
  40 import java.io.InputStream;
  41 import java.io.OutputStream;
  42 import java.net.InetSocketAddress;
  43 import java.net.PasswordAuthentication;
  44 import java.net.URI;
  45 import jdk.incubator.http.*;
  46 import java.util.concurrent.ExecutorService;
  47 import java.util.concurrent.Executors;
  48 import static java.nio.charset.StandardCharsets.US_ASCII;
  49 import static jdk.incubator.http.HttpRequest.BodyProcessor.fromString;
  50 import static jdk.incubator.http.HttpResponse.BodyHandler.asString;
  51 import java.util.UUID;
  52 import java.util.concurrent.atomic.AtomicInteger;
  53 import java.util.function.Function;
  54 
  55 public class MultiAuthTest {
  56 
  57     static volatile boolean ok;
  58     static final String RESPONSE = "Hello world";
  59     static final String POST_BODY = "This is the POST body " + UUID.randomUUID();
  60 
  61     static HttpServer createServer(ExecutorService e, BasicAuthenticator sa) throws Exception {
  62         HttpServer server = HttpServer.create(new InetSocketAddress(0), 10);
  63         Handler h = new Handler();
  64         HttpContext serverContext = server.createContext("/test", h);
  65         serverContext.setAuthenticator(sa);
  66         server.setExecutor(e);
  67         server.start();
  68         return server;
  69     }


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


  29  * @summary Basic Authentication test with multiple clients issuing
  30  *          multiple requests. Includes password changes
  31  *          on server and client side.
  32  */
  33 
  34 import com.sun.net.httpserver.BasicAuthenticator;
  35 import com.sun.net.httpserver.HttpContext;
  36 import com.sun.net.httpserver.HttpExchange;
  37 import com.sun.net.httpserver.HttpHandler;
  38 import com.sun.net.httpserver.HttpServer;
  39 import java.io.IOException;
  40 import java.io.InputStream;
  41 import java.io.OutputStream;
  42 import java.net.InetSocketAddress;
  43 import java.net.PasswordAuthentication;
  44 import java.net.URI;
  45 import jdk.incubator.http.*;
  46 import java.util.concurrent.ExecutorService;
  47 import java.util.concurrent.Executors;
  48 import static java.nio.charset.StandardCharsets.US_ASCII;
  49 import static jdk.incubator.http.HttpRequest.BodyPublisher.fromString;
  50 import static jdk.incubator.http.HttpResponse.BodyHandler.asString;
  51 import java.util.UUID;
  52 import java.util.concurrent.atomic.AtomicInteger;
  53 import java.util.function.Function;
  54 
  55 public class MultiAuthTest {
  56 
  57     static volatile boolean ok;
  58     static final String RESPONSE = "Hello world";
  59     static final String POST_BODY = "This is the POST body " + UUID.randomUUID();
  60 
  61     static HttpServer createServer(ExecutorService e, BasicAuthenticator sa) throws Exception {
  62         HttpServer server = HttpServer.create(new InetSocketAddress(0), 10);
  63         Handler h = new Handler();
  64         HttpContext serverContext = server.createContext("/test", h);
  65         serverContext.setAuthenticator(sa);
  66         server.setExecutor(e);
  67         server.start();
  68         return server;
  69     }


< prev index next >