< prev index next >

test/jdk/java/net/httpclient/BasicAuthTest.java

Print this page


   1 /*
   2  * Copyright (c) 2015, 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  */


  28  *          jdk.httpserver
  29  * @run main/othervm BasicAuthTest
  30  * @summary Basic Authentication Test
  31  */
  32 
  33 import com.sun.net.httpserver.BasicAuthenticator;
  34 import com.sun.net.httpserver.HttpContext;
  35 import com.sun.net.httpserver.HttpExchange;
  36 import com.sun.net.httpserver.HttpHandler;
  37 import com.sun.net.httpserver.HttpServer;
  38 import java.io.IOException;
  39 import java.io.InputStream;
  40 import java.io.OutputStream;
  41 import java.net.InetSocketAddress;
  42 import java.net.PasswordAuthentication;
  43 import java.net.URI;
  44 import jdk.incubator.http.*;
  45 import java.util.concurrent.ExecutorService;
  46 import java.util.concurrent.Executors;
  47 import static java.nio.charset.StandardCharsets.US_ASCII;
  48 import static jdk.incubator.http.HttpRequest.BodyProcessor.fromString;
  49 import static jdk.incubator.http.HttpResponse.BodyHandler.asString;
  50 
  51 public class BasicAuthTest {
  52 
  53     static volatile boolean ok;
  54     static final String RESPONSE = "Hello world";
  55     static final String POST_BODY = "This is the POST body 123909090909090";
  56 
  57     public static void main(String[] args) throws Exception {
  58         HttpServer server = HttpServer.create(new InetSocketAddress(0), 10);
  59         ExecutorService e = Executors.newCachedThreadPool();
  60         Handler h = new Handler();
  61         HttpContext serverContext = server.createContext("/test", h);
  62         int port = server.getAddress().getPort();
  63         System.out.println("Server port = " + port);
  64 
  65         ClientAuth ca = new ClientAuth();
  66         ServerAuth sa = new ServerAuth("foo realm");
  67         serverContext.setAuthenticator(sa);
  68         server.setExecutor(e);


   1 /*
   2  * Copyright (c) 2015, 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  */


  28  *          jdk.httpserver
  29  * @run main/othervm BasicAuthTest
  30  * @summary Basic Authentication Test
  31  */
  32 
  33 import com.sun.net.httpserver.BasicAuthenticator;
  34 import com.sun.net.httpserver.HttpContext;
  35 import com.sun.net.httpserver.HttpExchange;
  36 import com.sun.net.httpserver.HttpHandler;
  37 import com.sun.net.httpserver.HttpServer;
  38 import java.io.IOException;
  39 import java.io.InputStream;
  40 import java.io.OutputStream;
  41 import java.net.InetSocketAddress;
  42 import java.net.PasswordAuthentication;
  43 import java.net.URI;
  44 import jdk.incubator.http.*;
  45 import java.util.concurrent.ExecutorService;
  46 import java.util.concurrent.Executors;
  47 import static java.nio.charset.StandardCharsets.US_ASCII;
  48 import static jdk.incubator.http.HttpRequest.BodyPublisher.fromString;
  49 import static jdk.incubator.http.HttpResponse.BodyHandler.asString;
  50 
  51 public class BasicAuthTest {
  52 
  53     static volatile boolean ok;
  54     static final String RESPONSE = "Hello world";
  55     static final String POST_BODY = "This is the POST body 123909090909090";
  56 
  57     public static void main(String[] args) throws Exception {
  58         HttpServer server = HttpServer.create(new InetSocketAddress(0), 10);
  59         ExecutorService e = Executors.newCachedThreadPool();
  60         Handler h = new Handler();
  61         HttpContext serverContext = server.createContext("/test", h);
  62         int port = server.getAddress().getPort();
  63         System.out.println("Server port = " + port);
  64 
  65         ClientAuth ca = new ClientAuth();
  66         ServerAuth sa = new ServerAuth("foo realm");
  67         serverContext.setAuthenticator(sa);
  68         server.setExecutor(e);


< prev index next >