2816N/A/*
2816N/A * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
2816N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2816N/A *
2816N/A * This code is free software; you can redistribute it and/or modify it
2816N/A * under the terms of the GNU General Public License version 2 only, as
2816N/A * published by the Free Software Foundation.
2816N/A *
2816N/A * This code is distributed in the hope that it will be useful, but WITHOUT
2816N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2816N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2816N/A * version 2 for more details (a copy is included in the LICENSE file that
2816N/A * accompanied this code).
2816N/A *
2816N/A * You should have received a copy of the GNU General Public License version
2816N/A * 2 along with this work; if not, write to the Free Software Foundation,
2816N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2816N/A *
2816N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2816N/A * or visit www.oracle.com if you need additional information or have any
2816N/A * questions.
2816N/A */
2816N/A
2816N/A/**
2816N/A * @test
2816N/A * @bug 6550798
2816N/A * @summary Using InputStream.skip with ResponseCache will cause partial data to be cached
2816N/A * @run main/othervm test
2816N/A */
2816N/A
2816N/Aimport java.net.*;
2816N/Aimport com.sun.net.httpserver.*;
2816N/Aimport java.io.*;
2816N/A
2816N/Apublic class test {
2816N/A
2816N/A final static int LEN = 16 * 1024;
2816N/A
2816N/A public static void main(String[] args) throws Exception {
2816N/A
2816N/A TestCache.reset();
2816N/A HttpServer s = HttpServer.create (new InetSocketAddress(0), 10);
2816N/A s.createContext ("/", new HttpHandler () {
2816N/A public void handle (HttpExchange e) {
2816N/A try {
2816N/A byte[] buf = new byte [LEN];
2816N/A OutputStream o = e.getResponseBody();
2816N/A e.sendResponseHeaders(200, LEN);
2816N/A o.write (buf);
2816N/A e.close();
2816N/A } catch (IOException ex) {
2816N/A ex.printStackTrace();
2816N/A TestCache.fail = true;
2816N/A }
2816N/A }
2816N/A });
2816N/A s.start();
2816N/A
2816N/A System.out.println("http request with cache hander");
2816N/A URL u = new URL("http://127.0.0.1:"+s.getAddress().getPort()+"/f");
2816N/A URLConnection conn = u.openConnection();
2816N/A
2816N/A InputStream is = null;
2816N/A try {
2816N/A // this calls into TestCache.get
2816N/A byte[] buf = new byte[8192];
2816N/A is = new BufferedInputStream(conn.getInputStream());
2816N/A
2816N/A is.skip(1000);
2816N/A
2816N/A while (is.read(buf) != -1) {
2816N/A }
2816N/A } finally {
2816N/A if (is != null) {
2816N/A // this calls into TestCache.put
2816N/A // TestCache.put will check if the resource
2816N/A // should be cached
2816N/A is.close();
2816N/A }
2816N/A s.stop(0);
2816N/A }
2816N/A
2816N/A if (TestCache.fail) {
2816N/A System.out.println ("TEST FAILED");
2816N/A throw new RuntimeException ();
2816N/A } else {
2816N/A System.out.println ("TEST OK");
2816N/A }
2816N/A }
2816N/A}